Imported from ../bash-2.05b.tar.gz.
[platform/upstream/bash.git] / copy_cmd.c
1 /* copy_command.c -- copy a COMMAND structure.  This is needed
2    primarily for making function definitions, but I'm not sure
3    that anyone else will need it.  */
4
5 /* Copyright (C) 1987,1991 Free Software Foundation, Inc.
6
7    This file is part of GNU Bash, the Bourne Again SHell.
8
9    Bash is free software; you can redistribute it and/or modify it
10    under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2, or (at your option)
12    any later version.
13
14    Bash is distributed in the hope that it will be useful, but WITHOUT
15    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
17    License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with Bash; see the file COPYING.  If not, write to the Free
21    Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
22
23 #include "config.h"
24
25 #include "bashtypes.h"
26
27 #if defined (HAVE_UNISTD_H)
28 #  include <unistd.h>
29 #endif
30
31 #include <stdio.h>
32
33 #include "shell.h"
34
35 static PATTERN_LIST *copy_case_clause __P((PATTERN_LIST *));
36 static PATTERN_LIST *copy_case_clauses __P((PATTERN_LIST *));
37 static FOR_COM *copy_for_command __P((FOR_COM *));
38 #if defined (ARITH_FOR_COMMAND)
39 static ARITH_FOR_COM *copy_arith_for_command __P((ARITH_FOR_COM *));
40 #endif
41 static GROUP_COM *copy_group_command __P((GROUP_COM *));
42 static SUBSHELL_COM *copy_subshell_command __P((SUBSHELL_COM *));
43 static CASE_COM *copy_case_command __P((CASE_COM *));
44 static WHILE_COM *copy_while_command __P((WHILE_COM *));
45 static IF_COM *copy_if_command __P((IF_COM *));
46 #if defined (DPAREN_ARITHMETIC)
47 static ARITH_COM *copy_arith_command __P((ARITH_COM *));
48 #endif
49 #if defined (COND_COMMAND)
50 static COND_COM *copy_cond_command __P((COND_COM *));
51 #endif
52 static SIMPLE_COM *copy_simple_command __P((SIMPLE_COM *));
53 static FUNCTION_DEF *copy_function_def __P((FUNCTION_DEF *));
54
55 WORD_DESC *
56 copy_word (w)
57      WORD_DESC *w;
58 {
59   WORD_DESC *new_word;
60
61   new_word = make_bare_word (w->word);
62   new_word->flags = w->flags;
63   return (new_word);
64 }
65
66 /* Copy the chain of words in LIST.  Return a pointer to
67    the new chain. */
68 WORD_LIST *
69 copy_word_list (list)
70      WORD_LIST *list;
71 {
72   WORD_LIST *new_list;
73
74   for (new_list = (WORD_LIST *)NULL; list; list = list->next)
75     new_list = make_word_list (copy_word (list->word), new_list);
76
77   return (REVERSE_LIST (new_list, WORD_LIST *));
78 }
79
80 static PATTERN_LIST *
81 copy_case_clause (clause)
82      PATTERN_LIST *clause;
83 {
84   PATTERN_LIST *new_clause;
85
86   new_clause = (PATTERN_LIST *)xmalloc (sizeof (PATTERN_LIST));
87   new_clause->patterns = copy_word_list (clause->patterns);
88   new_clause->action = copy_command (clause->action);
89   return (new_clause);
90 }
91
92 static PATTERN_LIST *
93 copy_case_clauses (clauses)
94      PATTERN_LIST *clauses;
95 {
96   PATTERN_LIST *new_list, *new_clause;
97
98   for (new_list = (PATTERN_LIST *)NULL; clauses; clauses = clauses->next)
99     {
100       new_clause = copy_case_clause (clauses);
101       new_clause->next = new_list;
102       new_list = new_clause;
103     }
104   return (REVERSE_LIST (new_list, PATTERN_LIST *));
105 }
106
107 /* Copy a single redirect. */
108 REDIRECT *
109 copy_redirect (redirect)
110      REDIRECT *redirect;
111 {
112   REDIRECT *new_redirect;
113
114   new_redirect = (REDIRECT *)xmalloc (sizeof (REDIRECT));
115   FASTCOPY ((char *)redirect, (char *)new_redirect, (sizeof (REDIRECT)));
116   switch (redirect->instruction)
117     {
118     case r_reading_until:
119     case r_deblank_reading_until:
120       new_redirect->here_doc_eof = savestring (redirect->here_doc_eof);
121       /*FALLTHROUGH*/
122     case r_reading_string:
123     case r_appending_to:
124     case r_output_direction:
125     case r_input_direction:
126     case r_inputa_direction:
127     case r_err_and_out:
128     case r_input_output:
129     case r_output_force:
130     case r_duplicating_input_word:
131     case r_duplicating_output_word:
132     case r_move_input_word:
133     case r_move_output_word:
134       new_redirect->redirectee.filename = copy_word (redirect->redirectee.filename);
135       break;
136     case r_duplicating_input:
137     case r_duplicating_output:
138     case r_move_input:
139     case r_move_output:
140     case r_close_this:
141       break;
142     }
143   return (new_redirect);
144 }
145
146 REDIRECT *
147 copy_redirects (list)
148      REDIRECT *list;
149 {
150   REDIRECT *new_list, *temp;
151
152   for (new_list = (REDIRECT *)NULL; list; list = list->next)
153     {
154       temp = copy_redirect (list);
155       temp->next = new_list;
156       new_list = temp;
157     }
158   return (REVERSE_LIST (new_list, REDIRECT *));
159 }
160
161 static FOR_COM *
162 copy_for_command (com)
163      FOR_COM *com;
164 {
165   FOR_COM *new_for;
166
167   new_for = (FOR_COM *)xmalloc (sizeof (FOR_COM));
168   new_for->flags = com->flags;
169   new_for->name = copy_word (com->name);
170   new_for->map_list = copy_word_list (com->map_list);
171   new_for->action = copy_command (com->action);
172   return (new_for);
173 }
174
175 #if defined (ARITH_FOR_COMMAND)
176 static ARITH_FOR_COM *
177 copy_arith_for_command (com)
178      ARITH_FOR_COM *com;
179 {
180   ARITH_FOR_COM *new_arith_for;
181
182   new_arith_for = (ARITH_FOR_COM *)xmalloc (sizeof (ARITH_FOR_COM));
183   new_arith_for->flags = com->flags;
184   new_arith_for->line = com->line;
185   new_arith_for->init = copy_word_list (com->init);
186   new_arith_for->test = copy_word_list (com->test);
187   new_arith_for->step = copy_word_list (com->step);
188   new_arith_for->action = copy_command (com->action);
189   return (new_arith_for);
190 }
191 #endif /* ARITH_FOR_COMMAND */
192
193 static GROUP_COM *
194 copy_group_command (com)
195      GROUP_COM *com;
196 {
197   GROUP_COM *new_group;
198
199   new_group = (GROUP_COM *)xmalloc (sizeof (GROUP_COM));
200   new_group->command = copy_command (com->command);
201   return (new_group);
202 }
203
204 static SUBSHELL_COM *
205 copy_subshell_command (com)
206      SUBSHELL_COM *com;
207 {
208   SUBSHELL_COM *new_subshell;
209
210   new_subshell = (SUBSHELL_COM *)xmalloc (sizeof (SUBSHELL_COM));
211   new_subshell->command = copy_command (com->command);
212   new_subshell->flags = com->flags;
213   return (new_subshell);
214 }
215
216 static CASE_COM *
217 copy_case_command (com)
218      CASE_COM *com;
219 {
220   CASE_COM *new_case;
221
222   new_case = (CASE_COM *)xmalloc (sizeof (CASE_COM));
223   new_case->flags = com->flags;
224   new_case->word = copy_word (com->word);
225   new_case->clauses = copy_case_clauses (com->clauses);
226   return (new_case);
227 }
228
229 static WHILE_COM *
230 copy_while_command (com)
231      WHILE_COM *com;
232 {
233   WHILE_COM *new_while;
234
235   new_while = (WHILE_COM *)xmalloc (sizeof (WHILE_COM));
236   new_while->flags = com->flags;
237   new_while->test = copy_command (com->test);
238   new_while->action = copy_command (com->action);
239   return (new_while);
240 }
241
242 static IF_COM *
243 copy_if_command (com)
244      IF_COM *com;
245 {
246   IF_COM *new_if;
247
248   new_if = (IF_COM *)xmalloc (sizeof (IF_COM));
249   new_if->flags = com->flags;
250   new_if->test = copy_command (com->test);
251   new_if->true_case = copy_command (com->true_case);
252   new_if->false_case = com->false_case ? copy_command (com->false_case) : com->false_case;
253   return (new_if);
254 }
255
256 #if defined (DPAREN_ARITHMETIC)
257 static ARITH_COM *
258 copy_arith_command (com)
259      ARITH_COM *com;
260 {
261   ARITH_COM *new_arith;
262
263   new_arith = (ARITH_COM *)xmalloc (sizeof (ARITH_COM));
264   new_arith->flags = com->flags;
265   new_arith->exp = copy_word_list (com->exp);
266   new_arith->line = com->line;
267
268   return (new_arith);
269 }
270 #endif
271
272 #if defined (COND_COMMAND)
273 static COND_COM *
274 copy_cond_command (com)
275      COND_COM *com;
276 {
277   COND_COM *new_cond;
278
279   new_cond = (COND_COM *)xmalloc (sizeof (COND_COM));
280   new_cond->flags = com->flags;
281   new_cond->line = com->line;
282   new_cond->type = com->type;
283   new_cond->op = com->op ? copy_word (com->op) : com->op;
284   new_cond->left = com->left ? copy_cond_command (com->left) : (COND_COM *)NULL;
285   new_cond->right = com->right ? copy_cond_command (com->right) : (COND_COM *)NULL;
286
287   return (new_cond);
288 }
289 #endif
290
291 static SIMPLE_COM *
292 copy_simple_command (com)
293      SIMPLE_COM *com;
294 {
295   SIMPLE_COM *new_simple;
296
297   new_simple = (SIMPLE_COM *)xmalloc (sizeof (SIMPLE_COM));
298   new_simple->flags = com->flags;
299   new_simple->words = copy_word_list (com->words);
300   new_simple->redirects = com->redirects ? copy_redirects (com->redirects) : (REDIRECT *)NULL;
301   new_simple->line = com->line;
302   return (new_simple);
303 }
304
305 static FUNCTION_DEF *
306 copy_function_def (com)
307      FUNCTION_DEF *com;
308 {
309   FUNCTION_DEF *new_def;
310
311   new_def = (FUNCTION_DEF *)xmalloc (sizeof (FUNCTION_DEF));
312   new_def->name = copy_word (com->name);
313   new_def->command = copy_command (com->command);
314   new_def->flags = com->flags;
315   new_def->line = com->line;
316   return (new_def);
317 }
318
319 /* Copy the command structure in COMMAND.  Return a pointer to the
320    copy.  Don't you forget to dispose_command () on this pointer
321    later! */
322 COMMAND *
323 copy_command (command)
324      COMMAND *command;
325 {
326   COMMAND *new_command;
327
328   if (command == NULL)
329     return (command);
330
331   new_command = (COMMAND *)xmalloc (sizeof (COMMAND));
332   FASTCOPY ((char *)command, (char *)new_command, sizeof (COMMAND));
333   new_command->flags = command->flags;
334   new_command->line = command->line;
335
336   if (command->redirects)
337     new_command->redirects = copy_redirects (command->redirects);
338
339   switch (command->type)
340     {
341       case cm_for:
342         new_command->value.For = copy_for_command (command->value.For);
343         break;
344
345 #if defined (ARITH_FOR_COMMAND)
346       case cm_arith_for:
347         new_command->value.ArithFor = copy_arith_for_command (command->value.ArithFor);
348         break;
349 #endif
350
351 #if defined (SELECT_COMMAND)
352       case cm_select:
353         new_command->value.Select =
354           (SELECT_COM *)copy_for_command ((FOR_COM *)command->value.Select);
355         break;
356 #endif
357
358       case cm_group:
359         new_command->value.Group = copy_group_command (command->value.Group);
360         break;
361
362       case cm_subshell:
363         new_command->value.Subshell = copy_subshell_command (command->value.Subshell);
364         break;
365
366       case cm_case:
367         new_command->value.Case = copy_case_command (command->value.Case);
368         break;
369
370       case cm_until:
371       case cm_while:
372         new_command->value.While = copy_while_command (command->value.While);
373         break;
374
375       case cm_if:
376         new_command->value.If = copy_if_command (command->value.If);
377         break;
378
379 #if defined (DPAREN_ARITHMETIC)
380       case cm_arith:
381         new_command->value.Arith = copy_arith_command (command->value.Arith);
382         break;
383 #endif
384
385 #if defined (COND_COMMAND)
386       case cm_cond:
387         new_command->value.Cond = copy_cond_command (command->value.Cond);
388         break;
389 #endif
390
391       case cm_simple:
392         new_command->value.Simple = copy_simple_command (command->value.Simple);
393         break;
394
395       case cm_connection:
396         {
397           CONNECTION *new_connection;
398
399           new_connection = (CONNECTION *)xmalloc (sizeof (CONNECTION));
400           new_connection->connector = command->value.Connection->connector;
401           new_connection->first = copy_command (command->value.Connection->first);
402           new_connection->second = copy_command (command->value.Connection->second);
403           new_command->value.Connection = new_connection;
404           break;
405         }
406
407       case cm_function_def:
408         new_command->value.Function_def = copy_function_def (command->value.Function_def);
409         break;
410     }
411   return (new_command);
412 }