* lib/wait-process.h (wait_subprocess): Accept a new exitsignal argument.
[gnulib.git] / lib / csharpcomp.c
1 /* Compile a C# program.
2    Copyright (C) 2003-2005 Free Software Foundation, Inc.
3    Written by Bruno Haible <bruno@clisp.org>, 2003.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2, or (at your option)
8    any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software Foundation,
17    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18
19 #ifdef HAVE_CONFIG_H
20 # include <config.h>
21 #endif
22 #include <alloca.h>
23
24 /* Specification.  */
25 #include "csharpcomp.h"
26
27 #include <errno.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31
32 #include "execute.h"
33 #include "pipe.h"
34 #include "wait-process.h"
35 #include "getline.h"
36 #include "sh-quote.h"
37 #include "safe-read.h"
38 #include "xallocsa.h"
39 #include "error.h"
40 #include "gettext.h"
41
42 #define _(str) gettext (str)
43
44
45 /* Survey of C# compilers.
46
47    Program    from
48
49    cscc       pnet
50    mcs        mono
51    csc        sscli
52
53    We try the CIL interpreters in the following order:
54      1. "cscc", because it is a completely free system.
55      2. "mcs", because it is a free system but doesn't integrate so well
56         with Unix. (Command line options start with / instead of -. Errors go
57         to stdout instead of stderr. Source references are printed as
58         "file(lineno)" instead of "file:lineno:".)
59      3. "csc", although it is not free, because it is a kind of "reference
60         implementation" of C#.
61    But the order can be changed through the --enable-csharp configuration
62    option.
63  */
64
65 static int
66 compile_csharp_using_pnet (const char * const *sources,
67                            unsigned int sources_count,
68                            const char * const *libdirs,
69                            unsigned int libdirs_count,
70                            const char * const *libraries,
71                            unsigned int libraries_count,
72                            const char *output_file, bool output_is_library,
73                            bool optimize, bool debug,
74                            bool verbose)
75 {
76   static bool cscc_tested;
77   static bool cscc_present;
78
79   if (!cscc_tested)
80     {
81       /* Test for presence of cscc:
82          "cscc --version >/dev/null 2>/dev/null"  */
83       char *argv[3];
84       int exitstatus;
85
86       argv[0] = "cscc";
87       argv[1] = "--version";
88       argv[2] = NULL;
89       exitstatus = execute ("cscc", "cscc", argv, false, false, true, true,
90                             true, false);
91       cscc_present = (exitstatus == 0);
92       cscc_tested = true;
93     }
94
95   if (cscc_present)
96     {
97       unsigned int argc;
98       char **argv;
99       char **argp;
100       int exitstatus;
101       unsigned int i;
102
103       argc =
104         1 + (output_is_library ? 1 : 0) + 2 + 2 * libdirs_count
105         + 2 * libraries_count + (optimize ? 1 : 0) + (debug ? 1 : 0)
106         + sources_count;
107       argv = (char **) xallocsa ((argc + 1) * sizeof (char *));
108
109       argp = argv;
110       *argp++ = "cscc";
111       if (output_is_library)
112         *argp++ = "-shared";
113       *argp++ = "-o";
114       *argp++ = (char *) output_file;
115       for (i = 0; i < libdirs_count; i++)
116         {
117           *argp++ = "-L";
118           *argp++ = (char *) libdirs[i];
119         }
120       for (i = 0; i < libraries_count; i++)
121         {
122           *argp++ = "-l";
123           *argp++ = (char *) libraries[i];
124         }
125       if (optimize)
126         *argp++ = "-O";
127       if (debug)
128         *argp++ = "-g";
129       for (i = 0; i < sources_count; i++)
130         {
131           const char *source_file = sources[i];
132           if (strlen (source_file) >= 9
133               && memcmp (source_file + strlen (source_file) - 9, ".resource",
134                          9) == 0)
135             {
136               char *option = (char *) xallocsa (12 + strlen (source_file) + 1);
137
138               memcpy (option, "-fresources=", 12);
139               strcpy (option + 12, source_file);
140               *argp++ = option;
141             }
142           else
143             *argp++ = (char *) source_file;
144         }
145       *argp = NULL;
146       /* Ensure argv length was correctly calculated.  */
147       if (argp - argv != argc)
148         abort ();
149
150       if (verbose)
151         {
152           char *command = shell_quote_argv (argv);
153           printf ("%s\n", command);
154           free (command);
155         }
156
157       exitstatus = execute ("cscc", "cscc", argv, false, false, false, false,
158                             true, true);
159
160       for (i = 0; i < sources_count; i++)
161         if (argv[argc - sources_count + i] != sources[i])
162           freesa (argv[argc - sources_count + i]);
163       freesa (argv);
164
165       return (exitstatus != 0);
166     }
167   else
168     return -1;
169 }
170
171 static int
172 compile_csharp_using_mono (const char * const *sources,
173                            unsigned int sources_count,
174                            const char * const *libdirs,
175                            unsigned int libdirs_count,
176                            const char * const *libraries,
177                            unsigned int libraries_count,
178                            const char *output_file, bool output_is_library,
179                            bool optimize, bool debug,
180                            bool verbose)
181 {
182   static bool mcs_tested;
183   static bool mcs_present;
184
185   if (!mcs_tested)
186     {
187       /* Test for presence of mcs:
188          "mcs --version >/dev/null 2>/dev/null"  */
189       char *argv[3];
190       int exitstatus;
191
192       argv[0] = "mcs";
193       argv[1] = "--version";
194       argv[2] = NULL;
195       exitstatus = execute ("mcs", "mcs", argv, false, false, true, true, true,
196                             false);
197       mcs_present = (exitstatus == 0);
198       mcs_tested = true;
199     }
200
201   if (mcs_present)
202     {
203       unsigned int argc;
204       char **argv;
205       char **argp;
206       pid_t child;
207       int fd[1];
208       FILE *fp;
209       char *line[2];
210       size_t linesize[2];
211       size_t linelen[2];
212       unsigned int l;
213       int exitstatus;
214       unsigned int i;
215
216       argc =
217         1 + (output_is_library ? 1 : 0) + 2 + 2 * libdirs_count
218         + 2 * libraries_count + (debug ? 1 : 0) + sources_count;
219       argv = (char **) xallocsa ((argc + 1) * sizeof (char *));
220
221       argp = argv;
222       *argp++ = "mcs";
223       if (output_is_library)
224         *argp++ = "-target:library";
225       *argp++ = "-o";
226       *argp++ = (char *) output_file;
227       for (i = 0; i < libdirs_count; i++)
228         {
229           *argp++ = "-L";
230           *argp++ = (char *) libdirs[i];
231         }
232       for (i = 0; i < libraries_count; i++)
233         {
234           *argp++ = "-r";
235           *argp++ = (char *) libraries[i];
236         }
237       if (debug)
238         *argp++ = "-g";
239       for (i = 0; i < sources_count; i++)
240         {
241           const char *source_file = sources[i];
242           if (strlen (source_file) >= 9
243               && memcmp (source_file + strlen (source_file) - 9, ".resource",
244                          9) == 0)
245             {
246               char *option = (char *) xallocsa (10 + strlen (source_file) + 1);
247
248               memcpy (option, "-resource:", 10);
249               strcpy (option + 10, source_file);
250               *argp++ = option;
251             }
252           else
253             *argp++ = (char *) source_file;
254         }
255       *argp = NULL;
256       /* Ensure argv length was correctly calculated.  */
257       if (argp - argv != argc)
258         abort ();
259
260       if (verbose)
261         {
262           char *command = shell_quote_argv (argv);
263           printf ("%s\n", command);
264           free (command);
265         }
266
267       child = create_pipe_in ("mcs", "mcs", argv, NULL, false, true, true, fd);
268
269       /* Read the subprocess output, copying it to stderr.  Drop the last
270          line if it starts with "Compilation succeeded".  */
271       fp = fdopen (fd[0], "r");
272       if (fp == NULL)
273         error (EXIT_FAILURE, errno, _("fdopen() failed"));
274       line[0] = NULL; linesize[0] = 0;
275       line[1] = NULL; linesize[1] = 0;
276       l = 0;
277       for (;;)
278         {
279           linelen[l] = getline (&line[l], &linesize[l], fp);
280           if (linelen[l] == (size_t)(-1))
281             break;
282           l = (l + 1) % 2;
283           if (line[l] != NULL)
284             fwrite (line[l], 1, linelen[l], stderr);
285         }
286       l = (l + 1) % 2;
287       if (line[l] != NULL
288           && !(linelen[l] >= 21
289                && memcmp (line[l], "Compilation succeeded", 21) == 0))
290         fwrite (line[l], 1, linelen[l], stderr);
291       if (line[0] != NULL)
292         free (line[0]);
293       if (line[1] != NULL)
294         free (line[1]);
295       fclose (fp);
296
297       /* Remove zombie process from process list, and retrieve exit status.  */
298       exitstatus = wait_subprocess (child, "mcs", NULL, false, false, true,
299                                     true);
300
301       for (i = 0; i < sources_count; i++)
302         if (argv[argc - sources_count + i] != sources[i])
303           freesa (argv[argc - sources_count + i]);
304       freesa (argv);
305
306       return (exitstatus != 0);
307     }
308   else
309     return -1;
310 }
311
312 static int
313 compile_csharp_using_sscli (const char * const *sources,
314                             unsigned int sources_count,
315                             const char * const *libdirs,
316                             unsigned int libdirs_count,
317                             const char * const *libraries,
318                             unsigned int libraries_count,
319                             const char *output_file, bool output_is_library,
320                             bool optimize, bool debug,
321                             bool verbose)
322 {
323   static bool csc_tested;
324   static bool csc_present;
325
326   if (!csc_tested)
327     {
328       /* Test for presence of csc:
329          "csc -help >/dev/null 2>/dev/null \
330           && ! { csc -help 2>/dev/null | grep -i chicken > /dev/null; }"  */
331       char *argv[3];
332       pid_t child;
333       int fd[1];
334       int exitstatus;
335
336       argv[0] = "csc";
337       argv[1] = "-help";
338       argv[2] = NULL;
339       child = create_pipe_in ("csc", "csc", argv, DEV_NULL, true, true, false,
340                               fd);
341       csc_present = false;
342       if (child != -1)
343         {
344           /* Read the subprocess output, and test whether it contains the
345              string "chicken".  */
346           char c[7];
347           size_t count = 0;
348
349           csc_present = true;
350           while (safe_read (fd[0], &c[count], 1) > 0)
351             {
352               if (c[count] >= 'A' && c[count] <= 'Z')
353                 c[count] += 'a' - 'A';
354               count++;
355               if (count == 7)
356                 {
357                   if (memcmp (c, "chicken", 7) == 0)
358                     csc_present = false;
359                   c[0] = c[1]; c[1] = c[2]; c[2] = c[3];
360                   c[3] = c[4]; c[4] = c[5]; c[5] = c[6];
361                   count--;
362                 }
363             }
364
365           close (fd[0]);
366
367           /* Remove zombie process from process list, and retrieve exit
368              status.  */
369           exitstatus =
370             wait_subprocess (child, "csc", NULL, false, true, true, false);
371           if (exitstatus != 0)
372             csc_present = false;
373         }
374       csc_tested = true;
375     }
376
377   if (csc_present)
378     {
379       unsigned int argc;
380       char **argv;
381       char **argp;
382       int exitstatus;
383       unsigned int i;
384
385       argc =
386         1 + 1 + 1 + libdirs_count + libraries_count
387         + (optimize ? 1 : 0) + (debug ? 1 : 0) + sources_count;
388       argv = (char **) xallocsa ((argc + 1) * sizeof (char *));
389
390       argp = argv;
391       *argp++ = "csc";
392       *argp++ = (output_is_library ? "-target:library" : "-target:exe");
393       {
394         char *option = (char *) xallocsa (5 + strlen (output_file) + 1);
395         memcpy (option, "-out:", 5);
396         strcpy (option + 5, output_file);
397         *argp++ = option;
398       }
399       for (i = 0; i < libdirs_count; i++)
400         {
401           char *option = (char *) xallocsa (5 + strlen (libdirs[i]) + 1);
402           memcpy (option, "-lib:", 5);
403           strcpy (option + 5, libdirs[i]);
404           *argp++ = option;
405         }
406       for (i = 0; i < libraries_count; i++)
407         {
408           char *option = (char *) xallocsa (11 + strlen (libraries[i]) + 4 + 1);
409           memcpy (option, "-reference:", 11);
410           memcpy (option + 11, libraries[i], strlen (libraries[i]));
411           strcpy (option + 11 + strlen (libraries[i]), ".dll");
412           *argp++ = option;
413         }
414       if (optimize)
415         *argp++ = "-optimize+";
416       if (debug)
417         *argp++ = "-debug+";
418       for (i = 0; i < sources_count; i++)
419         {
420           const char *source_file = sources[i];
421           if (strlen (source_file) >= 9
422               && memcmp (source_file + strlen (source_file) - 9, ".resource",
423                          9) == 0)
424             {
425               char *option = (char *) xallocsa (10 + strlen (source_file) + 1);
426
427               memcpy (option, "-resource:", 10);
428               strcpy (option + 10, source_file);
429               *argp++ = option;
430             }
431           else
432             *argp++ = (char *) source_file;
433         }
434       *argp = NULL;
435       /* Ensure argv length was correctly calculated.  */
436       if (argp - argv != argc)
437         abort ();
438
439       if (verbose)
440         {
441           char *command = shell_quote_argv (argv);
442           printf ("%s\n", command);
443           free (command);
444         }
445
446       exitstatus = execute ("csc", "csc", argv, false, false, false, false,
447                             true, true);
448
449       for (i = 2; i < 3 + libdirs_count + libraries_count; i++)
450         freesa (argv[i]);
451       for (i = 0; i < sources_count; i++)
452         if (argv[argc - sources_count + i] != sources[i])
453           freesa (argv[argc - sources_count + i]);
454       freesa (argv);
455
456       return (exitstatus != 0);
457     }
458   else
459     return -1;
460 }
461
462 bool
463 compile_csharp_class (const char * const *sources,
464                       unsigned int sources_count,
465                       const char * const *libdirs,
466                       unsigned int libdirs_count,
467                       const char * const *libraries,
468                       unsigned int libraries_count,
469                       const char *output_file,
470                       bool optimize, bool debug,
471                       bool verbose)
472 {
473   bool output_is_library =
474     (strlen (output_file) >= 4
475      && memcmp (output_file + strlen (output_file) - 4, ".dll", 4) == 0);
476   int result;
477
478   /* First try the C# implementation specified through --enable-csharp.  */
479 #if CSHARP_CHOICE_PNET
480   result = compile_csharp_using_pnet (sources, sources_count,
481                                       libdirs, libdirs_count,
482                                       libraries, libraries_count,
483                                       output_file, output_is_library,
484                                       optimize, debug, verbose);
485   if (result >= 0)
486     return (bool) result;
487 #endif
488
489 #if CSHARP_CHOICE_MONO
490   result = compile_csharp_using_mono (sources, sources_count,
491                                       libdirs, libdirs_count,
492                                       libraries, libraries_count,
493                                       output_file, output_is_library,
494                                       optimize, debug, verbose);
495   if (result >= 0)
496     return (bool) result;
497 #endif
498
499   /* Then try the remaining C# implementations in our standard order.  */
500 #if !CSHARP_CHOICE_PNET
501   result = compile_csharp_using_pnet (sources, sources_count,
502                                       libdirs, libdirs_count,
503                                       libraries, libraries_count,
504                                       output_file, output_is_library,
505                                       optimize, debug, verbose);
506   if (result >= 0)
507     return (bool) result;
508 #endif
509
510 #if !CSHARP_CHOICE_MONO
511   result = compile_csharp_using_mono (sources, sources_count,
512                                       libdirs, libdirs_count,
513                                       libraries, libraries_count,
514                                       output_file, output_is_library,
515                                       optimize, debug, verbose);
516   if (result >= 0)
517     return (bool) result;
518 #endif
519
520   result = compile_csharp_using_sscli (sources, sources_count,
521                                        libdirs, libdirs_count,
522                                        libraries, libraries_count,
523                                        output_file, output_is_library,
524                                        optimize, debug, verbose);
525   if (result >= 0)
526     return (bool) result;
527
528   error (0, 0, _("C# compiler not found, try installing pnet"));
529   return true;
530 }