wmerge.w
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:25k
源码类别:

通讯编程

开发平台:

Visual C++

  1. def9#1{} % this hack is explained in CWEB manual Appendix F11
  2. @* Introduction.  This file contains the program .{wmerge},
  3. which takes two or more files and merges them according
  4. to the conventions of .{CWEB}. Namely, it takes an ordinary .{.w}
  5. file and and optional .{.ch} file and sends the corresponding
  6. .{.w}-style file to standard output (or to a named file), 
  7. expanding all ``includes''
  8. that might be specified by .{@@i} in the original .{.w} file.
  9. (A more precise description appears in the section on ``command line
  10. arguments'' below.)
  11. @c
  12. #include <stdio.h>
  13. #include <stdlib.h> /* declaration of |getenv| */
  14. #include <ctype.h> /* definition of |isalpha|, |isdigit| and so on */
  15. @<Definitions@>@;
  16. @<Predeclarations of functions@>@;
  17. @<Functions@>@;
  18. main (ac,av)
  19. int ac; char **av;
  20. {
  21.   argc=ac; argv=av;
  22.   @<Set the default options@>;
  23.   @<Scan arguments and open output file@>;
  24.   reset_input();
  25.   while (get_line())
  26.     put_line();
  27.   fflush(out_file);
  28.   check_complete();
  29.   fflush(out_file);
  30.   return wrap_up();
  31. }
  32. @ @<Definitions@>=
  33. typedef short boolean;
  34. typedef unsigned char eight_bits;
  35. typedef char ASCII; /* type of characters inside .{WEB} */
  36. @ We predeclare some standard string-handling functions here instead of
  37. including their system header files, because the names of the header files
  38. are not as standard as the names of the functions. (There's confusion
  39. between .{<string.h>} and .{<strings.h>}.)
  40. @<Predecl...@>=
  41. extern int strlen(); /* length of string */
  42. extern char* strcpy(); /* copy one string to another */
  43. extern int strncmp(); /* compare up to $n$ string characters */
  44. extern char* strncpy(); /* copy up to $n$ string characters */
  45. @ @<Predec...@>=
  46. @ The lowest level of input to the .{WEB} programs
  47. is performed by |input_ln|, which must be told which file to read from.
  48. The return value of |input_ln| is 1 if the read is successful and 0 if
  49. not (generally this means the file has ended).
  50. The characters of the next line of the file
  51. are copied into the |buffer| array,
  52. and the global variable |limit| is set to the first unoccupied position.
  53. Trailing blanks are ignored. The value of |limit| must be strictly less
  54. than |buf_size|, so that |buffer[buf_size-1]| is never filled.
  55. Some of the routines use the fact that it is safe to refer to
  56. |*(limit+2)| without overstepping the bounds of the array.
  57. @d buf_size 1024
  58. @<Definitions...@>=
  59. ASCII buffer[buf_size]; /* where each line of input goes */
  60. ASCII *buffer_end=buffer+buf_size-2; /* end of |buffer| */
  61. ASCII *limit; /* points to the last character in the buffer */
  62. ASCII *loc; /* points to the next character to be read from the buffer */
  63. @ In the unlikely event that your standard I/O library does not
  64. support |feof|, |getc| and |ungetc|, you may have to change things here.
  65. @^system dependencies@>
  66. Incidentally, here's a curious fact about .{CWEB} for those of you
  67. who are reading this file as an example of .{CWEB} programming.
  68. The file .{stdio.h} includes a typedef for
  69. the identifier |FILE|, which is not, strictly speaking, part of CEE/.
  70. It turns out .{CWEAVE} knows that |FILE| is a reserved word (after all,
  71. |FILE| is almost as common as |int|); indeed, .{CWEAVE} knows all
  72. the types of the ISO standard CEE/ library. But
  73. if you're using other types like {bf caddr_t},
  74. @:caddr_t}{bf caddr_t@>
  75. which is defined in .{/usr/include/sys/types.h}, you should let
  76. .{WEAVE} know that this is a type, either by including the .{.h} file
  77. at .{WEB} time (saying .{@@i /usr/include/sys/types.h}), or by
  78. using .{WEB}'s format command (saying .{@@f caddr_t int}).  Either of
  79. these will make {bf caddr_t} be treated in the same way as |int|. 
  80. @<Func...@>=
  81. input_ln(fp) /* copies a line into |buffer| or returns 0 */
  82. FILE *fp; /* what file to read from */
  83. {
  84.   register int  c=EOF; /* character read; initialized so some compilers won't complain */
  85.   register char *k;  /* where next character goes */
  86.   if (feof(fp)) return(0);  /* we have hit end-of-file */
  87.   limit = k = buffer;  /* beginning of buffer */
  88.   while (k<=buffer_end && (c=getc(fp)) != EOF && c!='n')
  89.     if ((*(k++) = c) != ' ') limit = k;
  90.   if (k>buffer_end)
  91.     if ((c=getc(fp))!=EOF && c!='n') {
  92.       ungetc(c,fp); loc=buffer; err_print("! Input line too long");
  93. @.Input line too long@>
  94.   }
  95.   if (c==EOF && limit==buffer) return(0);  /* there was nothing after
  96.     the last newline */
  97.   return(1);
  98. }
  99. @ Now comes the problem of deciding which file to read from next.
  100. Recall that the actual text that .{CWEB} should process comes from two
  101. streams: a |web_file|, which can contain possibly nested include
  102. commands .{@@i}, and a |change_file|, which might also contain
  103. includes.  The |web_file| together with the currently open include
  104. files form a stack |file|, whose names are stored in a parallel stack
  105. |file_name|.  The boolean |changing| tells whether or not we're reading
  106. from the |change_file|.
  107. The line number of each open file is also kept for error reporting.
  108. @f line x /* make |line| an unreserved word */
  109. @d max_include_depth 10 /* maximum number of source files open
  110.   simultaneously, not counting the change file */
  111. @d max_file_name_length 60
  112. @d cur_file file[include_depth] /* current file */
  113. @d cur_file_name file_name[include_depth] /* current file name */
  114. @d cur_line line[include_depth] /* number of current line in current file */
  115. @d web_file file[0] /* main source file */
  116. @d web_file_name file_name[0] /* main source file name */
  117. @<Definitions...@>=
  118. int include_depth; /* current level of nesting */
  119. FILE *file[max_include_depth]; /* stack of non-change files */
  120. FILE *change_file; /* change file */
  121. char file_name[max_include_depth][max_file_name_length];
  122.   /* stack of non-change file names */
  123. char change_file_name[max_file_name_length]; /* name of change file */
  124. char alt_web_file_name[max_file_name_length]; /* alternate name to try */
  125. int line[max_include_depth]; /* number of current line in the stacked files */
  126. int change_line; /* number of current line in change file */
  127. int change_depth; /* where .{@@y} originated during a change */
  128. boolean input_has_ended; /* if there is no more input */
  129. boolean changing; /* if the current line is from |change_file| */
  130. boolean web_file_open=0; /* if the web file is being read */
  131. @ When |changing=0|, the next line of |change_file| is kept in
  132. |change_buffer|, for purposes of comparison with the next
  133. line of |cur_file|. After the change file has been completely input, we
  134. set |change_limit=change_buffer|,
  135. so that no further matches will be made.
  136. Here's a shorthand expression for inequality between the two lines:
  137. @d lines_dont_match (change_limit-change_buffer != limit-buffer ||
  138.   strncmp(buffer, change_buffer, limit-buffer))
  139. @<Def...@>=
  140. char change_buffer[buf_size]; /* next line of |change_file| */
  141. char *change_limit; /* points to the last character in |change_buffer| */
  142. @ Procedure |prime_the_change_buffer| sets |change_buffer| in
  143. preparation for the next matching operation. Since blank lines in the change
  144. file are not used for matching, we have
  145. |(change_limit==change_buffer && !changing)| if and only if
  146. the change file is exhausted. This procedure is called only when
  147. |changing| is 1; hence error messages will be reported correctly.
  148. @<Func...@>=
  149. void
  150. prime_the_change_buffer()
  151. {
  152.   change_limit=change_buffer; /* this value is used if the change file ends */
  153.   @<Skip over comment lines in the change file; |return| if end of file@>;
  154.   @<Skip to the next nonblank line; |return| if end of file@>;
  155.   @<Move |buffer| and |limit| to |change_buffer| and |change_limit|@>;
  156. }
  157. @ While looking for a line that begins with .{@@x} in the change file, we
  158. allow lines that begin with .{@@}, as long as they don't begin with .{@@y},
  159. .{@@z} or .{@@i} (which would probably mean that the change file is fouled up).
  160. @<Skip over comment lines in the change file...@>=
  161. while(1) {
  162.   change_line++;
  163.   if (!input_ln(change_file)) return;
  164.   if (limit<buffer+2) continue;
  165.   if (buffer[0]!='@@') continue;
  166.   if (isupper(buffer[1])) buffer[1]=tolower(buffer[1]);
  167.   if (buffer[1]=='x') break;
  168.   if (buffer[1]=='y' || buffer[1]=='z' || buffer[1]=='i') {
  169.     loc=buffer+2;
  170.     err_print("! Missing @@x in change file");
  171. @.Missing @@x...@>
  172.   }
  173. }
  174. @ Here we are looking at lines following the .{@@x}.
  175. @<Skip to the next nonblank line...@>=
  176. do {
  177.   change_line++;
  178.   if (!input_ln(change_file)) {
  179.     err_print("! Change file ended after @@x");
  180. @.Change file ended...@>
  181.     return;
  182.   }
  183. } while (limit==buffer);
  184. @ @<Move |buffer| and |limit| to |change_buffer| and |change_limit|@>=
  185. {
  186.   change_limit=change_buffer-buffer+limit;
  187.   strncpy(change_buffer,buffer,limit-buffer+1);
  188. }
  189. @ The following procedure is used to see if the next change entry should
  190. go into effect; it is called only when |changing| is 0.
  191. The idea is to test whether or not the current
  192. contents of |buffer| matches the current contents of |change_buffer|.
  193. If not, there's nothing more to do; but if so, a change is called for:
  194. All of the text down to the .{@@y} is supposed to match. An error
  195. message is issued if any discrepancy is found. Then the procedure
  196. prepares to read the next line from |change_file|.
  197. This procedure is called only when |buffer<limit|, i.e., when the
  198. current line is nonempty.
  199. @<Func...@>=
  200. void
  201. check_change() /* switches to |change_file| if the buffers match */
  202. {
  203.   int n=0; /* the number of discrepancies found */
  204.   if (lines_dont_match) return;
  205.   while (1) {
  206.     changing=1; change_line++;
  207.     if (!input_ln(change_file)) {
  208.       err_print("! Change file ended before @@y");
  209. @.Change file ended...@>
  210.       change_limit=change_buffer; changing=0;
  211.       return;
  212.     }
  213.     if (limit>buffer+1 && buffer[0]=='@@') {
  214.       if (isupper(buffer[1])) buffer[1]=tolower(buffer[1]);
  215.       @<If the current line starts with .{@@y},
  216.         report any discrepancies and |return|@>;
  217.     }
  218.     @<Move |buffer| and |limit|...@>;
  219.     changing=0; cur_line++;
  220.     while (!input_ln(cur_file)) { /* pop the stack or quit */
  221.       if (include_depth==0) {
  222.         err_print("! CWEB file ended during a change");
  223. @.CWEB file ended...@>
  224.         input_has_ended=1; return;
  225.       }
  226.       include_depth--; cur_line++;
  227.     }
  228.     if (lines_dont_match) n++;
  229.   }
  230. }
  231. @ @<If the current line starts with .{@@y}...@>=
  232. if (buffer[1]=='x' || buffer[1]=='z') {
  233.   loc=buffer+2; err_print("! Where is the matching @@y?");
  234. @.Where is the match...@>
  235.   }
  236. else if (buffer[1]=='y') {
  237.   if (n>0) {
  238.     loc=buffer+2;
  239.     fprintf(stderr,"n! Hmm... %d ",n);
  240.     err_print("of the preceding lines failed to match");
  241. @.Hmm... n of the preceding...@>
  242.   }
  243.   change_depth=include_depth;
  244.   return;
  245. }
  246. @ The |reset_input| procedure gets the program ready to read the
  247. user's .{WEB} input.
  248. @<Func...@>=
  249. void
  250. reset_input()
  251. {
  252.   limit=buffer; loc=buffer+1; buffer[0]=' ';
  253.   @<Open input files@>;
  254.   include_depth=0; cur_line=0; change_line=0;
  255.   change_depth=include_depth;
  256.   changing=1; prime_the_change_buffer(); changing=!changing;
  257.   limit=buffer; loc=buffer+1; buffer[0]=' '; input_has_ended=0;
  258. }
  259. @ The following code opens the input files.
  260. @^system dependencies@>
  261. @<Open input files@>=
  262. if ((web_file=fopen(web_file_name,"r"))==NULL) {
  263.   strcpy(web_file_name,alt_web_file_name);
  264.   if ((web_file=fopen(web_file_name,"r"))==NULL)
  265.        fatal("! Cannot open input file ", web_file_name);
  266. }
  267. @.Cannot open input file@>
  268. @.Cannot open change file@>
  269. web_file_open=1;
  270. if ((change_file=fopen(change_file_name,"r"))==NULL)
  271.        fatal("! Cannot open change file ", change_file_name);
  272. @ The |get_line| procedure is called when |loc>limit|; it puts the next
  273. line of merged input into the buffer and updates the other variables
  274. appropriately. A space is placed at the right end of the line.
  275. This procedure returns |!input_has_ended| because we often want to
  276. check the value of that variable after calling the procedure.
  277. @<Fun...@>=
  278. get_line() /* inputs the next line */
  279. {
  280.   restart:
  281.   if (changing && include_depth==change_depth)
  282.    @<Read from |change_file| and maybe turn off |changing|@>;
  283.   if (! changing || include_depth>change_depth) {
  284.     @<Read from |cur_file| and maybe turn on |changing|@>;
  285.     if (changing && include_depth==change_depth) goto restart;
  286.   }
  287.   loc=buffer; *limit=' ';
  288.   if (*buffer=='@@' && (*(buffer+1)=='i' || *(buffer+1)=='I')) {
  289.     loc=buffer+2;
  290.     while (loc<=limit && (*loc==' '||*loc=='t'||*loc=='"')) loc++;
  291.     if (loc>=limit) {
  292.       err_print("! Include file name not given");
  293. @.Include file name ...@>
  294.       goto restart;
  295.     }
  296.     if (include_depth>=max_include_depth-1) {
  297.       err_print("! Too many nested includes");
  298. @.Too many nested includes@>
  299.       goto restart;
  300.     } 
  301.     include_depth++; /* push input stack */
  302.     @<Try to open include file, abort push if unsuccessful, go to |restart|@>;
  303.   }
  304.   return (!input_has_ended);
  305. }
  306. void put_line()
  307. {
  308.   char *ptr=buffer;
  309.   while (ptr<limit) putc(*ptr++,out_file);
  310.   putc('n',out_file);
  311. }
  312. @ When an .{@@i} line is found in the |cur_file|, we must temporarily
  313. stop reading it and start reading from the named include file.  The
  314. .{@@i} line should give a complete file name with or without
  315. double quotes.
  316. If the environment variable .{CWEBINPUTS} is set, or if the compiler flag 
  317. of the same name was defined at compile time,
  318. .{CWEB} will look for include files in the directory thus named, if
  319. it cannot find them in the current directory.
  320. (Colon-separated paths are not supported.)
  321. The remainder of the .{@@i} line after the file name is ignored.
  322. @d too_long() {include_depth--; 
  323.         err_print("! Include file name too long"); goto restart;}
  324. @ @<Try to open...@>= {
  325.   char temp_file_name[max_file_name_length]; 
  326.   char *cur_file_name_end=cur_file_name+max_file_name_length-1; 
  327.   char *k=cur_file_name, *kk;
  328.   int l; /* length of file name */
  329.   while (*loc!=' '&&*loc!='t'&&*loc!='"'&&k<=cur_file_name_end) *k++=*loc++;
  330.   if (k>cur_file_name_end) too_long();
  331. @.Include file name ...@>
  332.   *k='';
  333.   if ((cur_file=fopen(cur_file_name,"r"))!=NULL) {
  334.     cur_line=0; 
  335.     goto restart; /* success */
  336.   }
  337.   kk=getenv("CWEBINPUTS");
  338.   if (kk!=NULL) {
  339.     if ((l=strlen(kk))>max_file_name_length-2) too_long();
  340.     strcpy(temp_file_name,kk);
  341.   }
  342.   else {
  343. #ifdef CWEBINPUTS
  344.     if ((l=strlen(CWEBINPUTS))>max_file_name_length-2) too_long();
  345.     strcpy(temp_file_name,CWEBINPUTS);
  346. #else
  347.     l=0; 
  348. #endif /* |CWEBINPUTS| */
  349.   }
  350.   if (l>0) {
  351.     if (k+l+2>=cur_file_name_end)  too_long();
  352. @.Include file name ...@>
  353.     for (; k>= cur_file_name; k--) *(k+l+1)=*k;
  354.     strcpy(cur_file_name,temp_file_name);
  355.     cur_file_name[l]='/'; /* UNIX/ pathname separator */
  356.     if ((cur_file=fopen(cur_file_name,"r"))!=NULL) {
  357.       cur_line=0; 
  358.       goto restart; /* success */
  359.     }
  360.   }
  361.   include_depth--; err_print("! Cannot open include file"); goto restart;
  362. }
  363. @ @<Read from |cur_file|...@>= {
  364.   cur_line++;
  365.   while (!input_ln(cur_file)) { /* pop the stack or quit */
  366.     if (include_depth==0) {input_has_ended=1; break;}
  367.     else {
  368.       fclose(cur_file); include_depth--;
  369.       if (changing && include_depth==change_depth) break;
  370.       cur_line++;
  371.     }
  372.   }
  373.   if (!changing && !input_has_ended)
  374.    if (limit-buffer==change_limit-change_buffer)
  375.     if (buffer[0]==change_buffer[0])
  376.       if (change_limit>change_buffer) check_change();
  377. }
  378. @ @<Read from |change_file|...@>= {
  379.   change_line++;
  380.   if (!input_ln(change_file)) {
  381.     err_print("! Change file ended without @@z");
  382. @.Change file ended...@>
  383.     buffer[0]='@@'; buffer[1]='z'; limit=buffer+2;
  384.   }
  385.   if (limit>buffer) { /* check if the change has ended */
  386.     *limit=' ';
  387.     if (buffer[0]=='@@') {
  388.       if (isupper(buffer[1])) buffer[1]=tolower(buffer[1]);
  389.       if (buffer[1]=='x' || buffer[1]=='y') {
  390.         loc=buffer+2;
  391.         err_print("! Where is the matching @@z?");
  392. @.Where is the match...@>
  393.       }
  394.       else if (buffer[1]=='z') {
  395.         prime_the_change_buffer(); changing=!changing; 
  396.       }
  397.     }
  398.   }
  399. }
  400. @ At the end of the program, we will tell the user if the change file
  401. had a line that didn't match any relevant line in |web_file|.
  402. @<Funct...@>=
  403. void
  404. check_complete(){
  405.   if (change_limit!=change_buffer) { /* |changing| is 0 */
  406.     strncpy(buffer,change_buffer,change_limit-change_buffer+1);
  407.     limit=buffer+(int)(change_limit-change_buffer);
  408.     changing=1; change_depth=include_depth; loc=buffer;
  409.     err_print("! Change file entry did not match");
  410.   @.Change file entry did not match@>
  411.   }
  412. }
  413. @* Reporting errors to the user.
  414. A global variable called |history| will contain one of four values
  415. at the end of every run: |spotless| means that no unusual messages were
  416. printed; |harmless_message| means that a message of possible interest
  417. was printed but no serious errors were detected; |error_message| means that
  418. at least one error was found; |fatal_message| means that the program
  419. terminated abnormally. The value of |history| does not influence the
  420. behavior of the program; it is simply computed for the convenience
  421. of systems that might want to use such information.
  422. @d spotless 0 /* |history| value for normal jobs */
  423. @d harmless_message 1 /* |history| value when non-serious info was printed */
  424. @d error_message 2 /* |history| value when an error was noted */
  425. @d fatal_message 3 /* |history| value when we had to stop prematurely */
  426. @d mark_harmless {if (history==spotless) history=harmless_message;}
  427. @d mark_error history=error_message
  428. @<Definit...@>=
  429. int history=spotless; /* indicates how bad this run was */
  430. @ The command `|err_print("! Error message")|' will report a syntax error to
  431. the user, by printing the error message at the beginning of a new line and
  432. then giving an indication of where the error was spotted in the source file.
  433. Note that no period follows the error message, since the error routine
  434. will automatically supply a period. A newline is automatically supplied
  435. if the string begins with |"!"|.
  436. The actual error indications are provided by a procedure called |error|.
  437. @<Predecl...@>=
  438. void  err_print();
  439. @
  440. @<Functions...@>=
  441. void
  442. err_print(s) /* prints `..' and location of error message */
  443. char *s;
  444. {
  445.   char *k,*l; /* pointers into |buffer| */
  446.   fprintf(stderr,*s=='!'? "n%s" : "%s",s);
  447.   if(web_file_open) @<Print error location based on input buffer@>@;
  448.   else putc('n',stderr);
  449.   update_terminal; mark_error;
  450. }
  451. @ The error locations can be indicated by using the global variables
  452. |loc|, |cur_line|, |cur_file_name| and |changing|,
  453. which tell respectively the first
  454. unlooked-at position in |buffer|, the current line number, the current
  455. file, and whether the current line is from |change_file| or |cur_file|.
  456. This routine should be modified on systems whose standard text editor
  457. has special line-numbering conventions.
  458. @^system dependencies@>
  459. @<Print error location based on input buffer@>=
  460. {if (changing && include_depth==change_depth)
  461.   fprintf(stderr,". (l. %d of change file)n", change_line);
  462. else if (include_depth==0) fprintf(stderr,". (l. %d)n", cur_line);
  463.   else fprintf(stderr,". (l. %d of include file %s)n", cur_line, cur_file_name);
  464. l= (loc>=limit? limit: loc);
  465. if (l>buffer) {
  466.   for (k=buffer; k<l; k++)
  467.     if (*k=='t') putc(' ',stderr);
  468.     else putc(*k,stderr); /* print the characters already read */
  469.   putc('n',stderr);
  470.   for (k=buffer; k<l; k++) putc(' ',stderr); /* space out the next line */
  471. }
  472. for (k=l; k<limit; k++) putc(*k,stderr); /* print the part not yet read */
  473.   putc('n',stderr);
  474. }
  475. @ When no recovery from some error has been provided, we have to wrap
  476. up and quit as graciously as possible.  This is done by calling the
  477. function |wrap_up| at the end of the code.
  478. @d fatal(s,t) {
  479.   fprintf(stderr,s); err_print(t);
  480.   history=fatal_message; exit(wrap_up());
  481. }
  482. @ Some implementations may wish to pass the |history| value to the
  483. operating system so that it can be used to govern whether or not other
  484. programs are started. Here, for instance, we pass the operating system
  485. a status of 0 if and only if only harmless messages were printed.
  486. @^system dependencies@>
  487. @<Func...@>=
  488. wrap_up() {
  489.   @<Print the job |history|@>;
  490.   if (history > harmless_message) return(1);
  491.   else return(0);
  492. }
  493. @ @<Print the job |history|@>=
  494. switch (history) {
  495. case spotless: if (show_happiness) fprintf(stderr,"(No errors were found.)n"); break;
  496. case harmless_message:
  497.   fprintf(stderr,"(Did you see the warning message above?)n"); break;
  498. case error_message:
  499.   fprintf(stderr,"(Pardon me, but I think I spotted something wrong.)n"); break;
  500. case fatal_message: fprintf(stderr,"(That was a fatal error, my friend.)n");
  501. } /* there are no other cases */
  502. @* Command line arguments.
  503. The user calls .{wmerge} with arguments on the command line.
  504. These are either file names or flags to be turned off (beginning with |"-"|)
  505. or flags to be turned on (beginning with |"+"|.
  506. The following globals are for communicating the user's desires to the rest
  507. of the program. The various file name variables contain strings with
  508. the names of those files. Most of the 128 flags are undefined but available
  509. for future extensions.
  510. @d show_banner flags['b'] /* should the banner line be printed? */
  511. @d show_happiness flags['h'] /* should lack of errors be announced? */
  512. @<Defin...@>=
  513. int argc; /* copy of |ac| parameter to |main| */
  514. char **argv; /* copy of |av| parameter to |main| */
  515. char out_file_name[max_file_name_length]; /* name of |out_file| */
  516. boolean flags[128]; /* an option for each 7-bit code */
  517. @ The |flags| will be initially 1.
  518. @<Set the default options@>=
  519. show_banner=show_happiness=1;
  520. @ We now must look at the command line arguments and set the file names
  521. accordingly.  At least one file name must be present: the .{WEB}
  522. file.  It may have an extension, or it may omit it to get |'.w'|
  523. added.
  524. If there is another file name present among the arguments, it is the
  525. change file, again either with an extension or without one to get |'.ch'|
  526. An omitted change file argument means that |'/dev/null'| should be used,
  527. when no changes are desired.
  528. @^system dependencies@>
  529. If there's a third file name, it will be the output file.
  530. @<Pred...@>=
  531. void scan_args();
  532. @
  533. @<Function...@>=
  534. void
  535. scan_args()
  536. {
  537.   char *dot_pos; /* position of |'.'| in the argument */
  538.   register char *s; /* register for scanning strings */
  539.   boolean found_web=0,found_change=0,found_out=0;
  540.              /* have these names have been seen? */
  541.   boolean flag_change;
  542.   while (--argc > 0) {
  543.     if (**(++argv)=='-' || **argv=='+') @<Handle flag argument@>@;
  544.     else {
  545.       s=*argv;@+dot_pos=NULL;
  546.       while (*s) {
  547.         if (*s=='.') dot_pos=s++;
  548.         else if (*s=='/') dot_pos=NULL,++s;
  549.         else s++;
  550.       }
  551.       if (!found_web) @<Make |web_file_name|@>@;
  552.       else if (!found_change) @<Make |change_file_name| from |fname|@>@;
  553.       else if (!found_out) @<Override output file name@>@;
  554.         else @<Print usage error message and quit@>;
  555.     }
  556.   }
  557.   if (!found_web) @<Print usage error message and quit@>;
  558.   if (!found_change) strcpy(change_file_name,"/dev/null");
  559. }
  560. @ We use all of |*argv| for the |web_file_name| if there is a |'.'| in it,
  561. otherwise we add |".w"|. If this file can't be opened, we prepare an
  562. |alt_web_file_name| by adding |"web"| after the dot.
  563. The other file names come from adding other things
  564. after the dot.  We must check that there is enough room in
  565. |web_file_name| and the other arrays for the argument.
  566. @<Make |web_file_name|...@>=
  567. {
  568.   if (s-*argv > max_file_name_length-5)
  569.     @<Complain about argument length@>;
  570.   if (dot_pos==NULL)
  571.     sprintf(web_file_name,"%s.w",*argv);
  572.   else {
  573.     strcpy(web_file_name,*argv);
  574.     *dot_pos=0; /* string now ends where the dot was */
  575.   }
  576.   sprintf(alt_web_file_name,"%s.web",*argv);
  577.   *out_file_name=''; /* this will print to stdout */
  578.   found_web=1;
  579. }
  580. @ @<Make |change_file_name|...@>=
  581. {
  582.   if (s-*argv > max_file_name_length-4)
  583.     @<Complain about argument length@>;
  584.   if (dot_pos==NULL)
  585.     sprintf(change_file_name,"%s.ch",*argv);
  586.   else strcpy(change_file_name,*argv);
  587.   found_change=1;
  588. }
  589. @ @<Override...@>=
  590. {
  591.   if (s-*argv > max_file_name_length-5)
  592.     @<Complain about argument length@>;
  593.   if (dot_pos==NULL) sprintf(out_file_name,"%s.out",*argv);
  594.   else strcpy(out_file_name,*argv);
  595.   found_out=1;
  596. }
  597. @ @<Handle flag...@>=
  598. {
  599.   if (**argv=='-') flag_change=0;
  600.   else flag_change=1;
  601.   for(dot_pos=*argv+1;*dot_pos>'';dot_pos++)
  602.     flags[*dot_pos]=flag_change;
  603. }
  604. @ @<Print usage error message and quit@>=
  605. {
  606.   fatal("! Usage: wmerge webfile[.w] [changefile[.ch] [outfile[.out]]]n","")@;
  607. }
  608. @ @<Complain about arg...@>= fatal("! Filename too longn", *argv);
  609. @* Output. Here is the code that opens the output file:
  610. @^system dependencies@>
  611. @<Defin...@>=
  612. FILE *out_file; /* where output goes */
  613. @ @<Scan arguments and open output file@>=
  614. scan_args();
  615. if (out_file_name[0]=='') out_file=stdout;
  616. else if ((out_file=fopen(out_file_name,"w"))==NULL)
  617.     fatal("! Cannot open output file ", out_file_name);
  618. @.Cannot open output file@>
  619. @ The |update_terminal| procedure is called when we want
  620. to make sure that everything we have output to the terminal so far has
  621. actually left the computer's internal buffers and been sent.
  622. @^system dependencies@>
  623. @d update_terminal fflush(stderr) /* empty the terminal output buffer */
  624. @* Index.