File: utils.cpp

package info (click to toggle)
flang 20181226-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 181,072 kB
  • sloc: cpp: 1,182,685; ansic: 598,652; objc: 103,775; f90: 57,054; python: 15,041; fortran: 13,601; lisp: 10,416; perl: 2,460; asm: 2,148; sh: 1,544; awk: 995; cs: 565; xml: 403; lex: 295; makefile: 225; pascal: 130
file content (552 lines) | stat: -rw-r--r-- 13,312 bytes parent folder | download
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
/*
 * Copyright (c) 2017, NVIDIA CORPORATION.  All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

/**
 * \file
 * \brief Utility routines used by nroff-to-C utility programs.
 */

// This file was originally written in C and migrated to C++.  The first part
// of this file has remnants of old C interfaces that are still in use.
// The second part has implementations of more modern C++ interfaces.

#define USE_OLD_C_UTILS
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "utils.h"

static int lineno;
static FILE *currfile = 0; /* current file being read */
static char lbuff[MAXLINE + 1];
static int currpos; /* current position within lbuff */

FILE *infile[10], *outfile[10], *savefile[10];
static FILE *null_file;
#ifdef HOST_WIN
#define NULL_FNAME "nul"
#else
#define NULL_FNAME "/dev/null"
#endif

std::list<std::string> includePaths;

inline bool
isPathSeparator(char c)
{
#ifdef __WIN
  return  c=='\\' || c =='/'? true: false;
#else
  return c =='/'? true: false;
#endif
}

/**
 * Process command line and open input and output files. By default stdin and
 * stdout are used. Files up to "-o" are considered input files and files
 * following "-o" are output files (max of 10 each).  "-" used for a file
 * name indicates the default (stdin or stdout).  -n preceeding a file name
 * says that file is nroff output rather than C output.
 */
void
open_files(int argc, char *argv[])
{
  int i;
  const char *mode; /* file read or write mode */
  char *progname;
  FILE **fptr;
  int nsw;

  for (i = 0; i < 10; i++) {
    infile[i] = stdin;    /* default input files */
    outfile[i] = stdout;  /* default output files */
    savefile[i] = stdout; /* default output files */
  }

  if (argc > 11)
    put_err(4, "too many command line tokens");

  fptr = &infile[0];
  progname = *argv;
  {
    int ll = strlen(progname);
    char *p = progname + ll;
    while (ll--) {
      --p;
      if (*p == '.') {
        *p = '\0';                          /* skip off .exe suffix */
      } else if (isPathSeparator(*p)) { /* strip pat'h */
        progname = p + 1;
        break;
      }
    }
  }

  mode = "wb";
  null_file = fopen(NULL_FNAME, mode);
  mode = "r";

  nsw = 0;
  while (--argc > 0) {
    argv++;
    if ((*argv)[0] == '-') {
      if ((*argv)[1] == 'o') {
        /* switch from input files to output files: */
        mode = "wb";
        fptr = &outfile[0];
      } else if ((*argv)[1] == 'n')
        /* nroff output */
        nsw = 1;
      else if ((*argv)[1] == '\0')
        fptr++; /* let default file apply */
      else
        put_err(4, "illegal command line flag");
    } else {
      *fptr = fopen(*argv, mode);
      if (*fptr == NULL)
        put_err(4, "error opening file");
      if (*mode == 'w') {
        if (nsw)
          fputs(".\\\" ", *fptr);
        else
          fputs("/* ", *fptr);
        fprintf(*fptr,
                "%s - This file written by utility program %s.  Do not modify.",
                *argv, progname);
        if (nsw)
          fputc('\n', *fptr);
        else
          fputs(" */\n", *fptr);
      }
      fptr++;
      nsw = 0;
    }
  }
}

/** \brief Supress output going to output files. */
void
output_off()
{
  for (int i = 0; i < 10; i++) {
    savefile[i] = outfile[i];
    outfile[i] = null_file;
  }
}

/** \brief Enable output going to output files. */
void
output_on()
{
  for (int i = 0; i < 10; i++)
    outfile[i] = savefile[i];
}

/** \brief Same as get_line except copies to outf. */
int
get_line1(FILE *funit, LT ltypes[], FILE *outf)
{
  int i;
  static int saveline = 0;

  if (funit != currfile) { /* reading from different file than last time*/
    /*  try to maintain correct line numbers if reading from two
        input files at same time:  */
    i = lineno;
    lineno = saveline;
    saveline = i;
    currfile = funit;
  }
  currpos = 3;
  LOOP
  {
    if (fgets(lbuff, MAXLINE, funit) == NULL) {
      lineno = -1;
      return (LT_EOF);
    }
    lineno++;
    for (i = 0; ltypes[i].ltnum != 0; i++)
      if (strncmp(lbuff, ltypes[i].str, 3) == 0)
        return (ltypes[i].ltnum);
    fputs(lbuff, outf);
  }
}

void
flush_line(FILE *outf)
{
  fputs(lbuff, outf);
}

/**
   read input lines until one matching one of the line types
   in the 'ltypes' array is found.  Return the corresponding
   integer line type id, or 0 for end of file.
   Set currpos to point immediately after first 3 chars of line.
 */
int
get_line(FILE *funit, LT ltypes[])
{

  /* ltypes array of structures defining line types */

  int i;
  static int saveline = 0;

  if (funit != currfile) {
    /*  try to maintain correct line numbers if reading from two
        input files at same time:  */
    i = lineno;
    lineno = saveline;
    saveline = i;
    currfile = funit;
  }
  currpos = 3;
  LOOP
  {
    if (fgets(lbuff, MAXLINE, funit) == NULL) {
      lineno = -1;
      return (LT_EOF);
    }
    lineno++;
    for (i = 0; ltypes[i].ltnum != 0; i++) {
      if (strncmp(lbuff, ltypes[i].str, 3) == 0)
        return (ltypes[i].ltnum);
    }
  }
}

/**
   write error message to stderr with line number if non-zero
   (using global variable lineno) and severity level given by sev.
   Abort if sev == 4 (fatal error).
   \param sev error severity
   \param txt error text to be written
 */
#ifdef __cplusplus
extern "C"
#endif
void
put_err(int sev, const char *txt)
{

  static const char *sevtxt[5] = {" ", "INFORMATIONAL ", "WARNING ",
                                  "SEVERE ERROR ", "FATAL ERROR "};
  char line[200]; /* temp buffer used to construct error message */
  char tmp[10];

  if (sev < 1 || sev > 4)
    sev = 4;
  strcpy(line, sevtxt[sev]);
  if (lineno > 0) {
    strcat(line, " at line ");
    sprintf(tmp, "%d   ", lineno);
    strcat(line, tmp);
  }
  strcat(line, txt);
  strcat(line, "\n");
  fputs(line, stderr);
  if (sev == 4)
    exit(1);
}

/**
   \brief Skip past blanks in lbuff beginning at currpos, and move
   into 'out' the token up to the next blank character.

   Currpos is left pointing to the first character (blank, NULL,
   or endline) following the token.
   One of the following values is returned in len:
   - len > 0  :  number of characters in token.
   - len == 0 :  no token remaining in lbuff.
   - len == -1:  error occurred.
 */
void
get_token(char out[], int *len)
{
  int i;
  char c;
  char endtok;

  while (lbuff[currpos] == ' ')
    currpos++;
  if (lbuff[currpos] == '\0' || lbuff[currpos] == '\n') {
    *len = 0;
    return;
  }

  endtok = (lbuff[currpos] == '\"' ? '\"' : ' ');
  i = 0;
  if (endtok == '\"')
    currpos++;

  LOOP
  {
    c = lbuff[currpos];
    if (c == endtok || c == '\0' || c == '\n')
      break;
    out[i++] = c;
    currpos++;
  }

  if (endtok == '\"') {
    if (c == endtok) {
      if (i == 0)
        out[i++] = ' ';
      currpos++;
    } else
      put_err(3, "double quote missing from end of string");
  }
  out[i] = '\0';
  *len = i; /* length of token */
}

/**
   \brief dummy version of interr to satisfy external refs.
 */
#ifdef __cplusplus
extern "C"
#endif
void
interr(const char *txt, int val, int sev)
{
  char t[80];
  sprintf(t, "internal error. %s . %d", txt, val);
  put_err(sev, t);
}

//-----------------------------------------------------------------
// NroffInStream
//-----------------------------------------------------------------

void
NroffInStream::pop_file()
{
  tos().file->close();
  delete tos().file;
  stack.pop_back();
}

void
NroffInStream::close()
{
  while (!stack.empty())
    pop_file();
}

void
NroffInStream::printError(ErrorSeverity sev, const char *txt1, const char *txt2)
{
  static const char *sevtxt[] = {" ", "INFORMATIVE", "WARNING", "SEVERE ERROR",
                                 "FATAL ERROR"};
  if (sev < INFO || sev > FATAL) {
    sev = FATAL;
  }
  std::cerr << sevtxt[sev];

  // Issue file context if file is open
  if (!stack.empty()) {
    int lineno = tos().lineno;
    if (lineno > 0)
      std::cerr << " line " << lineno;
    std::cerr << " file " << tos().filename << ": ";
  }

  // Issue error message
  std::cerr << txt1 << txt2 << "\n";

  // Issue file-inclusion context
  if (stack.size() >= 2) {
    auto c = stack.end() - 1;
    do {
      --c;
      std::cerr << "included from line " << c->lineno << " file "
                << c->filename.c_str() << "\n";
    } while (c != stack.begin());
  }

  if (sev == FATAL) {
    std::exit(1);
  }
}

bool
getline(NroffInStream &f, std::string &s)
{
  while (!f.stack.empty()) {
    NroffInStream::context &c = f.stack.back();
    if (!getline(*c.file, s)) {
      f.pop_file();
    } else {
      ++c.lineno;
      if (strncmp(s.c_str(), ".so ", 4) != 0) {
        return true;
      } else {
        /* Found include directive. */
        char filename[FILENAME_MAX + 1];
        int count = sscanf(s.c_str() + 4, "%s", filename);
        if (count != 1)
          f.printError(FATAL,
                       ".so directive should be followed by a file name");
        if (strcmp(filename, "iliindex.n") == 0 ||
            strcmp(filename, "ilmindex.n") == 0) {
          /* Ignore directive - file is generated later */
          continue;
        }
        const char *outer = c.filename.c_str();
        char relFilename[FILENAME_MAX + 1];
        const char *t1 = strrchr(outer, '/');
        const char *t2 = strrchr(outer, '\\');
        const char *t = t1 > t2? t1: t2;
        if (t && isPathSeparator(*t)) {
          /* Treat include-file name as relative to directory that original
             file is in. */
          size_t k = t - outer + 1;
          memmove(relFilename + k, filename, strlen(filename) + 1);
          memcpy(relFilename, outer, k);
        }
        f.push_file(relFilename);
        /* if not found, look in the include dirs */
        for (std::list<std::string>::iterator incIter = includePaths.begin(); 
             !f && incIter != includePaths.end(); 
             incIter++) {
          std::string incFileName = *incIter + filename;
          f.push_file(incFileName.c_str());
        }
        if (!f) {
          f.printError(FATAL, "cannot open nroff include file ", filename);
        }
      }
    }
  }
  /* Reached end of outermost file. */
  return false;
}

void
collectIncludePaths(int argc, char *argv[])
{
  for (int i = 1; i < argc; i++ ) {
    if( strncmp(argv[i], "-I", 2) == 0 ) {
      char *cp = argv[i]+2;
      while (*cp && isspace(*cp)) {
        cp++;
      }
      if (!isPathSeparator(*cp)) {
          put_err(3, "Include file path must be a full path name\n");
      }
      std::string inclStr(cp);
      if( !isPathSeparator(inclStr[inclStr.size()-1]) ) {
        inclStr += '/';
      }
      includePaths.push_back(inclStr);
    }
  }
#ifdef DEBUG
    std::cout << "INCLUDE FILE PATHS\n";
    for (std::list<std::string>::iterator incIter = includePaths.begin();
             incIter != includePaths.end();
             incIter++) {
      std::cout << incIter->c_ptr() <<'\n';
    }
#endif
}

//-----------------------------------------------------------------
// NroffMap
//-----------------------------------------------------------------

void
NroffMap::proxy::operator=(int code)
{
  assert(code != 0);
  assert(strlen(string) == 3);
  map->myMap[string] = code;
}

int
NroffMap::match(const std::string &line) const
{
  auto item = myMap.find(line.substr(0, 3));
  if (item != myMap.end()) {
    return item->second;
  }
  return 0;
}

const char *
NroffMap::stringOf(int code) {
  assert(code != 0);
  for (auto item = myMap.begin(); item != myMap.end(); ++item)
    if (item->second==code) 
      return item->first.c_str();
  return nullptr;
}

//-----------------------------------------------------------------
// NroffTokenStream
//-----------------------------------------------------------------

int
NroffTokenStream::get_line(const NroffMap &map)
{
  pos = nullptr;
  while (getline(ifs, buf)) {
    int result = map.match(buf);
    if (result) {
      pos = buf.c_str() + 3;
      return result;
    }
  }
  return 0;
}

bool
NroffTokenStream::get_token(std::string &tok)
{
  while (isspace(*pos))
    ++pos;

  if (!*pos)
    return false;

  // Find where token begins and ends.
  const char *begin, *end;
  if (*pos == '\"') {
    begin = pos + 1;
    end = strchr(begin, '\"');
    if (end) {
      pos = end + 1;
      if (end == begin + 1)
        printError(WARN, "double quoted string is empty");
    } else {
      printError(SEVERE, "double quote missing from end of string");
      // Assume missing " should be at end of line.
      end = strchr(begin, 0);
      pos = end;
    }
  } else {
    begin = pos;
    while (*pos && !isspace(*pos))
      ++pos;
    end = pos;
  }

  tok.assign(begin, end - begin);
  return true;
}