Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Define correctly variables for windows.
[simgrid.git] / tools / tesh / tesh.c
1 /* TESH (Test Shell) -- mini shell specialized in running test units        */
2
3 /* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 /* specific to Borland Compiler */
10 #ifdef __BORLANDDC__
11 #pragma hdrstop
12 #endif
13
14 #include "tesh.h"
15 #include "xbt.h"
16
17 XBT_LOG_NEW_DEFAULT_CATEGORY(tesh, "TEst SHell utility");
18
19 /*** Options ***/
20 int timeout_value = 5;          /* child timeout value */
21
22 char *testsuite_name;
23 static void handle_line(const char *filepos, char *line)
24 {
25   /* Search end */
26   xbt_str_rtrim(line + 2, "\n");
27
28   /*
29      DEBUG7("rctx={%s,in={%d,>>%10s<<},exp={%d,>>%10s<<},got={%d,>>%10s<<}}",
30      rctx->cmd,
31      rctx->input->used,        rctx->input->data,
32      rctx->output_wanted->used,rctx->output_wanted->data,
33      rctx->output_got->used,   rctx->output_got->data);
34    */
35   DEBUG2("[%s] %s", filepos, line);
36
37   switch (line[0]) {
38   case '#':
39     break;
40
41   case '$':
42     /* further trim useless chars which are significant for in/output */
43     xbt_str_rtrim(line + 2, " \t");
44
45     /* Deal with CD commands here, not in rctx */
46     if (!strncmp("cd ", line + 2, 3)) {
47       char *dir = line + 4;
48
49       if (rctx->cmd)
50         rctx_start();
51
52       /* search beginning */
53       while (*(dir++) == ' ');
54       dir--;
55       VERB1("Saw cd '%s'", dir);
56       if (chdir(dir)) {
57         ERROR2("Chdir to %s failed: %s", dir, strerror(errno));
58         ERROR1("Test suite `%s': NOK (system error)", testsuite_name);
59         rctx_armageddon(rctx, 4);
60       }
61       break;
62     }                           /* else, pushline */
63   case '&':
64   case '<':
65   case '>':
66   case '!':
67     rctx_pushline(filepos, line[0], line + 2 /* pass '$ ' stuff */ );
68     break;
69
70   case 'p':
71     INFO2("[%s] %s", filepos, line + 2);
72     break;
73   case 'P':
74     CRITICAL2("[%s] %s", filepos, line + 2);
75     break;
76
77   default:
78     ERROR2("[%s] Syntax error: %s", filepos, line);
79     ERROR1("Test suite `%s': NOK (syntax error)", testsuite_name);
80     rctx_armageddon(rctx, 1);
81     break;
82   }
83 }
84
85 static void handle_suite(const char *filename, FILE * IN)
86 {
87   size_t len;
88   int blankline = 1;
89   int linelen = 0;
90   char *line = NULL;
91   int line_num = 0;
92   char file_pos[256];
93   int to_be_continued = 0;
94   int buffbegin = 0;
95   xbt_strbuff_t buff = NULL;
96
97   buff = xbt_strbuff_new();
98   rctx = rctx_new();
99
100   while (getline(&line, &len, IN) != -1) {
101     line_num++;
102
103     /* Count the line length while checking wheather it's blank */
104
105     while (line[linelen] != '\0') {
106       if (line[linelen] != ' ' && line[linelen] != '\t'
107           && line[linelen] != '\n')
108         blankline = 0;
109       linelen++;
110     }
111
112     if (blankline) {
113       if (!rctx->cmd && !rctx->is_empty) {
114         ERROR1("[%d] Error: no command found in this chunk of lines.",
115                buffbegin);
116         ERROR1("Test suite `%s': NOK (syntax error)", testsuite_name);
117         rctx_armageddon(rctx, 1);
118       }
119       if (rctx->cmd)
120         rctx_start();
121
122       continue;
123     }
124
125     /* Deal with \ at the end of the line, and call handle_line on result */
126     if (linelen > 1 && line[linelen - 2] == '\\') {
127       if (linelen > 2 && line[linelen - 3] == '\\') {
128         /* Damn. Escaped \ */
129         line[linelen - 2] = '\n';
130         line[linelen - 1] = '\0';
131       } else {
132         to_be_continued = 1;
133         line[linelen - 2] = '\0';
134         linelen -= 2;
135         if (!buff->used)
136           buffbegin = line_num;
137       }
138     }
139
140     if (buff->used || to_be_continued) {
141       xbt_strbuff_append(buff, line);
142
143       if (!to_be_continued) {
144         snprintf(file_pos, 256, "%s:%d", filename, buffbegin);
145         handle_line(file_pos, buff->data);
146         xbt_strbuff_empty(buff);
147       }
148
149     } else {
150       snprintf(file_pos, 256, "%s:%d", filename, line_num);
151       handle_line(file_pos, line);
152     }
153   }
154   /* Check that last command of the file ran well */
155   if (rctx->cmd)
156     rctx_start();
157
158   /* Wait all background commands */
159
160   rctx_free(rctx);
161
162   /* Clear buffers */
163   if (line)
164     free(line);
165   xbt_strbuff_free(buff);
166
167 }
168
169 static void parse_environ()
170 {
171   char *p;
172   int i;
173   char *eq = NULL;
174   char *key = NULL;
175   env = xbt_dict_new();
176   for (i = 0; environ[i]; i++) {
177     p = environ[i];
178     eq = strchr(p, '=');
179     key = bprintf("%.*s", (int) (eq - p), p);
180     xbt_dict_set(env, key, xbt_strdup(eq + 1), xbt_free_f);
181     free(key);
182   }
183 }
184
185 int main(int argc, char *argv[])
186 {
187   FILE *IN = NULL;
188   int i;
189   char *suitename = NULL;
190
191   /* Ignore pipe issues.
192      They will show up when we try to send data to dead buddies,
193      but we will stop doing so when we're done with provided input */
194   struct sigaction newact;
195   memset(&newact, 0, sizeof(newact));
196   newact.sa_handler = SIG_IGN;
197   sigaction(SIGPIPE, &newact, NULL);
198
199   xbt_init(&argc, argv);
200   rctx_init();
201   parse_environ();
202
203   /* Get args */
204   for (i = 1; i < argc; i++) {
205     if (!strcmp(argv[i], "--cd")) {
206       if (i == argc - 1) {
207         ERROR0("--cd argument requires an argument");
208         exit(1);
209       }
210       if (chdir(argv[i + 1])) {
211         ERROR2("Cannot change directory to %s: %s", argv[i + 1],
212                strerror(errno));
213         exit(1);
214       }
215       INFO1("Change directory to %s", argv[i + 1]);
216       memmove(argv + i, argv + i + 2, (argc - i - 1)*sizeof(char*));
217       argc -= 2;
218       i -= 2;
219     }
220   }
221
222   /* Find the description file */
223   if (argc == 1) {
224     INFO0("Test suite from stdin");
225     testsuite_name = xbt_strdup("(stdin)");
226     handle_suite("stdin", stdin);
227     INFO0("Test suite from stdin OK");
228
229   } else {
230     for (i = 1; i < argc; i++) {
231       suitename = xbt_strdup(argv[i]);
232       if (!strcmp("./", suitename))
233         memmove(suitename, suitename + 2, strlen(suitename + 2));
234
235       if (!strcmp(".tesh", suitename + strlen(suitename) - 5))
236         suitename[strlen(suitename) - 5] = '\0';
237
238       INFO1("Test suite `%s'", suitename);
239       testsuite_name = suitename;
240       IN = fopen(argv[i], "r");
241       if (!IN) {
242         perror(bprintf("Impossible to open the suite file `%s'", argv[i]));
243         ERROR1("Test suite `%s': NOK (system error)", testsuite_name);
244         rctx_armageddon(rctx, 1);
245       }
246       handle_suite(suitename, IN);
247       rctx_wait_bg();
248       fclose(IN);
249       INFO1("Test suite `%s' OK", suitename);
250       free(suitename);
251     }
252   }
253
254   rctx_exit();
255   return 0;
256 }