Imported from ../bash-2.02.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 1, 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, 675 Mass Ave, Cambridge, MA 02139, 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 WORD_DESC *
36 copy_word (w)
37      WORD_DESC *w;
38 {
39   WORD_DESC *new_word;
40
41   new_word = (WORD_DESC *)xmalloc (sizeof (WORD_DESC));
42   FASTCOPY ((char *)w, (char *)new_word, sizeof (WORD_DESC));
43   new_word->word = savestring (w->word);
44   return (new_word);
45 }
46
47 /* Copy the chain of words in LIST.  Return a pointer to
48    the new chain. */
49 WORD_LIST *
50 copy_word_list (list)
51      WORD_LIST *list;
52 {
53   WORD_LIST *new_list, *temp;
54
55   for (new_list = (WORD_LIST *)NULL; list; list = list->next)
56     {
57       temp = (WORD_LIST *)xmalloc (sizeof (WORD_LIST));
58       temp->next = new_list;
59       new_list = temp;
60       new_list->word = copy_word (list->word);
61     }
62   return (REVERSE_LIST (new_list, WORD_LIST *));
63 }
64
65 static PATTERN_LIST *
66 copy_case_clause (clause)
67      PATTERN_LIST *clause;
68 {
69   PATTERN_LIST *new_clause;
70
71   new_clause = (PATTERN_LIST *)xmalloc (sizeof (PATTERN_LIST));
72   new_clause->patterns = copy_word_list (clause->patterns);
73   new_clause->action = copy_command (clause->action);
74   return (new_clause);
75 }
76
77 static PATTERN_LIST *
78 copy_case_clauses (clauses)
79      PATTERN_LIST *clauses;
80 {
81   PATTERN_LIST *new_list, *new_clause;
82
83   for (new_list = (PATTERN_LIST *)NULL; clauses; clauses = clauses->next)
84     {
85       new_clause = copy_case_clause (clauses);
86       new_clause->next = new_list;
87       new_list = new_clause;
88     }
89   return (REVERSE_LIST (new_list, PATTERN_LIST *));
90 }
91
92 /* Copy a single redirect. */
93 REDIRECT *
94 copy_redirect (redirect)
95      REDIRECT *redirect;
96 {
97   REDIRECT *new_redirect;
98
99   new_redirect = (REDIRECT *)xmalloc (sizeof (REDIRECT));
100   FASTCOPY ((char *)redirect, (char *)new_redirect, (sizeof (REDIRECT)));
101   switch (redirect->instruction)
102     {
103     case r_reading_until:
104     case r_deblank_reading_until:
105       new_redirect->here_doc_eof = savestring (redirect->here_doc_eof);
106       /*FALLTHROUGH*/
107     case r_appending_to:
108     case r_output_direction:
109     case r_input_direction:
110     case r_inputa_direction:
111     case r_err_and_out:
112     case r_input_output:
113     case r_output_force:
114     case r_duplicating_input_word:
115     case r_duplicating_output_word:
116       new_redirect->redirectee.filename = copy_word (redirect->redirectee.filename);
117       break;
118     case r_duplicating_input:
119     case r_duplicating_output:
120     case r_close_this:
121       break;
122     }
123   return (new_redirect);
124 }
125
126 REDIRECT *
127 copy_redirects (list)
128      REDIRECT *list;
129 {
130   REDIRECT *new_list, *temp;
131
132   for (new_list = (REDIRECT *)NULL; list; list = list->next)
133     {
134       temp = copy_redirect (list);
135       temp->next = new_list;
136       new_list = temp;
137     }
138   return (REVERSE_LIST (new_list, REDIRECT *));
139 }
140
141 static FOR_COM *
142 copy_for_command (com)
143      FOR_COM *com;
144 {
145   FOR_COM *new_for;
146
147   new_for = (FOR_COM *)xmalloc (sizeof (FOR_COM));
148   new_for->flags = com->flags;
149   new_for->name = copy_word (com->name);
150   new_for->map_list = copy_word_list (com->map_list);
151   new_for->action = copy_command (com->action);
152   return (new_for);
153 }
154
155 static GROUP_COM *
156 copy_group_command (com)
157      GROUP_COM *com;
158 {
159   GROUP_COM *new_group;
160
161   new_group = (GROUP_COM *)xmalloc (sizeof (GROUP_COM));
162   new_group->command = copy_command (com->command);
163   return (new_group);
164 }
165
166 static CASE_COM *
167 copy_case_command (com)
168      CASE_COM *com;
169 {
170   CASE_COM *new_case;
171
172   new_case = (CASE_COM *)xmalloc (sizeof (CASE_COM));
173   new_case->flags = com->flags;
174   new_case->word = copy_word (com->word);
175   new_case->clauses = copy_case_clauses (com->clauses);
176   return (new_case);
177 }
178
179 static WHILE_COM *
180 copy_while_command (com)
181      WHILE_COM *com;
182 {
183   WHILE_COM *new_while;
184
185   new_while = (WHILE_COM *)xmalloc (sizeof (WHILE_COM));
186   new_while->flags = com->flags;
187   new_while->test = copy_command (com->test);
188   new_while->action = copy_command (com->action);
189   return (new_while);
190 }
191
192 static IF_COM *
193 copy_if_command (com)
194      IF_COM *com;
195 {
196   IF_COM *new_if;
197
198   new_if = (IF_COM *)xmalloc (sizeof (IF_COM));
199   new_if->flags = com->flags;
200   new_if->test = copy_command (com->test);
201   new_if->true_case = copy_command (com->true_case);
202   new_if->false_case = copy_command (com->false_case);
203   return (new_if);
204 }
205
206 #if defined (DPAREN_ARITHMETIC)
207 static ARITH_COM *
208 copy_arith_command (com)
209      ARITH_COM *com;
210 {
211   ARITH_COM *new_arith;
212
213   new_arith = (ARITH_COM *)xmalloc (sizeof (ARITH_COM));
214   new_arith->flags = com->flags;
215   new_arith->exp = copy_word_list (com->exp);
216   new_arith->line = com->line;
217
218   return (new_arith);
219 }
220 #endif
221
222 #if defined (COND_COMMAND)
223 static COND_COM *
224 copy_cond_command (com)
225      COND_COM *com;
226 {
227   COND_COM *new_cond;
228
229   new_cond = (COND_COM *)xmalloc (sizeof (COND_COM));
230   new_cond->flags = com->flags;
231   new_cond->line = com->line;
232   new_cond->op = copy_word (com->op);
233   new_cond->left = com->left ? copy_cond_command (com->left) : (COND_COM *)NULL;
234   new_cond->right = com->right ? copy_cond_command (com->right) : (COND_COM *)NULL;
235
236   return (new_cond);
237 }
238 #endif
239
240 static SIMPLE_COM *
241 copy_simple_command (com)
242      SIMPLE_COM *com;
243 {
244   SIMPLE_COM *new_simple;
245
246   new_simple = (SIMPLE_COM *)xmalloc (sizeof (SIMPLE_COM));
247   new_simple->flags = com->flags;
248   new_simple->words = copy_word_list (com->words);
249   new_simple->redirects = copy_redirects (com->redirects);
250   new_simple->line = com->line;
251   return (new_simple);
252 }
253
254 static FUNCTION_DEF *
255 copy_function_def (com)
256      FUNCTION_DEF *com;
257 {
258   FUNCTION_DEF *new_def;
259
260   new_def = (FUNCTION_DEF *)xmalloc (sizeof (FUNCTION_DEF));
261   new_def->name = copy_word (com->name);
262   new_def->command = copy_command (com->command);
263   return (new_def);
264 }
265
266 /* Copy the command structure in COMMAND.  Return a pointer to the
267    copy.  Don't you forget to dispose_command () on this pointer
268    later! */
269 COMMAND *
270 copy_command (command)
271      COMMAND *command;
272 {
273   COMMAND *new_command;
274
275   if (command == NULL)
276     return (command);
277
278   new_command = (COMMAND *)xmalloc (sizeof (COMMAND));
279   FASTCOPY ((char *)command, (char *)new_command, sizeof (COMMAND));
280   new_command->flags = command->flags;
281   new_command->line = command->line;
282
283   if (command->redirects)
284     new_command->redirects = copy_redirects (command->redirects);
285
286   switch (command->type)
287     {
288       case cm_for:
289         new_command->value.For = copy_for_command (command->value.For);
290         break;
291
292 #if defined (SELECT_COMMAND)
293       case cm_select:
294         new_command->value.Select =
295           (SELECT_COM *)copy_for_command ((FOR_COM *)command->value.Select);
296         break;
297 #endif
298
299       case cm_group:
300         new_command->value.Group = copy_group_command (command->value.Group);
301         break;
302
303       case cm_case:
304         new_command->value.Case = copy_case_command (command->value.Case);
305         break;
306
307       case cm_until:
308       case cm_while:
309         new_command->value.While = copy_while_command (command->value.While);
310         break;
311
312       case cm_if:
313         new_command->value.If = copy_if_command (command->value.If);
314         break;
315
316 #if defined (DPAREN_ARITHMETIC)
317       case cm_arith:
318         new_command->value.Arith = copy_arith_command (command->value.Arith);
319         break;
320 #endif
321
322 #if defined (COND_COMMAND)
323       case cm_cond:
324         new_command->value.Cond = copy_cond_command (command->value.Cond);
325         break;
326 #endif
327
328       case cm_simple:
329         new_command->value.Simple = copy_simple_command (command->value.Simple);
330         break;
331
332       case cm_connection:
333         {
334           CONNECTION *new_connection;
335
336           new_connection = (CONNECTION *)xmalloc (sizeof (CONNECTION));
337           new_connection->connector = command->value.Connection->connector;
338           new_connection->first = copy_command (command->value.Connection->first);
339           new_connection->second = copy_command (command->value.Connection->second);
340           new_command->value.Connection = new_connection;
341           break;
342         }
343
344       case cm_function_def:
345         new_command->value.Function_def = copy_function_def (command->value.Function_def);
346         break;
347     }
348   return (new_command);
349 }