home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
indent-1.9.1-src.tgz
/
tar.out
/
fsf
/
indent
/
io.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
22KB
|
942 lines
/* Copyright (c) 1994, Joseph Arceneaux. All rights reserved.
Copyright (c) 1992, Free Software Foundation, Inc. All rights reserved.
Copyright (c) 1985 Sun Microsystems, Inc. Copyright (c) 1980 The Regents
of the University of California. Copyright (c) 1976 Board of Trustees of
the University of Illinois. All rights reserved.
Redistribution and use in source and binary forms are permitted
provided that
the above copyright notice and this paragraph are duplicated in all such
forms and that any documentation, advertising materials, and other
materials related to such distribution and use acknowledge that the
software was developed by the University of California, Berkeley, the
University of Illinois, Urbana, and Sun Microsystems, Inc. The name of
either University or Sun Microsystems may not be used to endorse or
promote products derived from this software without specific prior written
permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES
OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */
#include "sys.h"
#include "indent.h"
#include <ctype.h>
#ifdef VMS
# include <file.h>
# include <types.h>
# include <stat.h>
#else /* not VMS */
/* POSIX says that <fcntl.h> should exist. Some systems might need to use
<sys/fcntl.h> or <sys/file.h> instead. */
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#endif /* not VMS */
/* number of levels a label is placed to left of code */
#define LABEL_OFFSET 2
/* Stuff that needs to be shared with the rest of indent. Documented in
indent.h. */
char *in_prog;
char *in_prog_pos;
char *cur_line;
unsigned long in_prog_size;
FILE *output;
char *buf_ptr;
char *buf_end;
int had_eof;
int out_lines;
int com_lines;
int suppress_blanklines = 0;
static int comment_open;
int paren_target;
/* Use `perror' to print the system error message
caused by OFFENDER, then exit. */
void
sys_error (offender)
char *offender;
{
int buffer_size;
char *errbuf;
/* Grab extra space to handle random unix lossage */
errbuf = (char *) xmalloc (strlen (offender) + 10);
sprintf (errbuf, "indent: %s", offender);
perror (errbuf);
exit (1);
}
#ifdef VMS
/* Folks say VMS requires its own read routine. Then again, some folks
say it doesn't. Different folks have also sent me conflicting versions
of this function. Who's right?
Anyway, this version was sent by MEHRDAD@glum.dev.cf.ac.uk */
int
vms_read (int file_desc, char *buffer, int nbytes)
{
register char *bufp;
register int nread, nleft;
bufp = buffer;
nread = 0;
nleft = nbytes;
nread = read (file_desc, bufp, nleft);
while (nread > 0)
{
bufp += nread;
nleft -= nread;
if (nleft < 0)
sys_error ("Internal buffering error");
nread = read (file_desc, bufp, nleft);
}
return nbytes - nleft;
}
#endif /* VMS */
INLINE int
count_columns (column, bp)
int column;
char *bp;
{
while (*bp != '\0')
{
switch (*bp++)
{
case EOL:
case 014: /* form feed */
column = 1;
break;
case TAB:
column += tabsize - (column - 1) % tabsize;
break;
case 010: /* backspace */
--column;
break;
default:
++column;
break;
}
}
return column;
}
/* Return the column we are at in the input line. */
INLINE int
current_column ()
{
char *p;
int column = 1;
if (buf_ptr >= save_com.ptr && buf_ptr <= save_com.end)
p = save_com.ptr;
else
p = cur_line;
#if 0
/* Paranoia -- Turning this on breaks stuff, but I haven't yet
investigated. */
if (! (buf_ptr >= cur_line && buf_ptr < in_prog_pos))
abort ();
#endif
column = 1;
while (p < buf_ptr)
switch (*p++)
{
case EOL:
case 014: /* form feed */
column = 1;
break;
case TAB:
column += tabsize - (column - 1) % tabsize;
break;
case '\b': /* backspace */
column--;
break;
default:
column++;
break;
}
return column;
}
void
dump_line ()
{ /* dump_line is the routine that actually
effects the printing of the new source. It
prints the label section, followed by the
code section with the appropriate nesting
level, followed by any comments */
register int cur_col;
register int target_col = 0;
static not_first_line;
if (parser_state_tos->procname[0])
{
if (troff)
{
if (comment_open)
{
comment_open = 0;
fprintf (output, ".*/\n");
}
fprintf (output, ".Pr \"%.*s\"\n",
parser_state_tos->procname_end - parser_state_tos->procname,
parser_state_tos->procname);
}
parser_state_tos->ind_level = 0;
parser_state_tos->procname = "\0";
}
/* A blank line */
if (s_code == e_code && s_lab == e_lab && s_com == e_com)
{
/* If we have a formfeed on a blank line, we should just output it,
rather than treat it as a normal blank line. */
if (parser_state_tos->use_ff)
{
putc ('\014', output);
parser_state_tos->use_ff = false;
}
else
{
if (suppress_blanklines > 0)
suppress_blanklines--;
else
{
parser_state_tos->bl_line = true;
n_real_blanklines++;
}
}
}
else
{
suppress_blanklines = 0;
parser_state_tos->bl_line = false;
if (prefix_blankline_requested
&& not_first_line
&& n_real_blanklines == 0)
n_real_blanklines = 1;
else if (swallow_optional_blanklines && n_real_blanklines > 1)
n_real_blanklines = 1;
while (--n_real_blanklines >= 0)
putc (EOL, output);
n_real_blanklines = 0;
if (parser_state_tos->ind_level == 0)
parser_state_tos->ind_stmt = 0; /* this is a class A kludge. dont do
additional statement indentation
if we are at bracket level 0 */
if (e_lab != s_lab || e_code != s_code)
++code_lines; /* keep count of lines with code */
if (e_lab != s_lab)
{ /* print lab, if any */
if (comment_open)
{
comment_open = 0;
fprintf (output, ".*/\n");
}
while (e_lab > s_lab && (e_lab[-1] == ' ' || e_lab[-1] == TAB))
e_lab--;
cur_col = pad_output (1, compute_label_target ());
if (s_lab[0] == '#' && (strncmp (s_lab, "#else", 5) == 0
|| strncmp (s_lab, "#endif", 6) == 0))
{
/* Treat #else and #endif as a special case because any text
after #else or #endif should be converted to a comment. */
register char *s = s_lab;
if (e_lab[-1] == EOL)
e_lab--;
do
putc (*s++, output);
while (s < e_lab && 'a' <= *s && *s <= 'z');
while ((*s == ' ' || *s == TAB) && s < e_lab)
s++;
if (s < e_lab)
{
if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
fprintf (output, (tabsize > 1 ? "\t%.*s" : " %.*s"),
e_lab - s, s);
else
fprintf (output, (tabsize > 1
? "\t/* %.*s */"
: " /* %.*s */"),
e_lab - s, s);
}
}
else
fprintf (output, "%.*s", e_lab - s_lab, s_lab);
cur_col = count_columns (cur_col, s_lab);
}
else
cur_col = 1; /* there is no label section */
parser_state_tos->pcase = false;
if (s_code != e_code)
{ /* print code section, if any */
register char *p;
register i;
if (comment_open)
{
comment_open = 0;
fprintf (output, ".*/\n");
}
/* If a comment begins this line, then indent it to the right
column for comments, otherwise the line starts with code,
so indent it for code. */
if (embedded_comment_on_line == 1)
target_col = parser_state_tos->com_col;
else
target_col = compute_code_target ();
/* If a line ends in an lparen character, the following line should
not line up with the parenthesis, but should be indented by the
usual amount. */
if (parser_state_tos->last_token == lparen)
{
parser_state_tos->paren_indents[parser_state_tos->p_l_follow - 1]
+= ind_size - 1;
}
for (i = 0; i < parser_state_tos->p_l_follow; i++)
if (parser_state_tos->paren_indents[i] >= 0)
parser_state_tos->paren_indents[i]
= -(parser_state_tos->paren_indents[i] + target_col);
cur_col = pad_output (cur_col, target_col);
for (p = s_code; p < e_code; p++)
putc (*p, output);
cur_col = count_columns (cur_col, s_code);
}
if (s_com != e_com)
{
if (troff)
{
int all_here = 0;
register char *p;
if (e_com[-1] == '/' && e_com[-2] == '*')
e_com -= 2, all_here++;
while (e_com > s_com && e_com[-1] == ' ')
e_com--;
*e_com = 0;
p = s_com;
while (*p == ' ')
p++;
if (p[0] == '/' && p[1] == '*')
p += 2, all_here++;
else if (p[0] == '*')
p += p[1] == '/' ? 2 : 1;
while (*p == ' ')
p++;
if (*p == 0)
goto inhibit_newline;
if (comment_open < 2 && parser_state_tos->box_com)
{
comment_open = 0;
fprintf (output, ".*/\n");
}
if (comment_open == 0)
{
if ('a' <= *p && *p <= 'z')
*p = *p + 'A' - 'a';
if (e_com - p < 50 && all_here == 2)
{
register char *follow = p;
fprintf (output, "\n.nr C! \\w\1");
while (follow < e_com)
{
switch (*follow)
{
case EOL:
putc (' ', output);
case 1:
break;
case '\\':
putc ('\\', output);
default:
putc (*follow, output);
}
follow++;
}
putc (1, output);
}
fprintf (output, "\n./* %dp %d %dp\n",
(int) (parser_state_tos->com_col * 7),
(int) ((s_code != e_code || s_lab != e_lab)
- parser_state_tos->box_com),
(int) (target_col * 7));
}
comment_open = 1 + parser_state_tos->box_com;
while (*p)
{
if (*p == BACKSLASH)
putc (BACKSLASH, output);
putc (*p++, output);
}
}
else
{
/* Here for comment printing. This code is new as of
version 1.8 */
register target = parser_state_tos->com_col;
register char *com_st = s_com;
if (cur_col > target)
{
putc (EOL, output);
cur_col = 1;
++out_lines;
}
cur_col = pad_output (cur_col, target);
fwrite (com_st, e_com - com_st, 1, output);
cur_col += e_com - com_st;
com_lines++;
}
}
else if (embedded_comment_on_line)
com_lines++;
embedded_comment_on_line = 0;
if (parser_state_tos->use_ff)
{
putc ('\014', output);
parser_state_tos->use_ff = false;
}
else
putc (EOL, output);
inhibit_newline:
++out_lines;
if (parser_state_tos->just_saw_decl == 1
&& blanklines_after_declarations)
{
prefix_blankline_requested = 1;
parser_state_tos->just_saw_decl = 0;
}
else
prefix_blankline_requested = postfix_blankline_requested;
postfix_blankline_requested = 0;
}
/* if we are in the middle of a declaration, remember that fact
for proper comment indentation */
parser_state_tos->decl_on_line = parser_state_tos->in_decl;
/* next line should be indented if we have not completed this
stmt and if we are not in the middle of a declaration */
parser_state_tos->ind_stmt = (parser_state_tos->in_stmt
& ~parser_state_tos->in_decl);
parser_state_tos->dumped_decl_indent = 0;
*(e_lab = s_lab) = '\0'; /* reset buffers */
*(e_code = s_code) = '\0';
*(e_com = s_com) = '\0';
parser_state_tos->ind_level = parser_state_tos->i_l_follow;
parser_state_tos->paren_level = parser_state_tos->p_l_follow;
if (parser_state_tos->paren_level > 0)
paren_target
= -parser_state_tos->paren_indents[parser_state_tos->paren_level - 1];
else
paren_target = 0;
not_first_line = 1;
return;
}
/* Return the column in which we should place the code about to be output. */
INLINE int
compute_code_target ()
{
register target_col = parser_state_tos->ind_level + 1;
register w, t;
if (! parser_state_tos->paren_level)
{
if (parser_state_tos->ind_stmt)
target_col += continuation_indent;
return target_col;
}
if (!lineup_to_parens)
return target_col + (continuation_indent * parser_state_tos->paren_level);
t = paren_target;
if ((w = count_columns (t, s_code) - max_col) > 0
&& count_columns (target_col, s_code) <= max_col)
{
t -= w + 1;
if (t > target_col)
target_col = t;
}
else
target_col = t;
return target_col;
}
INLINE int
compute_label_target ()
{
return
parser_state_tos->pcase ? case_ind + 1
: *s_lab == '#' ? 1
: parser_state_tos->ind_level - LABEL_OFFSET + 1;
}
/* VMS defines it's own read routine, `vms_read' */
#ifndef SYS_READ
#define SYS_READ read
#endif
/* Read file FILENAME into a `fileptr' structure, and return a pointer to
that structure. */
static struct file_buffer fileptr;
struct file_buffer *
read_file (filename)
char *filename;
{
int fd, size;
struct stat file_stats;
int namelen = strlen (filename);
fd = open (filename, O_RDONLY, 0777);
if (fd < 0)
sys_error (filename);
if (fstat (fd, &file_stats) < 0)
sys_error (filename);
if (file_stats.st_size <= 0)
diag (1, "Warning: Zero-length file %s", filename);
fileptr.size = file_stats.st_size;
if (fileptr.data != 0)
fileptr.data = (char *) xrealloc (fileptr.data, file_stats.st_size + 1);
else
fileptr.data = (char *) xmalloc (file_stats.st_size + 1);
size = SYS_READ (fd, fileptr.data, fileptr.size);
if (size < 0)
sys_error (filename);
if (close (fd) < 0)
sys_error (filename);
/* Apparently, the DOS stores files using CR-LF for newlines, but
then the DOS `read' changes them into '\n'. Thus, the size of the
file on disc is larger than what is read into memory. Thanks, Bill. */
if (size < fileptr.size)
fileptr.size = size;
if (fileptr.name != 0)
fileptr.name = (char *) xrealloc (fileptr.name, namelen + 1);
else
fileptr.name = (char *) xmalloc (namelen + 1);
memcpy (fileptr.name, filename, namelen);
fileptr.name[namelen] = '\0';
fileptr.data[fileptr.size] = '\0';
return &fileptr;
}
/* This should come from stdio.h and be some system-optimal number */
#ifndef BUFSIZ
#define BUFSIZ 1024
#endif
/* Suck the standard input into a file_buffer structure, and
return a pointer to that structure. */
struct file_buffer stdinptr;
struct file_buffer *
read_stdin ()
{
unsigned int size = 15 * BUFSIZ;
int ch;
register char *p;
if (stdinptr.data != 0)
free (stdinptr.data);
stdinptr.data = (char *) xmalloc (size + 1);
stdinptr.size = 0;
p = stdinptr.data;
do
{
while (stdinptr.size < size)
{
ch = getc (stdin);
if (ch == EOF)
break;
*p++ = ch;
stdinptr.size++;
}
if (ch != EOF)
{
size += (2 * BUFSIZ);
stdinptr.data = xrealloc (stdinptr.data, size);
p = stdinptr.data + stdinptr.size;
}
}
while (ch != EOF);
stdinptr.name = "Standard Input";
stdinptr.data[stdinptr.size] = '\0';
return &stdinptr;
}
/* Points to the current input buffer */
extern struct file_buffer *current_input;
/* Advance `buf_ptr' so that it points to the next line of input.
If the next input line contains an indent control comment turning
off formatting (a comment, C or C++, beginning with *INDENT-OFF*),
then simply print out input lines without formatting until we find
a corresponding comment containing *INDENT-0N* which re-enables
formatting.
Note that if this is a C comment we do not look for the closing
delimiter. Note also that older version of this program also
skipped lines containing *INDENT** which represented errors
generated by indent in some previous formatting. This version does
not recognize such lines. */
INLINE void
fill_buffer ()
{
register char *p;
int finished_a_line;
/* indent() may be saving the text between "if (...)" and the following
statement. To do so, it uses another buffer (`save_com'). Switch
back to the previous buffer here. */
if (bp_save != 0)
{
buf_ptr = bp_save;
buf_end = be_save;
bp_save = be_save = 0;
/* only return if there is really something in this buffer */
if (buf_ptr < buf_end)
return;
}
if (*in_prog_pos == '\0')
{
cur_line = buf_ptr = in_prog_pos;
had_eof = true;
return;
}
/* Here if we know there are chars to read. */
p = cur_line = in_prog_pos;
finished_a_line = 0;
do
{
while (*p == ' ' || *p == TAB)
p++;
if (*p == '/' && (*(p + 1) == '*' || *(p + 1) == '/'))
{
p += 2;
while (*p == ' ' || *p == TAB)
p++;
if (! strncmp (p, "*INDENT-OFF*", 12))
{
char *q = cur_line;
int inhibited = 1;
if (s_com != e_com || s_lab != e_lab || s_code != e_code)
dump_line ();
while (q < p)
putc (*q++, output);
do
{
while (*p != '\0' && *p != EOL)
putc (*p++, output);
if (*p == '\0'
&& (p - current_input->data) == current_input->size)
{
buf_ptr = buf_end = in_prog_pos = p;
had_eof = 1;
return;
}
if (*p == EOL)
cur_line = p + 1;
putc (*p++, output);
while (*p == ' ' || *p == TAB)
putc (*p++, output);
if (*p == '/' && (*(p + 1) == '*' || *(p + 1) == '/'))
{
/* We've hit a comment. See if turns formatting
back on. */
putc (*p++, output);
putc (*p++, output);
while (*p == ' ' || *p == TAB)
putc (*p++, output);
if (! strncmp (p, "*INDENT-ON*", 11))
{
do
{
while (*p != '\0' && *p != EOL)
putc (*p++, output);
if (*p == '\0' && ((p - current_input->data)
== current_input->size))
{
buf_ptr = buf_end = in_prog_pos = p;
had_eof = 1;
return;
}
else
{
if (*p == EOL)
{
inhibited = 0;
cur_line = p + 1;
}
putc (*p++, output);
}
}
while (inhibited);
}
}
}
while (inhibited);
}
}
while (*p != '\0' && *p != EOL)
p++;
/* Here for newline -- return unless formatting is off. */
if (*p == EOL)
{
finished_a_line = 1;
in_prog_pos = p + 1;
}
/* Here for embedded NULLs */
else if ((p - current_input->data) < current_input->size)
{
diag (0, "Warning: File %s contains NULL-characters\n",
current_input->name);
p++;
}
/* Here for EOF with no terminating newline char. */
else
{
in_prog_pos = p;
finished_a_line = 1;
}
}
while (!finished_a_line);
buf_ptr = cur_line;
buf_end = in_prog_pos;
}
/* Fill the output line with whitespace up to TARGET_COLUMN, given that
the line is currently in column CURRENT_COLUMN. Returns the ending
column. */
INLINE int
pad_output (current_column, target_column)
register int current_column;
register int target_column;
{
if (troff)
{
fprintf (output, "\\h'|%dp'", (int) ((target_column - 1) * 7));
return 0;
}
if (current_column >= target_column)
return current_column;
if (tabsize > 1)
{
register int offset;
offset = tabsize - (current_column - 1) % tabsize;
while (current_column + offset <= target_column)
{
putc (TAB, output);
current_column += offset;
offset = tabsize;
}
}
while (current_column < target_column)
{
putc (' ', output);
current_column++;
}
return current_column;
}
/* Nonzero if we have found an error (not a warning). */
int found_err;
/* Signal an error. LEVEL is nonzero if it is an error (as opposed to a
warning. MSG is a printf-style format string. Additional arguments are
additional arguments for printf. */
/* VARARGS2 */
diag (level, msg, a, b)
int level;
unsigned int a, b;
char *msg;
{
if (level)
found_err = 1;
fprintf (stderr, "indent:%s:%d: %s: ", in_name, (int) line_no,
level == 0 ? "Warning" : "Error");
if (msg)
fprintf (stderr, msg, a, b);
fprintf (stderr, "\n");
}
writefdef (f, nm)
register struct fstate *f;
unsigned int nm;
{
fprintf (output, ".ds f%c %s\n.nr s%c %d\n",
(int) nm, f->font, nm, (int) f->size);
}
/* Write characters starting at S to change the font from OF to NF. Return a
pointer to the character after the last character written. For troff mode
only. */
char *
chfont (of, nf, s)
register struct fstate *of, *nf;
char *s;
{
if (of->font[0] != nf->font[0]
|| of->font[1] != nf->font[1])
{
*s++ = '\\';
*s++ = 'f';
if (nf->font[1])
{
*s++ = '(';
*s++ = nf->font[0];
*s++ = nf->font[1];
}
else
*s++ = nf->font[0];
}
if (nf->size != of->size)
{
*s++ = '\\';
*s++ = 's';
if (nf->size < of->size)
{
*s++ = '-';
*s++ = '0' + of->size - nf->size;
}
else
{
*s++ = '+';
*s++ = '0' + nf->size - of->size;
}
}
return s;
}
void
parsefont (f, s0)
register struct fstate *f;
char *s0;
{
register char *s = s0;
int sizedelta = 0;
int i;
f->size = 0;
f->allcaps = 1;
for (i = 0; i < 4; i++)
f->font[i] = 0;
while (*s)
{
if (isdigit (*s))
f->size = f->size * 10 + *s - '0';
else if (isupper (*s))
if (f->font[0])
f->font[1] = *s;
else
f->font[0] = *s;
else if (*s == 'c')
f->allcaps = 1;
else if (*s == '+')
sizedelta++;
else if (*s == '-')
sizedelta--;
else
{
fprintf (stderr, "indent: bad font specification: %s\n", s0);
exit (1);
}
s++;
}
if (f->font[0] == 0)
f->font[0] = 'R';
if (bodyf.size == 0)
bodyf.size = 11;
if (f->size == 0)
f->size = bodyf.size + sizedelta;
else if (sizedelta > 0)
f->size += bodyf.size;
else
f->size = bodyf.size - f->size;
}
#ifdef DEBUG
void
dump_debug_line ()
{
fprintf (output, "\n*** Debug output marker line ***\n");
}
#endif