summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/driver/drv_preproc.cpp
blob: 8d2105575b6470212d522d91c189e4268394e3a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
/*

COPYRIGHT

Copyright 1992, 1993, 1994 Sun Microsystems, Inc.  Printed in the United
States of America.  All Rights Reserved.

This product is protected by copyright and distributed under the following
license restricting its use.

The Interface Definition Language Compiler Front End (CFE) is made
available for your use provided that you include this license and copyright
notice on all media and documentation and the software program in which
this product is incorporated in whole or part. You may copy and extend
functionality (but may not remove functionality) of the Interface
Definition Language CFE without charge, but you are not authorized to
license or distribute it to anyone else except as part of a product or
program developed by you or with the express written consent of Sun
Microsystems, Inc. ("Sun").

The names of Sun Microsystems, Inc. and any of its subsidiaries or
affiliates may not be used in advertising or publicity pertaining to
distribution of Interface Definition Language CFE as permitted herein.

This license is effective until terminated by Sun for failure to comply
with this license.  Upon termination, you shall destroy or return all code
and documentation for the Interface Definition Language CFE.

INTERFACE DEFINITION LANGUAGE CFE IS PROVIDED AS IS WITH NO WARRANTIES OF
ANY KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS
FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR ARISING FROM A COURSE OF
DEALING, USAGE OR TRADE PRACTICE.

INTERFACE DEFINITION LANGUAGE CFE IS PROVIDED WITH NO SUPPORT AND WITHOUT
ANY OBLIGATION ON THE PART OF Sun OR ANY OF ITS SUBSIDIARIES OR AFFILIATES
TO ASSIST IN ITS USE, CORRECTION, MODIFICATION OR ENHANCEMENT.

SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES SHALL HAVE NO LIABILITY WITH
RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY
INTERFACE DEFINITION LANGUAGE CFE OR ANY PART THEREOF.

IN NO EVENT WILL SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES BE LIABLE FOR
ANY LOST REVENUE OR PROFITS OR OTHER SPECIAL, INDIRECT AND CONSEQUENTIAL
DAMAGES, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

Use, duplication, or disclosure by the government is subject to
restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in
Technical Data and Computer Software clause at DFARS 252.227-7013 and FAR
52.227-19.

Sun, Sun Microsystems and the Sun logo are trademarks or registered
trademarks of Sun Microsystems, Inc.

SunSoft, Inc.
2550 Garcia Avenue
Mountain View, California  94043

NOTE:

SunOS, SunSoft, Sun, Solaris, Sun Microsystems or the Sun logo are
trademarks or registered trademarks of Sun Microsystems, Inc.

*/

// Pass an IDL file through the C preprocessor


#include "idl_defines.h"
#include "global_extern.h"
#include "fe_extern.h"
#include "drv_extern.h"
#include "utl_string.h"
#include "utl_err.h"

#include "ace/Version.h"
#include "ace/Process.h"
#include "ace/SString.h"
#include "ace/Env_Value_T.h"
#include "ace/ARGV.h"
#include "ace/Dirent.h"
#include "ace/OS_NS_sys_stat.h"
#include "ace/Truncate.h"

// FUZZ: disable check_for_streams_include
#include "ace/streams.h"

#include "ace/OS_NS_stdio.h"
#include "ace/OS_NS_unistd.h"
#include "ace/OS_NS_fcntl.h"
#include "ace/OS_NS_sys_stat.h"

// Storage for preprocessor args.
unsigned long const DRV_MAX_ARGCOUNT = 1024;
unsigned long DRV_argcount = 0;
ACE_TCHAR const * DRV_arglist[DRV_MAX_ARGCOUNT] = { nullptr };

static char const * output_arg_format = nullptr;
static long output_arg_index = 0;

ACE_TCHAR const TCHAR_DIR_DOT[] = ACE_TEXT(".");

#if defined (ACE_HAS_TCHAR_DIRENT)
// ACE_TCHAR const DIR_DOT[] = ACE_TEXT(".");
ACE_TCHAR const DIR_DOT_DOT[] = ACE_TEXT("..");
#else
// char const DIR_DOT[] = ".";
char const DIR_DOT_DOT[] = "..";
#endif /* ACE_HAS_TCHAR_DIRENT */

// File names.
static char tmp_file [MAXPATHLEN + 1] = { 0 };
static char tmp_ifile[MAXPATHLEN + 1] = { 0 };

// Lines can be 1024 chars long intially -
// it will expand as required.
#define LINEBUF_SIZE 1024
char* drv_line = nullptr;
static size_t drv_line_size = LINEBUF_SIZE + 1;

// Push the new CPP location if we got a -Yp argument.
void
DRV_cpp_new_location (char const * new_loc)
{
  ACE::strdelete (const_cast<ACE_TCHAR *> (DRV_arglist[0]));
  DRV_arglist[0] =
    ACE::strnew (ACE_TEXT_CHAR_TO_TCHAR (new_loc));
}

// Push an argument into the DRV_arglist.
void
DRV_cpp_putarg (const char *str)
{
  if (DRV_argcount >= DRV_MAX_ARGCOUNT)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: More than %d arguments to preprocessor\n",
                  idl_global->prog_name (),
                  DRV_MAX_ARGCOUNT ));

      throw Bailout ();
    }

  char *replace = nullptr;
  if (str)
    {
      bool allocate_error = false;

#ifdef ACE_WIN32
      const char *const first_quote = ACE_OS::strchr (str, '"');
      if (first_quote)
        {
          // Escape Doublequotes on Windows

          size_t quote_count = 0;
          for (const char *quote = first_quote; quote; quote = ACE_OS::strchr (quote, '"'))
            {
              ++quote_count;
              ++quote;
            }

          ACE_NEW_NORETURN (replace, char[ACE_OS::strlen (str) + quote_count + 1]);
          allocate_error = !replace;
          if (replace)
            {
              char *to = replace;
              for (const char *from = str; *from; ++from)
                {
                  if (*from == '"')
                    {
                      *to = '\\';
                      ++to;
                    }
                  *to = *from;
                  ++to;
                }
              *to = '\0';
            }
        }
#endif
      if (ACE_OS::strchr (str, ' '))
        {
          ACE_NEW_NORETURN (replace, char[ACE_OS::strlen (str) + 3]);
          allocate_error = !replace;
          if (replace)
            {
              replace[0] = '"';
              ACE_OS::strcpy (replace + 1, str);
              ACE_OS::strcat (replace, "\"");
            }
        }

      if (allocate_error)
        {
          idl_global->err()->misc_error ("DRV_cpp_putarg failed to allocate memory for argument!");
          throw Bailout ();
        }
    }

  DRV_arglist[DRV_argcount++] = ACE::strnew (ACE_TEXT_CHAR_TO_TCHAR (replace ? replace : str));

  if (replace)
    {
      delete [] replace;
      replace = nullptr;
    }
}

// Expand the output argument with the given filename.
void
DRV_cpp_expand_output_arg (const char *filename)
{
  if (output_arg_format != nullptr)
    {
      ACE::strdelete (const_cast<ACE_TCHAR *> (
                        DRV_arglist[output_arg_index]));
      DRV_arglist[output_arg_index] = nullptr;

      ACE_NEW (DRV_arglist[output_arg_index],
               ACE_TCHAR [ACE_OS::strlen (output_arg_format)
                     + ACE_OS::strlen (filename)
                     + 1]);

      ACE_OS::sprintf (const_cast<ACE_TCHAR *> (
                         DRV_arglist[output_arg_index]),
                       ACE_TEXT_CHAR_TO_TCHAR (output_arg_format),
                       ACE_TEXT_CHAR_TO_TCHAR (filename));
    }
}

// calculate the total size of all commandline arguments
unsigned int
DRV_cpp_calc_total_argsize()
{
  unsigned long size = 0;
  unsigned long ix = 0;
  while (DRV_arglist[ix] != nullptr)
    {
      size += ACE_Utils::truncate_cast<unsigned long> (ACE_OS::strlen (DRV_arglist[ix]) + 1);
      ++ix;
    }
  return size;
}

// Get a line from stdin.
static bool
DRV_get_line (FILE *file)
{
  char *line = ACE_OS::fgets (drv_line,
                              ACE_Utils::truncate_cast<int> (drv_line_size),
                              file);
  if (!line || (!*line && feof (file)))
    {
      // End of file, nothing else read in.
      return false;
    }

  do
    {
      // Check for line continuation escape...
      size_t len = ACE_OS::strlen (drv_line);
      if (2 <= len &&
          '\n' == drv_line [len-1] &&
          '\\' == drv_line [len-2]    )
        {
          // This is a "false" end-of-line, remove token
          len-= 2;
          drv_line [len]= '\0';
        }

      // Check for end-of-line
      if (len && '\n' == drv_line [len-1])
        {
          // Replace the end-of-line with a null
          drv_line [len-1] = '\0';
          return true;
        }

      // Need to continue to read more of this line in,
      // is there enough space left in the buffer?
      if (drv_line_size - len < 10)
        {
          // Create a bigger buffer
          size_t temp_size = drv_line_size * 2;
          char *temp = nullptr;
          ACE_NEW_RETURN (temp, char [temp_size], false);
          ACE_OS::strcpy (temp, drv_line);
          delete [] drv_line;
          drv_line = temp;
          drv_line_size = temp_size;
        }

      line = ACE_OS::fgets (drv_line + len,
                            ACE_Utils::truncate_cast<int> (drv_line_size - len),
                            file);
    } while (line && *line);

  return true;
}

// Initialize the cpp argument list.
void
DRV_cpp_init ()
{
  // Create the line buffer.
  // (JP) Deleting this at the end or DRV_pre_proc() causes
  // Purify to output a Freeing Mismatched Memory warning.
  // When it is not deleted (currently the case) there is no
  // memory leak reported by Purify. I don't know why.
  ACE_NEW (drv_line,
           char [drv_line_size]);

  char const * const cpp_loc = FE_get_cpp_loc_from_env ();
  DRV_cpp_putarg (cpp_loc);

  // Add an option to the IDL compiler to make the TAO version
  // available to the user. A XX.YY.ZZ release gets
  // version 0xXXYYZZ, for example, 5.1.14 gets 0x050114.
  char version_option[128];
  ACE_OS::sprintf (version_option,
                   "-D__TAO_IDL=0x%2.2d%2.2d%2.2d",
                   ACE_MAJOR_VERSION,
                   ACE_MINOR_VERSION,
                   ACE_MICRO_VERSION);

  DRV_cpp_putarg (version_option);
  DRV_cpp_putarg ("-I.");

  const char *platform_cpp_args =
    FE_get_cpp_args_from_env ();

  if (platform_cpp_args == nullptr)
    {
      // If no cpp flag was defined by the user, we define some
      // platform specific flags here.

#if defined (TAO_IDL_PREPROCESSOR_ARGS)
      platform_cpp_args = TAO_IDL_PREPROCESSOR_ARGS;
#elif defined (ACE_CC_PREPROCESSOR_ARGS)
      platform_cpp_args = ACE_CC_PREPROCESSOR_ARGS;
#else
      platform_cpp_args = "-E";
#endif /* TAO_IDL_PREPROCESSOR_ARGS */

      // So we can find OMG IDL files, such as `orb.idl'.
      ACE_CString include_path1, include_path2;

      char* TAO_ROOT = ACE_OS::getenv ("TAO_ROOT");

      if (TAO_ROOT != nullptr)
        {
            DRV_add_include_path (include_path1,
                                  TAO_ROOT,
                                  nullptr,
                                  true);

            DRV_add_include_path (include_path2,
                                  TAO_ROOT,
                                  "/tao",
                                  true);
        }
      else
        {
          char* ACE_ROOT = ACE_OS::getenv ("ACE_ROOT");

          if (ACE_ROOT != nullptr)
            {
              DRV_add_include_path (include_path1,
                                    ACE_ROOT,
                                    "/TAO",
                                    true);

              DRV_add_include_path (include_path2,
                                    ACE_ROOT,
                                    "/TAO/tao",
                                    true);
            }
          else
            {
#if defined (TAO_IDL_INCLUDE_DIR)
              // TAO_IDL_INCLUDE_DIR may be in quotes,
              // e.g. "/usr/local/include/tao"
              // We deal with a case like this below ...
              DRV_add_include_path (include_path1,
                                    TAO_IDL_INCLUDE_DIR,
                                    0,
                                    true);
              DRV_add_include_path (include_path2,
                                    TAO_IDL_INCLUDE_DIR,
                                    "/tao",
                                    true);
#else
              DRV_add_include_path (include_path1,
                                    ".",
                                    nullptr,
                                    true);
#endif  /* TAO_IDL_INCLUDE_DIR */
            }
        }

      idl_global->tao_root (include_path1.c_str ());
    }

  // Add any flags in platform_cpp_args to cpp's DRV_arglist.
  ACE_ARGV platform_arglist (
    ACE_TEXT_CHAR_TO_TCHAR (platform_cpp_args));

  for (int i = 0; i < platform_arglist.argc (); ++i)
    {
      // Check for an argument that specifies
      // the preprocessor's output file.
      if (ACE_OS::strstr (platform_arglist[i], ACE_TEXT ("%s")) != nullptr
          && output_arg_format == nullptr)
        {
          output_arg_format =
            ACE::strnew (ACE_TEXT_ALWAYS_CHAR (platform_arglist[i]));
          output_arg_index = DRV_argcount;
          DRV_cpp_putarg (nullptr);
        }
      else
        {
          DRV_cpp_putarg (ACE_TEXT_ALWAYS_CHAR (platform_arglist[i]));
        }
    }
}

int
DRV_sweep_dirs (const char *rel_path,
                const char *base_path)
{
  // Zero rel_path means we're not using this option, and
  // so we become a no-op.
  if (rel_path == nullptr)
    {
      return 0;
    }

  if (ACE_OS::chdir (rel_path) == -1)
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         "DRV_sweep_dirs: chdir %C failed\n",
                         rel_path),
                        -1);
    }

  ACE_Dirent dir (TCHAR_DIR_DOT);
  ACE_CString bname (base_path);
  bname += (bname.length () > 0 ? "/" : "");
  bname += rel_path;
  bool include_added = false;
  char abspath[MAXPATHLEN] = "";
  char *full_path = nullptr;

  for (ACE_DIRENT *dir_entry; (dir_entry = dir.read ()) != nullptr;)
    {
      // Skip the ".." and "." files in each directory.
      if (ACE::isdotdir (dir_entry->d_name) == true)
        {
          continue;
        }

#if defined (ACE_HAS_TCHAR_DIRENT)
      ACE_CString lname (ACE_TEXT_ALWAYS_CHAR (dir_entry->d_name));
#else
      ACE_CString lname (dir_entry->d_name);
#endif
      ACE_stat stat_buf;

      if (ACE_OS::lstat (lname.c_str (), &stat_buf) == -1)
        {
          ACE_ERROR_RETURN ((LM_ERROR,
                             "DRV_sweep_dirs: ACE_OS::lstat"
                             " (%C) failed\n",
                             lname.c_str ()),
                            -1);
        }

      size_t len = 0;

      switch (stat_buf.st_mode & S_IFMT)
        {
        case S_IFREG: // Either a regular file or an executable.
          len = lname.length ();

          if (len > 4 && lname.substr (len - 4) == ".idl")
            {
              if (!include_added)
                {
                  ACE_CString incl_arg ("-I");
                  incl_arg += bname;
                  DRV_cpp_putarg (incl_arg.c_str ());
                  idl_global->add_rel_include_path (bname.c_str ());
                  full_path = ACE_OS::realpath ("", abspath);

                  if (full_path != nullptr)
                    {
                      idl_global->add_include_path (full_path,
                                                    false);
                    }

                  include_added = true;
                }

              ACE_CString fname (bname);
              fname += "/";
              fname += lname;
              DRV_push_file (fname.c_str ());
            }

          break;
        case S_IFDIR: // Subdirectory.
          DRV_sweep_dirs (lname.c_str (), bname.c_str ());
          break;
        case S_IFLNK: // Either a file link or directory link.
        default: // Some other type of file (PIPE/FIFO/device).
          break;
        }
    }

  // Move back up a level.
  if (ACE_OS::chdir (DIR_DOT_DOT) == -1)
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         "DRV_sweep_dirs: chdir "
                         ".. (from %C) failed\n",
                         rel_path),
                        -1);
    }

  return 0;
}

ACE_CString&
DRV_add_include_path (ACE_CString& include_path,
                      const char *path,
                      const char *suffix,
                      bool is_system)
{
  if (path == nullptr)
    {
      return include_path;
    }

  const bool needToQuote =
    (('"' == *path) || ACE_OS::strchr (path, ' '));
  const size_t pathLength = ACE_OS::strlen (path);
  const char
#if defined (ACE_WIN32)
    nativeDir =  '\\',
    foreignDir = '/';
#else
    nativeDir =  '/',
    foreignDir = '\\';
#endif

  // Eliminate possible enclosing quotes
  // from the path, and since some compilers
  // choke on double directory separators in
  // paths, ensure that the path does not
  // end with a directory slash.
  include_path =
    ACE_CString (path + ('"' == *path),     // Skip leading Quote
                 pathLength
                 - ('"' == *path)           // Don't count leading Quote
                 - ( (1uL < pathLength) &&  // Don't count trailing Quote XOR directory
                     ('"'        == path [pathLength - 1uL] ||
                      nativeDir  == path [pathLength - 1uL] ||
                      foreignDir == path [pathLength - 1uL]
                   ) )
                 - ( (2uL < pathLength) &&  // Don't count trailing Quote AND directory
                     '"' == path [pathLength - 1uL] &&
                     (nativeDir  == path [pathLength - 2uL] ||
                      foreignDir == path [pathLength - 2uL]
                   ) )
                );

  if (suffix != nullptr)
    {
      if (!include_path.length ()
          && ((nativeDir == *suffix) || (foreignDir == *suffix)))
        {
          // Path is empty, don't add the
          // suffix's leading directory separator.
          ++suffix;
        }

      if (include_path.length ()
          && (*suffix != '\0')
          && (nativeDir != *suffix)
          && (foreignDir != *suffix))
        {
          // Force a directory separator.
          include_path += nativeDir;
        }

      // Add the suffix string to the path,
      // ensuring that foreign directory slashes
      // are added as the native type.
      for ( ; *suffix != '\0'; ++suffix)
        {
          include_path += (foreignDir == *suffix)
                             ? nativeDir
                             : *suffix;
        }
    }

  // Build up the include string from the new path+suffix
  ACE_CString include_option ("-I\"", 2 + needToQuote);
  include_option+= include_path;

  if (needToQuote)
    {
      include_option+= '"';
    }

  DRV_cpp_putarg (include_option.c_str ());

  idl_global->add_include_path (include_path.c_str (),
                                is_system);

  return include_path;
}

// Adds additional include paths, but after parse_args() has
// added user-defined include paths.
void
DRV_cpp_post_init ()
{
  char idl_version_arg[128];
  ACE_OS::sprintf (idl_version_arg, "-D__TAO_IDL_IDL_VERSION=%s",
    idl_global->idl_version_.to_macro ());
  DRV_cpp_putarg (idl_version_arg);

  DRV_cpp_putarg ("-D__TAO_IDL_FEATURES="
#ifdef TAO_IDL_FEATURES
    TAO_IDL_FEATURES
#else
    "\"tao/idl_features.h\""
#endif
  );

  // Add include path for TAO_ROOT/orbsvcs.
  char* TAO_ROOT = ACE_OS::getenv ("TAO_ROOT");

  ACE_CString include_path3, include_path4, include_path5;

  // When adding new dirs here don't forget to update
  // FE_Utils::validate_orb_include accordingly.
  if (TAO_ROOT != nullptr)
    {
      DRV_add_include_path (include_path3,
                            TAO_ROOT,
                            "/orbsvcs",
                            true);
    }
  else
    {
      // If TAO_ROOT isn't defined, assume it's under ACE_ROOT.
      char* ACE_ROOT = ACE_OS::getenv ("ACE_ROOT");

      if (ACE_ROOT != nullptr)
        {
          DRV_add_include_path (include_path3,
                                ACE_ROOT,
                                "/TAO/orbsvcs",
                                true);
        }
      else
        {
#if defined (TAO_IDL_INCLUDE_DIR)
          DRV_add_include_path (include_path3,
                                TAO_IDL_INCLUDE_DIR,
                                "/orbsvcs",
                                true);
#else
          // If ACE_ROOT isn't defined either, there will already
          // be a warning from DRV_preproc().
          DRV_add_include_path (include_path3,
                                ".",
                                nullptr,
                                true);
#endif  /* TAO_IDL_INCLUDE_DIR */
        }
    }

  // Add include paths for CIAO_ROOT and CIAO_ROOT/ciao.
  char* CIAO_ROOT = ACE_OS::getenv ("CIAO_ROOT");

  // When adding new dirs here don't forget to update
  // FE_Utils::validate_orb_include accordingly.
  if (CIAO_ROOT != nullptr)
    {
      DRV_add_include_path (include_path4,
                            CIAO_ROOT,
                            nullptr,
                            true);

      DRV_add_include_path (include_path5,
                            CIAO_ROOT,
                            "/ciao",
                            true);

      DRV_add_include_path (include_path5,
                            CIAO_ROOT,
                            "/ccm",
                            true);
    }

  // Save path of current directory, in case
  // the call to DRV_sweep_dirs()
  // below is not a no-op - then the current
  // working directory will
  // have to be restored.
  char cwd_path[MAXPATHLEN];

  if (ACE_OS::getcwd (cwd_path, sizeof (cwd_path)) == nullptr)
    {
      ACE_ERROR ((LM_ERROR,
                  "DRV_cpp_post_init: ACE_OS::getcwd failed\n"));

      throw Bailout ();
    }

  // If first arg is non-zero, adds an include path and filename
  // for every IDL file found in all subdirectories. This is a
  // no-op for most backends.
  if (DRV_sweep_dirs (idl_global->recursion_start (), "") == -1)
    {
      ACE_ERROR ((LM_ERROR,
                  "DRV_cpp_post_init: DRV_sweep_dirs (%C) failed\n",
                  idl_global->recursion_start ()));

      throw Bailout ();
    }

  // This is redundant for most backends, but not if the call to
  // DRV_sweep_dirs() above is more than a no-op.
  if (ACE_OS::chdir (cwd_path) == -1)
    {
      ACE_ERROR ((LM_ERROR,
                  "DRV_cpp_post_init: ACE_OS::chdir (%C) failed\n",
                  cwd_path));

      throw Bailout ();
    }
}

// Local/internal helper function.
namespace
{
  // Advances the input char buffer to the first non-white
  // space character, handles /**/ comments as well.
  char
  DRV_skip_over_white_spaces (const char *&input)
  {
    while (*input != 0)
      {
        // Skip the spaces, tabs, vertical-tabs and form feeds.
        while (' ' == *input ||
              '\t' == *input ||
              '\v' == *input ||
              '\f' == *input)
          {
            ++input;
          }

        // Skip any "/*...*/" inline comments
        // (Note we can't cope with fully multi-line comments since we
        //  are scanning only single lines at a time here.)
        if ('/' != *input)
          {
            // This is the first non-white space character (could be
            // end of line).
            return *input;
          }

        if ('*' != *++input)
          {
            // Wasn't the start of a comment so / was the first non-white space character.
            return *--input;
          }

        // Skip over the contents of the comment (if we reach the end of the input
        // line we have no option but to concider the comment closed, bummer).
        do
          {
            // Looking for the closing "*/" characters
            while ('*' != *++input && *input)
              {}

            while ('*' == *input)
              {
                ++input;
              }
          } while ('/' != *input && *input);

          if ('/' == *input)
            {
              ++input;
            }
      }

    return '\0'; // Reached end of line.
  }

  // Checks for and skips over #include, positions buffer
  // at the leading quote character of the filename if
  // #include is found.
  bool
  DRV_find_include_filename (const char *&input)
  {
    // Must have initial # character
    if ('#' != DRV_skip_over_white_spaces (input))
      {
        return false;
      }

    // Only want #include to match
    const char *include_str = "include";

    if (*include_str != DRV_skip_over_white_spaces (++input))
      {
        return false;
      }

    while (*++include_str == *++input && *input)
      {}

    if (*include_str || !*input)
      {
        // Not #include (or it ends before filename given).
        return false;
      }

    // Next thing is finding the file that has been `#include'd. Skip
    // over to the starting " or < character.
    const char start_char = DRV_skip_over_white_spaces (input);
    return ('"' == start_char || '<' == start_char);
  }

  // We really need to know whether
  // this line is a "#include ...". If
  // so, we would like to separate the
  // "file name" and keep that in the
  // idl_global. We need them to produce
  // "#include's in the stubs and
  // skeletons.
  void
  DRV_check_for_include (const char *buf)
  {
    if (!DRV_find_include_filename (buf))
      {
        return;
      }

    // Skip over this leading " or < and
    // copy the filename upto the
    // closing " or > character.
    const char
      start_char = *buf++,
      end_char   = ('<' == start_char) ? '>' : start_char;

    char
      incl_file[MAXPATHLEN + 1],
      *fi = incl_file;

    while (*buf != '\0' && *buf != end_char)
      {
        // Put Microsoft-style pathnames into a canonical form.
        if ('\\' == buf[0] && '\\' == buf [1])
          {
            ++buf;
          }

        *fi++ = *buf++;

        if (fi == incl_file + sizeof (incl_file) - 1)
          {
            // Safety valve, filename given was too long!
            break;
          }
      }

    *fi= '\0';
    const size_t len = fi - incl_file;

    if (len == 0)
    {
      return; // Null filename not allowed.
    }

    ACE_CString const name_str (incl_file);
    ACE_CString const simple ("orb.idl");
    ACE_CString const nix_path ("tao/orb.idl");
    ACE_CString const win_path ("tao\\orb.idl");

    // Some backends pass this file through, others don't.
    if (name_str == simple
        || name_str == nix_path
        || name_str == win_path)
      {
        if (idl_global->pass_orb_idl ())
          {
            idl_global->add_to_included_idl_files (incl_file);
          }
        else
          {
            DRV_get_orb_idl_includes ();
          }
      }
    // We have special lookup for orb.idl (TAO_ROOT/tao) that
    // also kicks in for .pidl files. If one of the latter is
    // included as a local name only, we add the 'tao/' prefix
    // so the generated C++ include files will be correct.
    else if ((5 <= len && !ACE_OS::strcmp (incl_file + len - 5, ".pidl"))
             && !ACE_OS::strchr (incl_file, '/')
             && !ACE_OS::strchr (incl_file, '\\'))
      {
        ACE_CString fixed_name ("tao/");
        fixed_name += incl_file;

        idl_global->add_to_included_idl_files (fixed_name.c_str ());
      }
    else
      {
        idl_global->add_to_included_idl_files (incl_file);
      }
  }

  // This method turns a line like '#include "a.idl"' into the
  // line '#include <a.idl>'
  void
  DRV_convert_includes (char *buf)
  {
    const char *input = buf;

    if (!DRV_find_include_filename (input) || '"' != *input)
      {
        return; // Only interested in #include "" type
      }

    buf = const_cast<char *> (input);

    // Find the closing '"' character.
    char *open_quote= buf;

    while ('"' != *++buf && *buf != '\0')
      {
        if ('>' == *buf)
          {
            // Can't change to #include <> as it
            // has a > character in the filename!
            return;
          }
      }
    if ('"' == *buf)
      {
        // Replace the quotes with angle brackets.
        *open_quote = '<';
        *buf = '>';
      }
  }
} // End of local/internal namespace

void
DRV_get_orb_idl_includes ()
{
  static char const orb_idl[] = "tao/orb.idl";

 // Search for orb.idl in supplied include file search paths.
  char const * directory = nullptr;
  FILE * fp = FE_Utils::open_included_file (orb_idl, directory);

  if (fp == nullptr)
    {
      // Fall back on $TAO_ROOT/tao/orb.idl if orb.idl is not in the
      // include path.
      ACE_CString orb_idl_path (ACE_CString (idl_global->tao_root ())
                                + ACE_CString ('/')
                                + ACE_CString (orb_idl));

      fp = ACE_OS::fopen (orb_idl_path.c_str (), "r");

      if (fp == nullptr)
        {
          ACE_ERROR ((LM_ERROR,
                      "TAO_IDL: cannot open or find file: %C\n",
                      orb_idl_path.c_str ()));

          throw Bailout ();
        }
    }
  else
    {
      // Make sure the include directory containing orb.idl is passed
      // to the preprocessor.
      // This should go after user supplied include paths.
      ACE_CString include_path_arg;
      DRV_add_include_path (include_path_arg, directory, "/tao", true);
    }

  while (DRV_get_line (fp))
    {
      // Find the included .pidl files in orb.idl and add them to the
      // included IDL file list.
      DRV_check_for_include (drv_line);
    }

  ACE_OS::fclose (fp);
}

// Copy to a file.
static void
DRV_copy_input (FILE *fin,
                FILE *f,
                const char *fn,
                const char *orig_filename)
{
  if (f == nullptr)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: cannot open temp file \"%C\" for copying from \"%C\": %m\n",
                  idl_global->prog_name (),
                  fn,
                  orig_filename));

      throw Bailout ();
    }

  if (fin == nullptr)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: cannot open input file\n",
                  idl_global->prog_name ()));

      throw Bailout ();
    }

#if !defined (ACE_WIN32)
  ACE_OS::fprintf (f,
                   "#line 1 \"%s\"\n",
                   orig_filename);
#else
  // Convert single \ into double \ otherwise MSVC++ pre-processor
  // gets awfully confused.
  char buf[2*MAXPATHLEN];
  char *d = buf;

  for (const char *s = orig_filename; *s != 0; ++s)
    {
      if (*s == '\\')
        {
          *d = '\\';
          ++d;
        }

      *d = *s;
      ++d;
    }

  *d = 0;
  ACE_OS::fprintf (f,
                   "#line 1 \"%s\"\n",
                   buf);
#endif /* ! ACE_WIN32 */

  while (DRV_get_line (fin))
    {
      DRV_convert_includes (drv_line);

      // Print the line to the temporary file.
      ACE_OS::fprintf (f,
                       "%s\n",
                       drv_line);

      // We really need to know whether this line is a "#include
      // ...". If so, we would like to separate the "file name" and
      // keep that in the idl_global. We need them to produce
      // "#include's in the stubs and skeletons.
      DRV_check_for_include (drv_line);
    }

  // Close the temporary file.
  ACE_OS::fclose (f);
}

// Strip down a name to the last component,
// i.e. everything after the last '/' or '\' character.
static char *
DRV_stripped_name (char *fn)
{
    char *n = fn;
    size_t l;

    if (n == nullptr)
      {
        return nullptr;
      }

    l = ACE_OS::strlen (n);
    int slash_found = 0;

    for (n += l - 1; n >= fn && !slash_found; n--)
      {
        slash_found = (*n == '/' || *n == '\\');
      }

    n += 1;

    if (slash_found)
      {
        n += 1;
      }

    return n;
}

// Pass input through preprocessor.
void
DRV_pre_proc (const char *myfile)
{
  // Check to see that the file is a normal file. If we don't and the file is a
  // directory, then the copy would be blank and any error message later might
  // not be helpful.
  ACE_stat file_stat;
  if (ACE_OS::stat (myfile, &file_stat) == -1)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: ERROR: Unable to open file (stat) \"%C\": %m\n",
                  idl_global->prog_name (),
                  myfile));
      throw Bailout ();
    }
  else if ((file_stat.st_mode & S_IFREG) != S_IFREG)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: ERROR: This is not a regular file: \"%C\"\n",
                  idl_global->prog_name (),
                  myfile));
      throw Bailout ();
    }

  const char* tmpdir = idl_global->temp_dir ();
  static const char temp_file_extension[] = ".cpp";

  static char const tao_idlf_template[] = "tao-idlf_XXXXXX";
  static char const tao_idli_template[] = "tao-idli_XXXXXX";

  size_t const tlen =
    ACE_OS::strlen (tmpdir) + sizeof (temp_file_extension);

  // Prevent a buffer overrun.
  if (tlen + sizeof (tao_idlf_template) > sizeof (tmp_file)
      || tlen + sizeof (tao_idli_template) > sizeof (tmp_ifile))
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: temporary path/filename length is greater than "
                  "length allowed by platform\n",
                  idl_global->prog_name ()));

      throw Bailout ();
    }

  ACE_OS::strcpy (tmp_file,  tmpdir);
  ACE_OS::strcpy (tmp_ifile, tmpdir);

  // Append temporary filename template to temporary directory.
  ACE_OS::strcat (tmp_file,  tao_idlf_template);
  ACE_OS::strcat (tmp_ifile, tao_idli_template);

  ACE_HANDLE const ti_fd = ACE_OS::mkstemp (tmp_ifile);

  if (ti_fd == ACE_INVALID_HANDLE)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: Unable to create temporary file \"%C\": %m\n",
                  idl_global->prog_name (),
                  tmp_ifile));

      throw Bailout ();
    }

  ACE_HANDLE const tf_fd = ACE_OS::mkstemp (tmp_file);

  if (tf_fd == ACE_INVALID_HANDLE)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: Unable to create temporary file \"%C\": %m\n",
                  idl_global->prog_name (),
                  tmp_file));

      (void) ACE_OS::unlink (tmp_ifile);
      throw Bailout ();
    }

  char tmp_cpp_file [MAXPATHLEN + 1] = { 0 };
  char tmp_cpp_ifile[MAXPATHLEN + 1] = { 0 };

  // Append C++ source file extension.  Temporary files will be renamed
  // to these filenames.
  ACE_OS::strcpy (tmp_cpp_file,  tmp_file);
  ACE_OS::strcpy (tmp_cpp_ifile, tmp_ifile);
  ACE_OS::strcat (tmp_cpp_file,  temp_file_extension);
  ACE_OS::strcat (tmp_cpp_ifile, temp_file_extension);

  char * const t_file  = tmp_cpp_file;
  char * const t_ifile = tmp_cpp_ifile;

  ACE_OS::close (tf_fd);

  // Rename temporary files so that they have extensions accepted
  // by the preprocessor.
  FILE * const file = ACE_OS::fopen (myfile, "r");
  if (file == nullptr)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: ERROR: Unable to open file (fopen) \"%C\": %m\n",
                  idl_global->prog_name (),
                  myfile));
      (void) ACE_OS::unlink (tmp_ifile);
      (void) ACE_OS::unlink (tmp_file);
      throw Bailout ();
    }

  DRV_copy_input (file,
                  ACE_OS::fdopen (ti_fd, ACE_TEXT("w")),
                  tmp_ifile,
                  myfile);
  ACE_OS::fclose (file);

  UTL_String *utl_string = nullptr;

#if defined (ACE_OPENVMS)
  {
    char main_abspath[MAXPATHLEN] = "";
    char trans_path[MAXPATHLEN] = "";
    char *main_fullpath =
      ACE_OS::realpath (IDL_GlobalData::translateName (myfile, trans_path),
                        main_abspath);

    if (main_fullpath == 0)
      {
        ACE_ERROR ((LM_ERROR,
                    ACE_TEXT ("Unable to construct full file pathname\n")));

        (void) ACE_OS::unlink (tmp_ifile);
        (void) ACE_OS::unlink (tmp_file);
        throw Bailout ();
      }

    ACE_NEW (utl_string,
             UTL_String (main_fullpath, true));

    idl_global->set_main_filename (utl_string);
  }
#else
  ACE_NEW (utl_string,
           UTL_String (myfile, true));

  idl_global->set_main_filename (utl_string);
#endif

  ACE_Auto_String_Free safety (ACE_OS::strdup (myfile));

  UTL_String *stripped_tmp = nullptr;
  ACE_NEW (stripped_tmp,
           UTL_String (DRV_stripped_name (safety.get ()), true));

  idl_global->set_stripped_filename (stripped_tmp);

  UTL_String *real_tmp = nullptr;
  ACE_NEW (real_tmp,
           UTL_String (t_ifile, true));

  idl_global->set_real_filename (real_tmp);

  // We use ACE instead of the (low level) fork facilities, this also
  // works on NT.
  ACE_Process process;

  DRV_cpp_expand_output_arg (t_file);
  DRV_cpp_putarg (t_ifile);
  DRV_cpp_putarg (nullptr); // Null terminate the DRV_arglist.

  // For complex builds, the default
  // command line buffer size of 1024
  // is often not enough. We determine
  // the required space and arg nr
  // dynamically here.
  ACE_Process_Options cpp_options (true,       // Inherit environment.
                                   DRV_cpp_calc_total_argsize (),
                                   16 * 1024,
                                   512,
                                   DRV_argcount);

  if (cpp_options.command_line (DRV_arglist) != 0)
    {
      ACE_ERROR ((LM_ERROR,
                  ACE_TEXT ("%C: command line processing \"%s\" failed\n"),
                  idl_global->prog_name (),
                  DRV_arglist[0]));

      (void) ACE_OS::unlink (tmp_ifile);
      (void) ACE_OS::unlink (tmp_file);
      throw Bailout ();
    }

  // Rename temporary files so that they have extensions accepted
  // by the preprocessor.  Renaming is (supposed to be) an atomic
  // operation so we shouldn't be susceptible to attack.
  if (ACE_OS::rename (tmp_file, t_file) != 0)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: Unable to rename temporary "
                  "file \"%C\" to \"%C\": %m\n",
                  idl_global->prog_name (),
                  tmp_file,
                  t_file));


      (void) ACE_OS::unlink (tmp_ifile);
      (void) ACE_OS::unlink (tmp_file);
      throw Bailout ();
    }

  if (ACE_OS::rename (tmp_ifile, t_ifile) != 0)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: Unable to rename temporary "
                  "file \"%C\" to \"%C\": %m\n",
                  idl_global->prog_name (),
                  tmp_ifile,
                  t_ifile));

      (void) ACE_OS::unlink (tmp_ifile);
      (void) ACE_OS::unlink (t_file);
      throw Bailout ();
    }

  // Remove any existing output file.
  (void) ACE_OS::unlink (t_file);

  ACE_HANDLE fd = ACE_INVALID_HANDLE;

  if (output_arg_format == nullptr)
    {
      // If the following open() fails, then we're either being hit with a
      // symbolic link attack, or another process opened the file before
      // us.
#if defined (ACE_OPENVMS)
      //FUZZ: disable check_for_lack_ACE_OS
      fd = ::open (t_file, O_WRONLY | O_CREAT | O_EXCL,
                   ACE_DEFAULT_FILE_PERMS,
                   "shr=get,put,upd", "ctx=rec", "fop=dfw");
      //FUZZ: enable check_for_lack_ACE_OS
#else
      fd = ACE_OS::open (t_file,
                         O_WRONLY | O_CREAT | O_EXCL,
                         ACE_DEFAULT_FILE_PERMS);
#endif

      if (fd == ACE_INVALID_HANDLE)
        {
          ACE_ERROR ((LM_ERROR,
                      "%C: cannot open temp file"
                      " \"%C\" for writing: %m\n",
                      idl_global->prog_name (),
                      t_file));

          (void) ACE_OS::unlink (t_file);
          (void) ACE_OS::unlink (t_ifile);
          throw Bailout ();
        }

      if (cpp_options.set_handles (ACE_INVALID_HANDLE, fd) == -1)
        {
          ACE_ERROR ((LM_ERROR, "%C: cannot set stdout for child process: %m\n",
                      idl_global->prog_name ()));

          throw Bailout ();
        }
    }

  if (idl_global->compile_flags () & IDL_CF_INFORMATIVE)
    {
      ACE_DEBUG ((LM_DEBUG, "%C: spawning: %s\n",
                  idl_global->prog_name (),
                  cpp_options.command_line_buf ()));
    }

  if (process.spawn (cpp_options) == ACE_INVALID_PID)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: spawn of \"%s\" failed\n",
                  idl_global->prog_name (),
                  DRV_arglist[0]));


      (void) ACE_OS::unlink (t_file);
      (void) ACE_OS::unlink (t_ifile);
      throw Bailout ();
    }

  if (fd != ACE_INVALID_HANDLE)
    {
      // Close the output file on the parent process.
      if (ACE_OS::close (fd) == -1)
        {
          ACE_ERROR ((LM_ERROR,
            "%C: cannot close temp file \"%C\" on parent: %m\n",
                      idl_global->prog_name (),
                      t_file));

          (void) ACE_OS::unlink (t_file);
          (void) ACE_OS::unlink (t_ifile);
          throw Bailout ();
        }
    }

  // Remove the null termination and the
  // input file from the DRV_arglist,
  // the next file will the previous args.
  DRV_argcount -= 2;
  ACE::strdelete (
    const_cast<ACE_TCHAR *> (DRV_arglist[DRV_argcount]));
  DRV_arglist[DRV_argcount] = nullptr;
  ACE_exitcode status = 0;

  if (process.wait (&status) == ACE_INVALID_PID)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: wait for child process failed\n",
                  idl_global->prog_name ()));

      (void) ACE_OS::unlink (t_file);
      (void) ACE_OS::unlink (t_ifile);
      throw Bailout ();
    }

  if (WIFEXITED ((status)))
    {
      // Child terminated normally?
      if (WEXITSTATUS ((status)) != 0)
        {
          errno = WEXITSTATUS ((status));

          ACE_ERROR ((LM_ERROR,
                      "%C: preprocessor \"%s\" "
                      "returned with an error\n",
                      idl_global->prog_name (),
                      DRV_arglist[0]));

          (void) ACE_OS::unlink (t_file);
          (void) ACE_OS::unlink (t_ifile);
          throw Bailout ();
        }
    }
  else
    {
      // Child didn't call exit(); perhaps it received a signal?
      errno = EINTR;

      ACE_ERROR ((LM_ERROR,
                  "%C: preprocessor \"%s\" appears "
                  "to have been interrupted\n",
                  idl_global->prog_name (),
                  DRV_arglist[0]));

      (void) ACE_OS::unlink (t_file);
      (void) ACE_OS::unlink (t_ifile);
      throw Bailout ();
    }
  // TODO: Manage problems in the
  // pre-processor, in the previous
  // version the current process
  // would exit if the pre-processor
  // returned with error.

#if defined (ACE_OPENVMS)
  cpp_options.release_handles();
#endif

  FILE * const yyin = ACE_OS::fopen (t_file, "r");

  if (yyin == nullptr)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: Could not open cpp "
                  "output file \"%C\": %m\n",
                  idl_global->prog_name (),
                  t_file));

      (void) ACE_OS::unlink (t_file);
      (void) ACE_OS::unlink (t_ifile);
      throw Bailout ();
    }

  FE_set_yyin (yyin);

  if (idl_global->compile_flags () & IDL_CF_ONLY_PREPROC)
    {
      FILE *preproc = ACE_OS::fopen (t_file, "r");
      char buffer[ACE_MAXLOGMSGLEN];
      size_t bytes;

      if (preproc == nullptr)
        {
          ACE_ERROR ((LM_ERROR,
                      "%C: Could not open cpp "
                      "output file \"%C\": %m\n",
                      idl_global->prog_name (),
                      t_file));

          (void) ACE_OS::unlink (t_file);
          (void) ACE_OS::unlink (t_ifile);
          throw Bailout ();
        }

      // ACE_DEBUG sends to stderr - we want stdout for this dump
      // of the preprocessor output. So we modify the singleton that
      // was created in this process. Since IDL_CF_ONLY_PREPROC causes
      // an (almost) immediate exit below, we don't have to restore
      // the singleton's default parameters.
      ACE_Log_Msg *out = ACE_Log_Msg::instance ();
      out->msg_ostream (&cout);
      out->clr_flags (ACE_Log_Msg::STDERR);
      out->set_flags (ACE_Log_Msg::OSTREAM);

      while ((bytes = ACE_OS::fread (buffer,
                                     sizeof (char),
                                     ACE_MAXLOGMSGLEN - 1,
                                     preproc))
               != 0)
        {
          buffer[bytes] = 0;
          ACE_DEBUG ((LM_DEBUG, buffer));
        }

      ACE_OS::fclose (preproc);
    }

  if (ACE_OS::unlink (t_ifile) == -1)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: Could not remove cpp "
                  "input file \"%C\": %m\n",
                  idl_global->prog_name (),
                  t_ifile));

      throw Bailout ();
    }

  if (ACE_OS::unlink (t_file) == -1)
    {
      ACE_ERROR ((LM_ERROR,
                  "%C: Could not remove cpp "
                  "output file \"%C\": %m\n",
                  idl_global->prog_name (),
                  t_file));

      throw Bailout ();
    }
}