home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
unixtex-6.1b-src.tgz
/
tar.out
/
contrib
/
unixtex
/
web2c
/
web
/
weave.ch
< prev
next >
Wrap
Text File
|
1996-09-28
|
20KB
|
569 lines
% weave.ch for C compilation using web2c.
%
% The original version of this file, for Pascal compilation using pc,
% was created by Howard Trickey and Pavel Curtis.
%
% History:
% 11/29/82 HWT Original version. This modifies weave to allow a new
% control sequence:
% @=...text...@> Put ...text... verbatim on a line
% by itself in the Pascal output.
% (argument must fit on one line)
% This control sequence facilitates putting #include "gcons.h"
% (for example) in files meant for the pc compiler.
% Also, there is a command line option, -c, which means that
% only the modules affected by the change file are to generate
% TeX output. (All the limbo stuff still goes to the output
% file, as does the index and table of contents.)
%
% 2/12/83 HWT Brought up for use with version 1.3. Uses Knuth's new
% control sequences for verbatim Pascal (as above, without
% the "on one line" part), and the force_line (@\) primitive.
% Also, he added stuff to keep track of changed modules, and
% output enough information that macros can choose only to
% print changed modules. This isn't as efficient as my
% implementation because I avoided outputting the text for
% non-changed modules altogether, but this feature won't be
% used too often (just for TeX and TeXware), so Knuth's
% solution is accepted.
% The change file changes that used
% to implement these features have been removed.
% There is a -x flag to cause WEAVE to omit cross referencing
% of identifiers, and index and T.of.C. processing.
% This, too, is unnecessary, for one could simply redefine some
% WEB macros to avoid the printing, but there are only a couple
% of easy changes, so they have been made.
%
% 2/18 HWT Increased stack size to 400 (not for TeX-related programs).
%
% 3/18 HWT Brought up for Version 1.5. Made it print newline at end of
% run.
%
% 4/13 PC Merged with Pavel's version, including adding a call to
% exit() at the end of the program, based upon the value of
% `history'.
% 4/16 PC Brought up to version 1.5 released with TeX 0.97 in April 1983
% 6/29 HWT Brought up to version 1.7 released with TeX 0.99 in June 1983,
% introducing a new change file format
% 7/17 HWT Brought up to version 2.0 released with TeX 0.999 in July 1983
% 7/29 HWT Brought up to version 2.1
% 11/17 HWT Brought up to version 2.4 released with TeX 1.0. Made
% changes to use C routines for I/O, for speedup.
% 1/31 HWT Brought up to version 2.6
% 12/15/85 ETM Brought up to version 2.8
% 03/15/88 ETM Converted for use with WEB to C, and for version 2.9 of Weave.
% 11/30/89 KB Version 4.
% (more recent changes in ../ChangeLog.W2C and ChangeLog)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [0] WEAVE: print changes only
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
\pageno=\contentspagenumber \advance\pageno by 1
@y
\pageno=\contentspagenumber \advance\pageno by 1
\let\maybe=\iffalse
\def\title{WEAVE changes for C}
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [1] Change banner message
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
@d banner=='This is WEAVE, Version 4.4'
@y
@d banner=='This is WEAVE, Version 4.4' {more is printed later}
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [2] add input and output, remove other files, add ref to scan_args,
% [2] and #include external definition for exit(), etc.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
program WEAVE(@!web_file,@!change_file,@!tex_file);
label end_of_WEAVE; {go here to finish}
const @<Constants in the outer block@>@/
type @<Types in the outer block@>@/
var @<Globals in the outer block@>@/
@<Error handling procedures@>@/
@y
program WEAVE;
const @<Constants in the outer block@>@/
type @<Types in the outer block@>@/
var @<Globals in the outer block@>@/
@\
@\@/
@<Error handling procedures@>@/
@<|scan_args| procedure@>@/
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [4] compiler options
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
@{@&$C-,A+,D-@} {no range check, catch arithmetic overflow, no debug overhead}
@!debug @{@&$C+,D+@}@+ gubed {but turn everything on when debugging}
@y
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [8] Constants: increase stack size.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
@!stack_size=200; {number of simultaneous output levels}
@y
@!stack_size=400; {number of simultaneous output levels}
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [??] The text_char type is used as an array index into xord. The
% default type `char' produces signed integers, which are bad array
% indices in C.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
@d text_char == char {the data type of characters in text files}
@y
@d text_char == ASCII_code {the data type of characters in text files}
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [17] enable maximum character set
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
for i:=1 to @'37 do xchr[i]:=' ';
for i:=@'200 to @'377 do xchr[i]:=' ';
@y
for i:=1 to @'37 do xchr[i]:=chr(i);
for i:=@'200 to @'377 do xchr[i]:=chr(i);
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [20] Terminal I/O.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
@d print(#)==write(term_out,#) {`|print|' means write on the terminal}
@y
@d term_out==stdout
@d print(#)==write(term_out,#) {`|print|' means write on the terminal}
@z
@x
@<Globals...@>=
@!term_out:text_file; {the terminal as an output file}
@y
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [21] Don't initialize the terminal.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
@ Different systems have different ways of specifying that the output on a
certain file will appear on the user's terminal. Here is one way to do this
on the \PASCAL\ system that was used in \.{TANGLE}'s initial development:
@^system dependencies@>
@<Set init...@>=
rewrite(term_out,'TTY:'); {send |term_out| output to the terminal}
@y
@ Different systems have different ways of specifying that the output on a
certain file will appear on the user's terminal.
@^system dependencies@>
@<Set init...@>=
{nothing need be done}
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [22] `break' is `flush'.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
@d update_terminal == break(term_out) {empty the terminal output buffer}
@y
@d update_terminal == flush(term_out) {empty the terminal output buffer}
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [24] Open input files.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
@ The following code opens the input files. Since these files were listed
in the program header, we assume that the \PASCAL\ runtime system has
already checked that suitable file names have been given; therefore no
additional error checking needs to be done. We will see below that
\.{WEAVE} reads through the entire input twice.
@^system dependencies@>
@p procedure open_input; {prepare to read |web_file| and |change_file|}
begin reset(web_file); reset(change_file);
end;
@y
@ The following code opens the input files.
This is called after |scan_args| has set the file name variables
appropriately.
@^system dependencies@>
@p procedure open_input; {prepare to read |web_file| and |change_file|}
begin reset(web_file,web_file_name);
reset(change_file,change_file_name);
end;
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [26] Opening the .tex file.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
@ The following code opens |tex_file|.
Since this file was listed in the program header, we assume that the
\PASCAL\ runtime system has checked that a suitable external file name has
been given.
@^system dependencies@>
@<Set init...@>=
rewrite(tex_file);
@y
@ The following code opens |tex_file|.
The |scan_args| procedure is used to set up |tex_file_name| as required.
@^system dependencies@>
@<Set init...@>=
scan_args;
rewrite(tex_file,tex_file_name);
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [28] web2c doesn't understand f^.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
begin buffer[limit]:=xord[f^]; get(f);
incr(limit);
if buffer[limit-1]<>" " then final_limit:=limit;
if limit=buf_size then
begin while not eoln(f) do get(f);
@y
begin buffer[limit]:=xord[getc(f)];
incr(limit);
if buffer[limit-1]<>" " then final_limit:=limit;
if limit=buf_size then
begin while not eoln(f) do vgetc(f);
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [??] Fix jump_out
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
@ The |jump_out| procedure just cuts across all active procedure levels
and jumps out of the program. This is the only non-local \&{goto} statement
in \.{WEAVE}. It is used when no recovery from a particular error has
been provided.
Some \PASCAL\ compilers do not implement non-local |goto| statements.
@^system dependencies@>
In such cases the code that appears at label |end_of_WEAVE| should be
copied into the |jump_out| procedure, followed by a call to a system procedure
that terminates the program.
@d fatal_error(#)==begin new_line; print(#); error; mark_fatal; jump_out;
end
@<Error handling...@>=
procedure jump_out;
begin goto end_of_WEAVE;
end;
@y
@ The |jump_out| procedure cleans up, prints appropriate messages,
and exits back to the operating system.
@d fatal_error(#)==begin new_line; print(#); error; mark_fatal; jump_out;
end
@<Error handling...@>=
procedure jump_out;
begin
stat @<Print statistics about memory usage@>;@+tats@;@/
@t\4\4@>{here files should be closed if the operating system requires it}
@<Print the job |history|@>;
new_line;
if (history <> spotless) and (history <> harmless_message) then
uexit(1)
else
uexit(0);
end;
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [50] don't enter xrefs if no_xref set
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
@d append_xref(#)==if xref_ptr=max_refs then overflow('cross reference')
else begin incr(xref_ptr); num(xref_ptr):=#;
end
@p procedure new_xref(@!p:name_pointer);
label exit;
var q:xref_number; {pointer to previous cross reference}
@!m,@!n: sixteen_bits; {new and previous cross-reference value}
begin if (reserved(p)or(byte_start[p]+1=byte_start[p+ww]))and
@y
If the user has sent the |no_xref| flag (the -x option of the command line),
then it is unnecessary to keep track of cross references for identifers.
If one were careful, one could probably make more changes around module
100 to avoid a lot of identifier looking up.
@d append_xref(#)==if xref_ptr=max_refs then overflow('cross reference')
else begin incr(xref_ptr); num(xref_ptr):=#;
end
@p procedure new_xref(@!p:name_pointer);
label exit;
var q:xref_number; {pointer to previous cross-reference}
@!m,@!n: sixteen_bits; {new and previous cross-reference value}
begin if no_xref then return;
if (reserved(p)or(byte_start[p]+1=byte_start[p+ww]))and
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [239] omit index and module names if no_xref set
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
@<Phase III: Output the cross-reference index@>=
@y
If the user has set the |no_xref| flag (the -x option on the command line),
just finish off the page, omitting the index, module name list, and table of
contents.
@<Phase III: Output the cross-reference index@>=
if no_xref then begin
finish_line;
out("\"); out5("v")("f")("i")("l")("l");
out4("\")("e")("n")("d");
finish_line;
end
else begin
@z
@x
print('Done.');
@y
end;
print('Done.');
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [258] term_in == stdin, when debugging.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
any error stop will set |debug_cycle| to zero.
@y
any error stop will set |debug_cycle| to zero.
@d term_in==stdin
@z
@x
@!term_in:text_file; {the user's terminal as an input file}
@y
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [259] Take out reset(term_in)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
reset(term_in,'TTY:','/I'); {open |term_in| as the terminal, don't do a |get|}
@y
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [261] print newline at end of run and exit based upon value of history
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
print_ln(banner); {print a ``banner line''}
@y
print (banner); {print a ``banner line''}
print_ln (version_string);
@z
@x
end_of_WEAVE:
stat @<Print statistics about memory usage@>;@+tats@;@/
@t\4\4@>{here files should be closed if the operating system requires it}
@<Print the job |history|@>;
end.
@y
jump_out;
end.
@z
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [264] system dependent changes--the scan_args procedure
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@x
@* System-dependent changes.
This module should be replaced, if necessary, by changes to the program
that are necessary to make \.{WEAVE} work at a particular installation.
It is usually best to design your change file so that all changes to
previous modules preserve the module numbering; then everybody's version
will be consistent with the printed program. More extensive changes,
which introduce new modules, can be inserted here; then only the index
itself will get a new module number.
@^system dependencies@>
@y
@* System-dependent changes.
The user calls \.{WEAVE} with arguments on the command line.
These are either file names or flags (beginning with '-').
The following globals are for communicating the user's desires to the rest
of the program. The various |file_name| variables contain strings with
the full names of those files, as UNIX knows them.
The only flag that affects weave is |'-x'| whose status is kept in |no_xref|.
@d max_file_name_length==100
@<Globals...@>=
@!web_file_name,@!change_file_name,@!tex_file_name:
array[1..max_file_name_length] of char;
@!no_xref:boolean;
@ The |scan_args| procedure looks at the command line arguments and sets
the |file_name| variables accordingly. At least one file name must be
present: the \.{WEB} file. It may have an extension, or it may omit it
to get |'.web'| added. The \TeX\ output file name is formed by
replacing the \.{WEB} file name extension by |'.tex'|.
If there is another file name present among the arguments, it is the
change file, again either with an extension or without one to get
|'.ch'| An omitted change file argument means that |'/dev/null'| should
be used, when no changes are desired.
An argument beginning with a minus sign is a flag. Any letters
following the minus sign may cause global flag variables to be set.
Currently, an |x| means that the cross referencing information---the
index, the module name list, and the table of contents---is to be
suppressed.
@<|scan_args|...@>=
procedure scan_args;
var slash_pos, dot_pos,i,a: integer; {indices}
@!fname: array[1..max_file_name_length-5] of char; {temporary argument holder}
@!found_web,@!found_change: boolean; {|true| when those file names have
been seen}
begin
found_web:=false;
found_change:=false;
no_xref:=false;
for a:=1 to argc-1 do begin
argv(a,fname); {put argument number |a| into |fname|}
if fname[1]<>'-' then begin
if not found_web then
@<Get |web_file_name|, |pascal_file_name|, and
| pool_file_name| variables from |fname|@>
else if not found_change then
@<Get |change_file_name| from |fname|@>
else @<Print usage error message and quit@>;
end
else @<Handle flag argument in |fname|@>;
end;
if not found_web then @<Print usage error message and quit@>;
if not found_change then @<Set up null change file@>;
end;
@ Use all of |fname| for the |web_file_name| if there is a |'.'| in it,
otherwise add |'.web'|. The other file names come from adding things
after the dot. The |argv| procedure will not put more than
|max_file_name_length-5| characters into |fname|, and this leaves enough
room in the |file_name| variables to add the extensions.
The end of a file name is marked with a |' '|, the convention assumed by
the |reset| and |rewrite| procedures.
@<Get |web_file_name|...@>=
begin
dot_pos := -1;
slash_pos := -1;
i := 1;
while (fname[i] <> ' ') and (i <= max_file_name_length - 5)
do begin
web_file_name[i] := fname[i];
if fname[i] = '.' then dot_pos := i;
if fname[i] = '/' then slash_pos := i;
incr (i);
end;
web_file_name[i] := ' ';
if (dot_pos = -1) or (dot_pos < slash_pos)
then begin
dot_pos := i;
web_file_name[dot_pos] := '.';
web_file_name[dot_pos+1] := 'w';
web_file_name[dot_pos+2] := 'e';
web_file_name[dot_pos+3] := 'b';
web_file_name[dot_pos+4] := ' ';
end;
for i := 1 to dot_pos do
tex_file_name[i] := web_file_name[i];
tex_file_name[dot_pos+1] := 't';
tex_file_name[dot_pos+2] := 'e';
tex_file_name[dot_pos+3] := 'x';
tex_file_name[dot_pos+4] := ' ';
found_web := true;
end
@ @<Get |change_file_name|...@>=
begin
dot_pos := -1;
slash_pos := -1;
i := 1;
while (fname[i] <> ' ') and (i <= max_file_name_length - 5)
do begin
change_file_name[i] := fname[i];
if fname[i] = '.' then dot_pos := i;
if fname[i] = '/' then slash_pos := i;
incr (i);
end;
change_file_name[i] := ' ';
if (dot_pos = -1) or (dot_pos < slash_pos)
then begin
dot_pos := i;
change_file_name[dot_pos] := '.';
change_file_name[dot_pos+1] := 'c';
change_file_name[dot_pos+2] := 'h';
change_file_name[dot_pos+3] := ' ';
end;
found_change := true;
end
@ @<Set up null...@>=
begin
change_file_name[1]:='/';
change_file_name[2]:='d';
change_file_name[3]:='e';
change_file_name[4]:='v';
change_file_name[5]:='/';
change_file_name[6]:='n';
change_file_name[7]:='u';
change_file_name[8]:='l';
change_file_name[9]:='l';
change_file_name[10]:=' ';
end
@ @<Handle flag...@>=
begin
i:=2;
while (fname[i]<>' ') and (i<=max_file_name_length-5) do begin
if fname[i]='x' then no_xref:=true;
incr(i);
end;
end
@ @<Print usage error message and quit@>=
begin
print_ln ('Usage: weave webfile[.web] [changefile[.ch]] [-x].');
uexit (1);
end
@z