home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d8xx / d848 / cweb.lha / CWeb / CWeb27.lha / common.w < prev    next >
Encoding:
Text File  |  1993-03-16  |  40.7 KB  |  1,117 lines

  1. % This file is part of CWEB.
  2. % This program by Silvio Levy is based on a program by D. E. Knuth.
  3. % It is distributed WITHOUT ANY WARRANTY, express or implied.
  4. % Version 2.4 --- Don Knuth, June 1992
  5.  
  6. % Copyright (C) 1987,1990 Silvio Levy and Donald E. Knuth
  7.  
  8. % Permission is granted to make and distribute verbatim copies of this
  9. % document provided that the copyright notice and this permission notice
  10. % are preserved on all copies.
  11.  
  12. % Permission is granted to copy and distribute modified versions of this
  13. % document under the conditions for verbatim copying, provided that the
  14. % entire resulting derived work is distributed under the terms of a
  15. % permission notice identical to this one.
  16.  
  17. \def\v{\char'174} % vertical (|) in typewriter font
  18.  
  19. \def\title{Common code for CTANGLE and CWEAVE (Version 2.7)}
  20. \def\topofcontents{\null\vfill
  21.   \centerline{\titlefont Common code for {\ttitlefont CTANGLE} and
  22.     {\ttitlefont CWEAVE}}
  23.   \vskip 15pt
  24.   \centerline{(Version 2.7)}
  25.   \vfill}
  26. \def\botofcontents{\vfill
  27. \noindent
  28. Copyright \copyright\ 1987,\thinspace1990 Silvio Levy and Donald E. Knuth
  29. \bigskip\noindent
  30. Permission is granted to make and distribute verbatim copies of this
  31. document provided that the copyright notice and this permission notice
  32. are preserved on all copies.
  33.  
  34. \smallskip\noindent
  35. Permission is granted to copy and distribute modified versions of this
  36. document under the conditions for verbatim copying, provided that the
  37. entire resulting derived work is distributed under the terms of a
  38. permission notice identical to this one.
  39. }
  40.  
  41. \pageno=\contentspagenumber \advance\pageno by 1
  42. \let\maybe=\iftrue
  43.  
  44. @* Introduction.  This file contains code common
  45. to both \.{TANGLE} and \.{WEAVE}, that roughly concerns the following
  46. problems: character uniformity, input routines, error handling and
  47. parsing of command line.  We have tried to concentrate in this file
  48. all the system dependencies, so as to maximize portability.
  49.  
  50. In the texts below we will
  51. sometimes use \.{WEB} to refer to either of the two component
  52. programs, if no confusion can arise.
  53.  
  54. Here is the overall appearance of this file:
  55.  
  56. @c
  57. @<Include files@>@/
  58. @<Definitions that should agree with \.{TANGLE} and \.{WEAVE}@>@;
  59. @<Other definitions@>@;
  60. @<Functions@>;
  61.  
  62. @ In certain cases \.{TANGLE} and \.{WEAVE} should do almost, but not
  63. quite, the same thing.  In these cases we've written common code for
  64. both, differentiating between the two by means of the global variable
  65. |program|.
  66.  
  67. @d tangle 0
  68. @d weave 1
  69.  
  70. @<Definitions...@>=
  71. typedef short boolean;
  72. boolean program; /* \.{WEAVE} or \.{TANGLE}? */
  73.  
  74. @ \.{CWEAVE} operates in three phases: first it inputs the source
  75. file and stores cross-reference data, then it inputs the source once again and
  76. produces the \TeX\ output file, and finally it sorts and outputs the index.
  77. Similarly, \.{CTANGLE} operates in two phases.
  78. The global variable |phase| tells which phase we are in.
  79.  
  80. @<Other...@>= int phase; /* which phase are we in? */
  81.  
  82. @ There's an initialization procedure that gets both \.{CTANGLE} and
  83. \.{CWEAVE} off to a good start. We will fill in the details of this
  84. procedure later.
  85.  
  86. @<Functions...@>=
  87. common_init()
  88. {
  89.   @<Initialize pointers@>;
  90.   @<Set the default options common to \.{TANGLE} and \.{WEAVE}@>;
  91.   @<Scan arguments and open output files@>;
  92. }
  93.  
  94. @* The character set.
  95. \.{CWEB} uses the conventions of \Cee\ programs found in the standard
  96. \.{ctype.h} header file.
  97.  
  98. @<Include files@>=
  99. #include <ctype.h>
  100.  
  101. @ A few character pairs are encoded internally as single characters,
  102. using the definitions below. These definitions are consistent with
  103. an extension of ASCII code originally developed at MIT and explained in
  104. Appendix~C of {\sl The \TeX book\/}; thus, users who have such a
  105. character set can type things like \.{\char'32} and \.{char'4} instead
  106. of \.{!=} and \.{\&\&}. (However, their files will not be too portable
  107. until more people adopt the extended code.)
  108.  
  109. If the character set is not ASCII, the definitions given here may conflict
  110. with existing characters; in such cases, other arbitrary codes should be
  111. substituted. The indexes to \.{CTANGLE} and \.{CWEAVE} mention every
  112. case where similar codes may have to be changed in order to
  113. avoid character conflicts. Look for the entry ``ASCII code dependencies''
  114. in those indexes.
  115.  
  116. @^ASCII code dependencies@>
  117. @^system dependencies@>
  118.  
  119. @d and_and 04 /* `\.{\&\&}'; this corresponds to MIT's {\tentex\char'4} */
  120. @d lt_lt 020 /* `\.{<<}';  this corresponds to MIT's {\tentex\char'20} */
  121. @d gt_gt 021 /* `\.{>>}';  this corresponds to MIT's {\tentex\char'21} */
  122. @d plus_plus 013 /* `\.{++}';  this corresponds to MIT's {\tentex\char'13} */
  123. @d minus_minus 01 /* `\.{--}';  this corresponds to MIT's {\tentex\char'1} */
  124. @d minus_gt 031 /* `\.{->}';  this corresponds to MIT's {\tentex\char'31} */
  125. @d not_eq 032 /* `\.{!=}';  this corresponds to MIT's {\tentex\char'32} */
  126. @d lt_eq 034 /* `\.{<=}';  this corresponds to MIT's {\tentex\char'34} */
  127. @d gt_eq 035 /* `\.{>=}';  this corresponds to MIT's {\tentex\char'35} */
  128. @d eq_eq 036 /* `\.{==}';  this corresponds to MIT's {\tentex\char'36} */
  129. @d or_or 037 /* `\.{\v\v}';  this corresponds to MIT's {\tentex\char'37} */
  130.  
  131. @* Input routines.  The lowest level of input to the \.{WEB} programs
  132. is performed by |input_ln|, which must be told which file to read from.
  133. The return value of |input_ln| is 1 if the read is successful and 0 if
  134. not (generally this means the file has ended). The conventions
  135. of \TeX\ are followed; i.e., the characters of the next line of the file
  136. are copied into the |buffer| array,
  137. and the global variable |limit| is set to the first unoccupied position.
  138. Trailing blanks are ignored. The value of |limit| must be strictly less
  139. than |buf_size|, so that |buffer[buf_size-1]| is never filled.
  140.  
  141. Since |buf_size| is strictly less than |long_buf_size|,
  142. some of \.{WEB}'s routines use the fact that it is safe to refer to
  143. |*(limit+2)| without overstepping the bounds of the array.
  144.  
  145. @d buf_size 100 /* for \.{WEAVE} and \.{TANGLE} */
  146. @d long_buf_size 500 /* for \.{WEAVE} */
  147.  
  148. @<Definitions...@>=
  149. char buffer[long_buf_size]; /* where each line of input goes */
  150. char *buffer_end=buffer+buf_size-2; /* end of |buffer| */
  151. char *limit=buffer; /* points to the last character in the buffer */
  152. char *loc=buffer; /* points to the next character to be read from the buffer */
  153.  
  154. @ @<Include files@>=
  155. #include <stdio.h>
  156.  
  157. @ In the unlikely event that your standard I/O library does not
  158. support |feof|, |getc| and |ungetc| you may have to change things here.
  159. @^system dependencies@>
  160.  
  161. @<Func...@>=
  162. input_ln(fp) /* copies a line into |buffer| or returns 0 */
  163. FILE *fp; /* what file to read from */
  164. {
  165.   register int  c; /* the character read */
  166.   register char *k;  /* where next character goes */
  167.   if (feof(fp)) return(0);  /* we have hit end-of-file */
  168.   limit = k = buffer;  /* beginning of buffer */
  169.   while (k<=buffer_end && (c=getc(fp)) != EOF && c!='\n')
  170.     if ((*(k++) = c) != ' ') limit = k;
  171.   if (k>buffer_end)
  172.     if ((c=getc(fp))!=EOF && c!='\n') {
  173.       ungetc(c,fp); loc=buffer; err_print("! Input line too long");
  174. @.Input line too long@>
  175.   }
  176.   if (c==EOF && limit==buffer) return(0);  /* there was nothing after
  177.     the last newline */
  178.   return(1);
  179. }
  180.  
  181. @ Now comes the problem of deciding which file to read from next.
  182. Recall that the actual text that \.{WEB} should process comes from two
  183. streams: a |web_file|, which can contain possibly nested include
  184. commands \.{@@i}, and a |change_file|, which should not contain
  185. includes.  The |web_file| together with the currently open include
  186. files form a stack |file|, whose names are stored in a parallel stack
  187. |file_name|.  The boolean |changing| tells whether or not we're reading
  188. form the |change_file|.
  189.  
  190. The line number of each open file is also kept for error reporting and
  191. for the benefit of \.{TANGLE}.
  192.  
  193. @f line x /* make |line| an unreserved word */
  194. @d max_include_depth 10 /* maximum number of source files open
  195.   simultaneously, not counting the change file */
  196. @d max_file_name_length 60
  197. @d cur_file file[include_depth] /* current file */
  198. @d cur_file_name file_name[include_depth] /* current file name */
  199. @d cur_line line[include_depth] /* number of current line in current file */
  200. @d web_file file[0] /* main source file */
  201. @d web_file_name file_name[0] /* main source file name */
  202.  
  203. @<Definitions...@>=
  204. int include_depth; /* current level of nesting */
  205. FILE *file[max_include_depth]; /* stack of non-change files */
  206. FILE *change_file; /* change file */
  207. char file_name[max_include_depth][max_file_name_length];
  208.   /* stack of non-change file names */
  209. char change_file_name[max_file_name_length]; /* name of change file */
  210. char alt_web_file_name[max_file_name_length]; /* alternate name to try */
  211. int line[max_include_depth]; /* number of current line in the stacked files */
  212. int change_line; /* number of current line in change file */
  213. boolean input_has_ended; /* if there is no more input */
  214. boolean changing; /* if the current line is from |change_file| */
  215. boolean web_file_open=0; /* if the web file is being read */
  216.  
  217. @ When |changing=0|, the next line of |change_file| is kept in
  218. |change_buffer|, for purposes of comparison with the next
  219. line of |cur_file|. After the change file has been completely input, we
  220. set |change_limit=change_buffer|,
  221. so that no further matches will be made.
  222.  
  223. Here's a shorthand expression for inequality between the two lines:
  224.  
  225. @d lines_dont_match (change_limit-change_buffer != limit-buffer ||
  226.   strncmp(buffer, change_buffer, limit-buffer))
  227.  
  228. @<Other...@>=
  229. char change_buffer[buf_size]; /* next line of |change_file| */
  230. char *change_limit; /* points to the last character in |change_buffer| */
  231.  
  232. @ Procedure |prime_the_change_buffer| sets |change_buffer| in preparation
  233. for the next matching operation. Since blank lines in the change file are
  234. not used for matching, we have |(change_limit==change_buffer && !changing)|
  235. if and only if the change file is exhausted. This procedure is called only
  236. when |changing| is 1; hence error messages will be reported correctly.
  237.  
  238. @<Func...@>=
  239. prime_the_change_buffer()
  240. {
  241.   change_limit=change_buffer; /* this value is used if the change file ends */
  242.   @<Skip over comment lines in the change file; |return| if end of file@>;
  243.   @<Skip to the next nonblank line; |return| if end of file@>;
  244.   @<Move |buffer| and |limit| to |change_buffer| and |change_limit|@>;
  245. }
  246.  
  247. @ While looking for a line that begins with \.{@@x} in the change file,
  248. we allow lines that begin with \.{@@}, as long as they don't begin with
  249. \.{@@y} or \.{@@z} (which would probably indicate that the change file is
  250. fouled up).
  251.  
  252. @<Skip over comment lines in the change file...@>=
  253. while(1) {
  254.   change_line++;
  255.   if (!input_ln(change_file)) return;
  256.   if (limit<buffer+2) continue;
  257.   if (buffer[0]!='@@') continue;
  258.   if (isupper(buffer[1])) buffer[1]=tolower(buffer[1]);
  259.   @<Check for erroneous \.{@@i}@>;
  260.   if (buffer[1]=='x') break;
  261.   if (buffer[1]=='y' || buffer[1]=='z') {
  262.     loc=buffer+2;
  263.     err_print("! Where is the matching @@x?");
  264. @.Where is the match...@>
  265.   }
  266. }
  267.  
  268. @ We do not allow includes in a change file, so as to avoid confusion.
  269.  
  270. @<Check for erron...@>= {
  271.   if (buffer[1]=='i') {
  272.     loc=buffer+2;
  273.     err_print("! No includes allowed in change file");
  274. @.No includes allowed...@>
  275.   }
  276. }
  277.  
  278. @ Here we are looking at lines following the \.{@@x}.
  279.  
  280. @<Skip to the next nonblank line...@>=
  281. do {
  282.   change_line++;
  283.   if (!input_ln(change_file)) {
  284.     err_print("! Change file ended after @@x");
  285. @.Change file ended...@>
  286.     return;
  287.   }
  288. } while (limit==buffer);
  289.  
  290. @ @<Move |buffer| and |limit| to |change_buffer| and |change_limit|@>=
  291. {
  292.   change_limit=change_buffer-buffer+limit;
  293.   strncpy(change_buffer,buffer,limit-buffer+1);
  294. }
  295.  
  296. @ The following procedure is used to see if the next change entry should
  297. go into effect; it is called only when |changing| is 0.
  298. The idea is to test whether or not the current
  299. contents of |buffer| matches the current contents of |change_buffer|.
  300. If not, there's nothing more to do; but if so, a change is called for:
  301. All of the text down to the \.{@@y} is supposed to match. An error
  302. message is issued if any discrepancy is found. Then the procedure
  303. prepares to read the next line from |change_file|.
  304.  
  305. When a match is found, the current module is marked as changed unless
  306. the first line after the \.{@@x} and after the \.{@@y} both start with
  307. either |'@@*'| or |'@@ '| (possibly preceded by whitespace).
  308.  
  309. This procedure is called only when |buffer<limit|, i.e., when the
  310. current line is nonempty.
  311.  
  312. @d if_module_start_make_pending(b) {@+*limit='!';
  313.   for (loc=buffer;isspace(*loc);loc++) ;
  314.   *limit=' ';
  315.   if (*loc=='@@' && (isspace(*(loc+1)) || *(loc+1)=='*')) change_pending=b;
  316. }
  317.  
  318. @<Func...@>=
  319. check_change() /* switches to |change_file| if the buffers match */
  320. {
  321.   int n=0; /* the number of discrepancies found */
  322.   if (lines_dont_match) return;
  323.   change_pending=0;
  324.   if (!changed_module[module_count]) {
  325.     if_module_start_make_pending(1);
  326.     if (!change_pending) changed_module[module_count]=1;
  327.   }
  328.   while (1) {
  329.     changing=1; print_where=1; change_line++;
  330.     if (!input_ln(change_file)) {
  331.       err_print("! Change file ended before @@y");
  332. @.Change file ended...@>
  333.       change_limit=change_buffer; changing=0;
  334.       return;
  335.     }
  336.     if (limit>buffer+1 && buffer[0]=='@@') {
  337.       if (isupper(buffer[1])) buffer[1]=tolower(buffer[1]);
  338.       @<If the current line starts with \.{@@y},
  339.         report any discrepancies and |return|@>;
  340.     }
  341.     @<Move |buffer| and |limit|...@>;
  342.     changing=0; cur_line++;
  343.     while (!input_ln(cur_file)) { /* pop the stack or quit */
  344.       if (include_depth==0) {
  345.         err_print("! WEB file ended during a change");
  346. @.WEB file ended...@>
  347.         input_has_ended=1; return;
  348.       }
  349.       include_depth--; cur_line++;
  350.     }
  351.     if (lines_dont_match) n++;
  352.   }
  353. }
  354.  
  355. @ @<If the current line starts with \.{@@y}...@>=
  356. if (buffer[1]=='x' || buffer[1]=='z') {
  357.   loc=buffer+2; err_print("! Where is the matching @@y?");
  358. @.Where is the match...@>
  359.   }
  360. else if (buffer[1]=='y') {
  361.   if (n>0) {
  362.     loc=buffer+2;
  363.     printf("\n! Hmm... %d ",n);
  364.     err_print("of the preceding lines failed to match");
  365. @.Hmm... n of the preceding...@>
  366.   }
  367.   return;
  368. }
  369.  
  370. @ The |reset_input| procedure, which gets \.{WEB} ready to read the
  371. user's \.{WEB} input, is used at the beginning of phase one of \.{TANGLE},
  372. phases one and two of \.{WEAVE}.
  373.  
  374. @<Func...@>=
  375. reset_input()
  376. {
  377.   limit=buffer; loc=buffer+1; buffer[0]=' ';
  378.   @<Open input files@>;
  379.   include_depth=0; cur_line=0; change_line=0;
  380.   changing=1; prime_the_change_buffer(); changing=!changing;
  381.   limit=buffer; loc=buffer+1; buffer[0]=' '; input_has_ended=0;
  382. }
  383.  
  384. @ The following code opens the input files.
  385. @^system dependencies@>
  386.  
  387. @<Open input files@>=
  388. if ((web_file=fopen(web_file_name,"r"))==NULL) {
  389.   strcpy(web_file_name,alt_web_file_name);
  390.   if ((web_file=fopen(web_file_name,"r"))==NULL)
  391.        fatal("! Cannot open input file ", web_file_name);
  392. }
  393. @.Cannot open input file@>
  394. @.Cannot open change file@>
  395. web_file_open=1;
  396. if ((change_file=fopen(change_file_name,"r"))==NULL)
  397.        fatal("! Cannot open change file ", change_file_name);
  398.  
  399. @ The |get_line| procedure is called when |loc>limit|; it puts the next
  400. line of merged input into the buffer and updates the other variables
  401. appropriately. A space is placed at the right end of the line.
  402. This procedure returns |!input_has_ended| because we often want to
  403. check the value of that variable after calling the procedure.
  404.  
  405. If we've just changed from the |cur_file| to the |change_file|, or if
  406. the |cur_file| has changed, we tell \.{TANGLE} to print this
  407. information in the \Cee\ file by means of the |print_where| flag.
  408.  
  409. @d max_modules 2000 /* number of identifiers, strings, module names;
  410.   must be less than 10240 */
  411.  
  412. @<Defin...@>=
  413. typedef unsigned short sixteen_bits;
  414. sixteen_bits module_count; /* the current module number */
  415. boolean changed_module[max_modules]; /* is the module changed? */
  416. boolean change_pending; /* if the current change is not yet recorded in
  417.   |changed_module[module_count]| */
  418. boolean print_where=0; /* should \.{TANGLE} print line and file info? */
  419.  
  420. @ @<Fun...@>=
  421. get_line() /* inputs the next line */
  422. {
  423.   restart:
  424.   if (changing) @<Read from |change_file| and maybe turn off |changing|@>;
  425.   if (! changing) {
  426.     @<Read from |cur_file| and maybe turn on |changing|@>;
  427.     if (changing) goto restart;
  428.   }
  429.   loc=buffer; *limit=' ';
  430.   if (*buffer=='@@' && (*(buffer+1)=='i' || *(buffer+1)=='I'))
  431.     @<Push stack and go to |restart|@>;
  432.   return (!input_has_ended);
  433. }
  434.  
  435. @ When a \.{@@i} line is found in the |cur_file|, we must temporarily
  436. stop reading it and start reading from the named include file.  The
  437. \.{@@i} line should give a complete file name with or without
  438. double quotes;
  439. \.{CWEB} will not look for include files in standard directories as the
  440. \Cee\ preprocessor does when a |
  441. #include <filename>
  442. | line is found, although it will try a prefix if |INCLUDEDIR| is
  443. defined at compile time. The remainder of the line after the file name
  444. is ignored.
  445.  
  446. @<Push stack and...@>= {
  447.   char *k, *j;
  448.   loc=buffer+2;
  449.   while (loc<=limit && (*loc==' '||*loc=='\t'||*loc=='"')) loc++;
  450.   if (loc>=limit) err_print("! Include file name not given");
  451. @.Include file name not given@>
  452.   else {
  453.     if (++include_depth<max_include_depth) {
  454.       k=cur_file_name; j=loc;
  455.       while (*loc!=' '&&*loc!='\t'&&*loc!='"') *k++=*loc++;
  456.       *k='\0';
  457.       if ((cur_file=fopen(cur_file_name,"r"))==NULL) {
  458. #ifdef INCLUDEDIR
  459. strcpy(cur_file_name,INCLUDEDIR);
  460. k=cur_file_name+strlen(cur_file_name);
  461. while (*j!=' '&&*j!='\t'&&*j!='"') *k++=*j++;
  462. *k='\0';
  463. if ((cur_file=fopen(cur_file_name,"r"))==NULL) {
  464. #endif INCLUDEDIR
  465.         include_depth--;
  466.         err_print("! Cannot open include file");
  467. @.Cannot open include file@>
  468.       }
  469. #ifdef INCLUDEDIR
  470. else {cur_line=0; print_where=1;}
  471. }
  472. #endif INCLUDEDIR
  473.       else {cur_line=0; print_where=1;}
  474.     }
  475.     else {
  476.       include_depth--;
  477.       err_print("! Too many nested includes");
  478. @.Too many nested includes@>
  479.     }
  480.   }
  481.   goto restart;
  482. }
  483.  
  484. @ @<Read from |cur_file|...@>= {
  485.   cur_line++;
  486.   while (!input_ln(cur_file)) { /* pop the stack or quit */
  487.     print_where=1;
  488.     if (include_depth==0) {input_has_ended=1; break;}
  489.     else {fclose(cur_file); include_depth--; cur_line++;}
  490.   }
  491.   if (!input_has_ended)
  492.   if (limit==change_limit-change_buffer+buffer)
  493.     if (buffer[0]==change_buffer[0])
  494.       if (change_limit>change_buffer) check_change();
  495. }
  496.  
  497. @ @<Read from |change_file|...@>= {
  498.   change_line++;
  499.   if (!input_ln(change_file)) {
  500.     err_print("! Change file ended without @@z");
  501. @.Change file ended...@>
  502.     buffer[0]='@@'; buffer[1]='z'; limit=buffer+2;
  503.   }
  504.   if (limit>buffer) { /* check if the change has ended */
  505.     if (change_pending) {
  506.       if_module_start_make_pending(0);
  507.       if (change_pending) {
  508.         changed_module[module_count]=1; change_pending=0;
  509.       }
  510.     }
  511.     *limit=' ';
  512.     if (buffer[0]=='@@') {
  513.       if (isupper(buffer[1])) buffer[1]=tolower(buffer[1]);
  514.       @<Check for erron...@>;
  515.       if (buffer[1]=='x' || buffer[1]=='y') {
  516.       loc=buffer+2; err_print("! Where is the matching @@z?");
  517. @.Where is the match...@>
  518.       }
  519.       else if (buffer[1]=='z') {
  520.         prime_the_change_buffer(); changing=!changing; print_where=1;
  521.       }
  522.     }
  523.   }
  524. }
  525.  
  526. @ At the end of the program, we will tell the user if the change file
  527. had a line that didn't match any relevant line in |web_file|.
  528.  
  529. @<Funct...@>=
  530. check_complete(){
  531.   if (change_limit!=change_buffer) { /* |changing| is 0 */
  532.     strncpy(buffer,change_buffer,change_limit-change_buffer+1);
  533.     limit=change_limit-change_buffer+buffer;
  534.     changing=1; loc=buffer;
  535.     err_print("! Change file entry did not match");
  536.   @.Change file entry did not match@>
  537.   }
  538. }
  539.  
  540. @* Storage of names and strings.
  541. Both \.{WEAVE} and \.{TANGLE} store identifiers, module names and
  542. other strings in a large array of |char|s, called |byte_mem|.
  543. Information about the names is kept in the array |name_dir|, whose
  544. elements are structures of type |name_info|, containing a pointer into
  545. the |byte_mem| array (the address where the name begins) and other data.
  546. A |name_pointer| variable is a pointer into |name_dir|.
  547.  
  548. @d max_bytes 90000 /* the number of bytes in identifiers,
  549.   index entries, and module names */
  550. @d max_names 4000 /* number of identifiers, strings, module names;
  551.   must be less than 10240 */
  552.  
  553. @<Definitions that...@>=
  554. typedef struct name_info {
  555.   char *byte_start; /* beginning of the name in |byte_mem| */
  556.   @<More elements of |name_info| structure@>@;
  557. } name_info; /* contains information about an identifier or module name */
  558. typedef name_info *name_pointer; /* pointer into array of |name_info|s */
  559. char byte_mem[max_bytes]; /* characters of names */
  560. char *byte_mem_end = byte_mem+max_bytes-1; /* end of |byte_mem| */
  561. name_info name_dir[max_names]; /* information about names */
  562. name_pointer name_dir_end = name_dir+max_names-1; /* end of |name_dir| */
  563.  
  564. @ The actual sequence of characters in the name pointed to by a |name_pointer
  565. p| appears in positions |p->byte_start| to |(p+1)->byte_start-1|, inclusive.
  566. The |print_id| macro prints this text on the user's terminal.
  567.  
  568. @d length(c) (c+1)->byte_start-(c)->byte_start /* the length of a name */
  569. @d print_id(c) term_write((c)->byte_start,length((c)))
  570.   /* print identifier or module name */
  571.  
  572. @ The first unused position in |byte_mem| and |name_dir| is
  573. kept in |byte_ptr| and |name_ptr|, respectively.  Thus we
  574. usually have |name_ptr->byte_start=byte_ptr|, and certainly
  575. we want to keep |name_ptr<=name_dir_end| and |byte_ptr<=byte_mem_end|.
  576.  
  577. @<Defini...@>=
  578. name_pointer name_ptr; /* first unused position in |byte_start| */
  579. char *byte_ptr; /* first unused position in |byte_mem| */
  580.  
  581. @ @<Init...@>=
  582. name_dir->byte_start=byte_ptr=byte_mem; /* position zero in both arrays */
  583. name_ptr=name_dir+1; /* |name_dir[0]| will be used only for error recovery */
  584. name_ptr->byte_start=byte_mem; /* this makes name 0 of length zero */
  585.  
  586. @ The names of identifiers are found by computing a hash address |h| and
  587. then looking at strings of bytes signified by the |name_pointer|s
  588. |hash[h]|, |hash[h]->link|, |hash[h]->link->link|, \dots,
  589. until either finding the desired name or encountering the null pointer.
  590.  
  591. @<More elements of |name...@>=
  592. struct name_info *link;
  593.  
  594. @ The hash table itself
  595. consists of |hash_size| entries of type |name_pointer|, and is
  596. updated by the |id_lookup| procedure, which finds a given identifier
  597. and returns the appropriate |name_pointer|. The matching is done by the
  598. function |names_match|, which is slightly different in
  599. \.{WEAVE} and \.{TANGLE}.  If there is no match for the identifier,
  600. it is inserted into the table.
  601.  
  602. @d hash_size 353 /* should be prime */
  603.  
  604. @<Defini...@>=
  605. typedef name_pointer *hash_pointer;
  606. name_pointer hash[hash_size]; /* heads of hash lists */
  607. hash_pointer hash_end = hash+hash_size-1; /* end of |hash| */
  608. hash_pointer h; /* index into hash-head array */
  609.  
  610. @ Initially all the hash lists are empty.
  611.  
  612. @<Init...@>=
  613. for (h=hash; h<=hash_end; *h++=NULL) ;
  614.  
  615. @ Here is the main procedure for finding identifiers:
  616.  
  617. @c name_pointer
  618. id_lookup(first,last,t) /* looks up a string in the identifier table */
  619. char *first; /* first character of string */
  620. char *last; /* last character of string plus one */
  621. sixteen_bits t; /* the |ilk|; used by \.{WEAVE} only */
  622. {
  623.   char *i=first; /* position in |buffer| */
  624.   int h; /* hash code */
  625.   int l; /* length of the given identifier */
  626.   name_pointer p; /* where the identifier is being sought */
  627.   if (last==NULL) for (last=first; *last!='\0'; last++);
  628.   l=last-first; /* compute the length */
  629.   @<Compute the hash code |h|@>;
  630.   @<Compute the name location |p|@>;
  631.   if (p==name_ptr) @<Enter a new name into the table at position |p|@>;
  632.   return(p);
  633. }
  634.  
  635. @ A simple hash code is used: If the sequence of
  636. character codes is $c_1c_2\ldots c_n$, its hash value will be
  637. $$(2^{n-1}c_1+2^{n-2}c_2+\cdots+c_n)\,\bmod\,|hash_size|.$$
  638.  
  639. @<Compute the hash...@>=
  640. h=*i; while (++i<last) h=(h+h+*i) % hash_size;
  641.  
  642. @ If the identifier is new, it will be placed in position |p=name_ptr|,
  643. otherwise |p| will point to its existing location.
  644.  
  645. @<Compute the name location...@>=
  646. p=hash[h];
  647. while (p && !names_match(p,first,l,t)) p=p->link;
  648. if (p==NULL) {
  649.   p=name_ptr; /* the current identifier is new */
  650.   p->link=hash[h]; hash[h]=p; /* insert |p| at beginning of hash list */
  651. }
  652.  
  653. @ The information associated with a new identifier must be initialized
  654. in a slightly different way in \.{WEAVE} than in \.{TANGLE}; hence the
  655. |init_p| procedure.
  656.  
  657. @<Enter a new name...@>= {
  658.   if (byte_ptr+l>byte_mem_end) overflow("byte memory");
  659.   if (name_ptr>=name_dir_end) overflow("name");
  660.   strncpy(byte_ptr,first,l);
  661.   (++name_ptr)->byte_start=byte_ptr+=l;
  662.   if (program==weave) init_p(p,t);
  663. }
  664.  
  665. @ The names of modules are stored in |byte_mem| together
  666. with the identifier names, but a hash table is not used for them because
  667. \.{TANGLE} needs to be able to recognize a module name when given a prefix of
  668. that name. A conventional binary search tree is used to retrieve module names,
  669. with fields called |llink| and |rlink| (where |llink| takes the place
  670. of |link|).  The root of this tree is stored in |name_dir->rlink|;
  671. this will be the only information in |name_dir[0]|.
  672.  
  673. Since the space used by |rlink| has a different function for
  674. identifiers than for module names, we declare it as a |union|.
  675.  
  676. @d llink link /* left link in binary search tree for module names */
  677. @d rlink dummy.Rlink /* right link in binary search tree for module names */
  678. @d root name_dir->rlink /* the root of the binary search tree
  679.   for module names */
  680.  
  681. @<More elements of |name...@>=
  682. union {
  683.   struct name_info *Rlink; /* right link in binary search tree for module
  684.     names */  
  685.   sixteen_bits Ilk; /* used by identifiers in \.{WEAVE} only */
  686. } dummy;
  687.  
  688. @ @<Init...@>=
  689. root=NULL; /* the binary search tree starts out with nothing in it */
  690.  
  691. @ The |mod_lookup| procedure finds a module name in the
  692. search tree, after inserting it if necessary, and returns a pointer to
  693. where it was found.
  694.  
  695. According to the rules of \.{WEB}, no module name should be a proper
  696. prefix of another, so a ``clean'' comparison should occur between any
  697. two names. The result of |mod_lookup| is |name_dir| (the location of
  698. a dummy module name) if this prefix condition
  699. is violated. An error message is printed when such violations are detected.
  700.  
  701. @d less 0 /* the first name is lexicographically less than the second */
  702. @d equal 1 /* the first name is equal to the second */
  703. @d greater 2 /* the first name is lexicographically greater than the second */
  704. @d prefix 3 /* the first name is a proper prefix of the second */
  705. @d extension 4 /* the first name is a proper extension of the second */
  706.  
  707. @<Other...@>=
  708. name_pointer install_node();
  709.  
  710. @ @c name_pointer
  711. mod_lookup(k,l) /* finds module name */
  712. char *k; /* first character of name */
  713. char *l; /* last character of name */
  714. {
  715.   short c = greater; /* comparison between two names */
  716.   name_pointer p = root; /* current node of the search tree */
  717.   name_pointer q = name_dir; /* father of node |p| */
  718.   while (p) {
  719.     c=web_strcmp(k,l+1,p->byte_start,(p+1)->byte_start);
  720.     q=p;
  721.     switch(c) {
  722.       case less: p=p->llink; continue;
  723.       case greater: p=p->rlink; continue;
  724.       case equal: return p;
  725.       default: err_print("! Incompatible section names"); return name_dir;
  726. @.Incompatible section names@>
  727.     }
  728.   }
  729.   return(install_node(q,c,k,l-k+1));
  730. }
  731.  
  732. @ This function is like |strcmp|, but it does not assume the strings
  733. are null-terminated.
  734.  
  735. @c
  736. web_strcmp(j,j1,k,k1) /* fuller comparison than |strcmp| */
  737. char *j; /* beginning of first string */
  738. char *j1; /* end of first string plus one */
  739. char *k; /* beginning of second string */
  740. char *k1; /* end of second string plus one */
  741. {
  742.   while (k<k1 && j<j1 && *j==*k) k++, j++;
  743.   if (k==k1) if (j==j1) return equal;
  744.     else return extension;
  745.   else if (j==j1) return prefix;
  746.   else if (*j<*k) return less;
  747.   else return greater;
  748. }
  749.  
  750. @ The reason we initialized |c| to |greater| is so that
  751. |name_pointer| will make |name_dir->rlink| point to the root of the tree 
  752. when |q=name_dir|, that is, the first time it is called.
  753.  
  754. The information associated with a new node must be initialized
  755. in a slightly different way in \.{WEAVE} than in \.{TANGLE}; hence the
  756. |init_node| procedure.
  757.  
  758. @c name_pointer
  759. install_node(parent,c,j,name_len) /* install a new node in the tree */
  760. name_pointer parent; /* parent of new node */
  761. int c; /* right or left? */
  762. char *j; /* where replacement text starts */
  763. int name_len; /* length of replacement text */
  764. {
  765.   name_pointer node=name_ptr; /* new node */
  766.   if (byte_ptr+name_len>byte_mem_end) overflow("byte memory");
  767.   if (name_ptr==name_dir_end) overflow("name");
  768.   if (c==less) parent->llink=node; else parent->rlink=node;
  769.   node->llink=NULL; node->rlink=NULL;
  770.   init_node(node);
  771.   strncpy(byte_ptr,j,name_len);
  772.   (++name_ptr)->byte_start=byte_ptr+=name_len;
  773.   return(node);
  774. }
  775.  
  776. @ The |prefix_lookup| procedure is supposed to find exactly one module
  777. name that has |k..l| as a prefix. Actually the algorithm
  778. silently accepts also the situation that some module name is a prefix of
  779. |k..l|, because the user who painstakingly typed in more than
  780. necessary probably doesn't want to be told about the wasted effort.
  781.  
  782. @c name_pointer
  783. prefix_lookup(k,l) /* finds module name given a prefix */
  784. char *k; /* first char of prefix */
  785. char *l; /* last char of prefix */
  786. {
  787.   short c = greater; /* comparison between two names */
  788.   short count = 0; /* the number of hits */
  789.   name_pointer p = root; /* current node of the search tree */
  790.   name_pointer q = NULL;
  791.     /* another place to resume the search after one is done */
  792.   name_pointer r = name_dir; /* extension found */
  793.   while (p) {
  794.     c=web_strcmp(k,l+1,p->byte_start,(p+1)->byte_start);
  795.     switch(c) {
  796.       case less: p=p->llink; break;
  797.       case greater: p=p->rlink; break;
  798.       default: r=p; count++; q=p->rlink; p=p->llink;
  799.     }
  800.     if (p==NULL) {
  801.       p=q; q=NULL;
  802.     }
  803.   }
  804.   if (count==0) err_print("! Name does not match");
  805. @.Name does not match@>
  806.   if (count>1) err_print("! Ambiguous prefix");
  807. @.Ambiguous prefix@>
  808.   return(r); /* the result will be |name_dir| if there was no match */
  809. }
  810.  
  811. @ The last component of |name_info| is different for \.{TANGLE} and
  812. \.{WEAVE}.  In \.{TANGLE}, if |p| is a pointer to a module name,
  813. |p->equiv| is a pointer to its replacement text, an element of the
  814. array |text_info|.  In \.{WEAVE}, on the other hand, if 
  815. |p| points to an identifier, |p->xref| is a pointer to its
  816. list of cross-references, an element of the array |xmem|.  The make-up
  817. of |text_info| and |xmem| is discussed in the \.{TANGLE} and \.{WEAVE}
  818. source files, respectively; here we just declare a common field
  819. |equiv_or_xref| as a pointer to a |char|.
  820.  
  821. @<More elements of |name...@>=
  822. char *equiv_or_xref; /* info corresponding to names */
  823.  
  824. @* Reporting errors to the user.
  825. A global variable called |history| will contain one of four values
  826. at the end of every run: |spotless| means that no unusual messages were
  827. printed; |harmless_message| means that a message of possible interest
  828. was printed but no serious errors were detected; |error_message| means that
  829. at least one error was found; |fatal_message| means that the program
  830. terminated abnormally. The value of |history| does not influence the
  831. behavior of the program; it is simply computed for the convenience
  832. of systems that might want to use such information.
  833.  
  834. @d spotless 0 /* |history| value for normal jobs */
  835. @d harmless_message 1 /* |history| value when non-serious info was printed */
  836. @d error_message 2 /* |history| value when an error was noted */
  837. @d fatal_message 3 /* |history| value when we had to stop prematurely */
  838. @d mark_harmless {if (history==spotless) history=harmless_message;}
  839. @d mark_error history=error_message
  840.  
  841. @<Definit...@>=
  842. int history=spotless; /* indicates how bad this run was */
  843.  
  844. @ The command `|err_print("! Error message")|' will report a syntax error to
  845. the user, by printing the error message at the beginning of a new line and
  846. then giving an indication of where the error was spotted in the source file.
  847. Note that no period follows the error message, since the error routine
  848. will automatically supply a period. A newline is automatically supplied
  849. if the string begins with |"|"|.
  850.  
  851. @<Functions...@>=
  852. err_print(s) /* prints `\..' and location of error message */
  853. char *s;
  854. {
  855.   char *k,*l; /* pointers into |buffer| */
  856.   printf(*s=='!'? "\n%s" : "%s",s);
  857.   if(web_file_open) @<Print error location based on input buffer@>;
  858.   update_terminal; mark_error;
  859. }
  860.  
  861. @ The error locations can be indicated by using the global variables
  862. |loc|, |cur_line|, |cur_file_name| and |changing|,
  863. which tell respectively the first
  864. unlooked-at position in |buffer|, the current line number, the current
  865. file, and whether the current line is from |change_file| or |cur_file|.
  866. This routine should be modified on systems whose standard text editor
  867. has special line-numbering conventions.
  868. @^system dependencies@>
  869.  
  870. @<Print error location based on input buffer@>=
  871. {if (changing) printf(". (l. %d of change file)\n", change_line);
  872. else if (include_depth==0) printf(". (l. %d)\n", cur_line);
  873.   else printf(". (l. %d of include file %s)\n", cur_line, cur_file_name);
  874. l= (loc>=limit? limit: loc);
  875. if (l>buffer) {
  876.   for (k=buffer; k<l; k++)
  877.     if (*k=='\t') putchar(' ');
  878.     else putchar(*k); /* print the characters already read */
  879.   putchar('\n');
  880.   for (k=buffer; k<l; k++) putchar(' '); /* space out the next line */
  881. }
  882. for (k=l; k<limit; k++) putchar(*k); /* print the part not yet read */
  883. if (*limit=='|') putchar('|'); /* end of \Cee\ text in module names */
  884. putchar(' '); /* to separate the message from future asterisks */
  885. }
  886.  
  887. @ When no recovery from some error has been provided, we have to wrap
  888. up and quit as graciously as possible.  This is done by calling the
  889. function |wrap_up| at the end of the code.
  890.  
  891. @d fatal(s,t) {
  892.   printf(s); err_print(t);
  893.   history=fatal_message; wrap_up();
  894. }
  895.  
  896. @ Sometimes the program's behavior is far different from what it should be,
  897. and \.{WEB} prints an error message that is really for the \.{WEB}
  898. maintenance person, not the user. In such cases the program says
  899. |confusion("indication of where we are")|.
  900.  
  901. @d confusion(s) fatal("! This can't happen: ",s)
  902. @.This can't happen@>
  903.  
  904. @ An overflow stop occurs if \.{WEB}'s tables aren't large enough.
  905.  
  906. @d overflow(t) {
  907.   printf("\n! Sorry, %s capacity exceeded",t); fatal("","");
  908. }
  909. @.Sorry, capacity exceeded@>
  910.  
  911. @ Some implementations may wish to pass the |history| value to the
  912. operating system so that it can be used to govern whether or not other
  913. programs are started. Here, for instance, we pass the operating system
  914. a status of 0 if and only if only harmless messages were printed.
  915. @^system dependencies@>
  916.  
  917. @<Func...@>=
  918. wrap_up() {
  919.   putchar('\n');
  920. #ifdef STAT
  921.   if (show_stats) print_stats(); /* print statistics about memory usage */
  922. #endif
  923.   @<Print the job |history|@>;
  924.   if (history > harmless_message) exit(1);
  925.   else exit(0);
  926. }
  927.  
  928. @ @<Print the job |history|@>=
  929. switch (history) {
  930. case spotless: if (show_happiness) printf("(No errors were found.)\n"); break;
  931. case harmless_message:
  932.   printf("(Did you see the warning message above?)\n"); break;
  933. case error_message:
  934.   printf("(Pardon me, but I think I spotted something wrong.)\n"); break;
  935. case fatal_message: printf("(That was a fatal error, my friend.)\n");
  936. } /* there are no other cases */
  937.  
  938. @* Command line arguments.
  939. The user calls \.{CWEAVE} and \.{CTANGLE} with arguments on the command line.
  940. These are either file names or flags to be turned off (beginning with |"-"|)
  941. or flags to be turned on (beginning with |"+"|.
  942. The following globals are for communicating the user's desires to the rest
  943. of the program. The various file name variables contain strings with
  944. the names of those files. Most of the 128 flags are undefined but available
  945. for future extensions.
  946.  
  947. @d show_banner flags['b'] /* should the banner line be printed? */
  948. @d show_progress flags['p'] /* should progress reports be printed? */
  949. @d show_stats flags['s'] /* should statistics be printed at end of run? */
  950. @d show_happiness flags['h'] /* should lack of errors be announced? */
  951.  
  952. @<Defin...@>=
  953. int argc; /* copy of |ac| parameter to |main| */
  954. char **argv; /* copy of |av| parameter to |main| */
  955. char C_file_name[max_file_name_length]; /* name of |C_file| */
  956. char tex_file_name[max_file_name_length]; /* name of |tex_file| */
  957. boolean flags[128]; /* an option for each 7-bit code */
  958.  
  959. @ The |flags| will be initially zero. Some of them are set to~1 before
  960. scanning the arguments; if additional flags are 1 by default they
  961. should be set before calling |common_init|.
  962.  
  963. @<Set the default options common to \.{TANGLE} and \.{WEAVE}@>=
  964. show_banner=show_happiness=show_progress=1;
  965.  
  966. @ We now must look at the command line arguments and set the file names
  967. accordingly.  At least one file name must be present: the \.{WEB}
  968. file.  It may have an extension, or it may omit the extension to get |".w"| or
  969. |".web"| added.  The \TeX\ output file name is formed by replacing the \.{WEB}
  970. file name extension by |".tex"|, and the \Cee\ file name by replacing
  971. the extension by |".c"|, after removing the directory name (if any).
  972.  
  973. If there is a second file name present among the arguments, it is the
  974. change file, again either with an extension or without one to get |".ch"|.
  975. An omitted change file argument means that |"/dev/null"| should be used,
  976. when no changes are desired.
  977. @^system dependencies@>
  978.  
  979. If there's a third file name, it will be the output file.
  980.  
  981. @<Function...@>=
  982. scan_args()
  983. {
  984.   char *dot_pos; /* position of |'.'| in the argument */
  985.   char *name_pos; /* file name beginning, sans directory */
  986.   register char *s; /* register for scanning strings */
  987.   boolean found_web=0,found_change=0,found_out=0;
  988.              /* have these names have been seen? */
  989.   boolean flag_change;
  990.  
  991.   while (--argc > 0) {
  992.     if (**(++argv)=='-' || **argv=='+') @<Handle flag argument@>@;
  993.     else {
  994.       s=name_pos=*argv;@+dot_pos=NULL;
  995.       while (*s) {
  996.         if (*s=='.') dot_pos=s++;
  997.         else if (*s=='/') dot_pos=NULL,name_pos=++s;
  998.         else s++;
  999.       }
  1000.       if (!found_web) @<Make
  1001.        |web_file_name|, |tex_file_name| and |C_file_name|@>@;
  1002.       else if (!found_change) @<Make |change_file_name| from |fname|@>@;
  1003.       else if (!found_out) @<Override |tex_file_name| and |C_file_name|@>@;
  1004.         else @<Print usage error message and quit@>;
  1005.     }
  1006.   }
  1007.   if (!found_web) @<Print usage error message and quit@>;
  1008.   if (!found_change) strcpy(change_file_name,"/dev/null");
  1009. }
  1010.  
  1011. @ We use all of |*argv| for the |web_file_name| if there is a |'.'| in it,
  1012. otherwise we add |".w"|. If this file can't be opened, we prepare an
  1013. |alt_web_file_name| by adding |"web"| after the dot.
  1014. The other file names come from adding other things
  1015. after the dot.  We must check that there is enough room in
  1016. |web_file_name| and the other arrays for the argument.
  1017.  
  1018. @<Make |web_file_name|...@>=
  1019. {
  1020.   if (s-*argv > max_file_name_length-5)
  1021.     @<Complain about argument length@>;
  1022.   if (dot_pos==NULL)
  1023.     sprintf(web_file_name,"%s.w",*argv);
  1024.   else {
  1025.     strcpy(web_file_name,*argv);
  1026.     *dot_pos=0; /* string now ends where the dot was */
  1027.   }
  1028.   sprintf(alt_web_file_name,"%s.web",*argv);
  1029.   sprintf(tex_file_name,"%s.tex",name_pos); /* strip off directory name */
  1030.   sprintf(C_file_name,"%s.c",name_pos);
  1031.   found_web=1;
  1032. }
  1033.  
  1034. @ @<Make |change_file_name|...@>=
  1035. {
  1036.   if (s-*argv > max_file_name_length-4)
  1037.     @<Complain about argument length@>;
  1038.   if (dot_pos==NULL)
  1039.     sprintf(change_file_name,"%s.ch",*argv);
  1040.   else strcpy(change_file_name,*argv);
  1041.   found_change=1;
  1042. }
  1043.  
  1044. @ @<Override...@>=
  1045. {
  1046.   if (s-*argv > max_file_name_length-5)
  1047.     @<Complain about argument length@>;
  1048.   if (dot_pos==NULL) {
  1049.     sprintf(tex_file_name,"%s.tex",*argv);
  1050.     sprintf(C_file_name,"%s.c",*argv);
  1051.   } else {
  1052.     strcpy(tex_file_name,*argv);
  1053.     strcpy(C_file_name,*argv);
  1054.   }
  1055.   found_out=1;
  1056. }
  1057.  
  1058. @ @<Handle flag...@>=
  1059. {
  1060.   if (**argv=='-') flag_change=0;
  1061.   else flag_change=1;
  1062.   for(dot_pos=*argv+1;*dot_pos>'\0';dot_pos++)
  1063.     flags[*dot_pos]=flag_change;
  1064. }
  1065.  
  1066. @ @<Print usage error message and quit@>=
  1067. {
  1068. if (program==tangle)
  1069.   fatal(
  1070. "! Usage: ctangle [options] webfile[.w] [changefile[.ch] [outfile[.c]]]\n"
  1071.    ,"")@;
  1072. else fatal(
  1073. "! Usage: cweave [options] webfile[.w] [changefile[.ch] [outfile[.tex]]]\n"
  1074.    ,"");
  1075. }
  1076.  
  1077. @ @<Complain about arg...@>= fatal("! Filename too long\n", *argv);
  1078.  
  1079. @* Output. Here is the code that opens the output file:
  1080. @^system dependencies@>
  1081.  
  1082. @<Defin...@>=
  1083. FILE *C_file; /* where output of \.{TANGLE} goes */
  1084. FILE *tex_file; /* where output of \.{WEAVE} goes */
  1085.  
  1086. @ @<Scan arguments and open output files@>=
  1087. scan_args();
  1088. if (program==tangle) {
  1089.   if ((C_file=fopen(C_file_name,"w"))==NULL)
  1090.     fatal("! Cannot open output file ", C_file_name);
  1091. @.Cannot open output file@>
  1092. }
  1093. else {
  1094.   if ((tex_file=fopen(tex_file_name,"w"))==NULL)
  1095.     fatal("! Cannot open output file ", tex_file_name);
  1096. }
  1097.  
  1098. @ The |update_terminal| procedure is called when we want
  1099. to make sure that everything we have output to the terminal so far has
  1100. actually left the computer's internal buffers and been sent.
  1101. @^system dependencies@>
  1102.  
  1103. @d update_terminal fflush(stdout) /* empty the terminal output buffer */
  1104.  
  1105. @ Terminal output uses |putchar| and |putc| when we have to
  1106. translate from \.{WEB}'s code into the external character code,
  1107. and |printf| when we just want to print strings.
  1108. Several macros make other kinds of output convenient.
  1109. @^system dependencies@>
  1110. @d new_line putchar('\n') @d putxchar putchar
  1111. @d term_write(a,b) fflush(stdout), write(1,a,b) /* write on the standard output */
  1112. @d line_write(c) write(fileno(C_file),c) /* write on the C output file */
  1113. @d C_printf(c,a) fprintf(C_file,c,a)
  1114. @d C_putc(c) putc(c,C_file) /* isn't \UNIX\ wonderfully consistent? */
  1115.  
  1116. @* Index.
  1117.