1
0
Files
2022-09-29 17:59:04 +03:00

272 lines
5.4 KiB
C

/*
* |-----------------------------------------------------------|
* | Copyright (c) 1991, 1990 MIPS Computer Systems, Inc. |
* | All Rights Reserved |
* |-----------------------------------------------------------|
* | Restricted Rights Legend |
* | Use, duplication, or disclosure by the Government is |
* | subject to restrictions as set forth in |
* | subparagraph (c)(1)(ii) of the Rights in Technical |
* | Data and Computer Software Clause of DFARS 252.227-7013. |
* | MIPS Computer Systems, Inc. |
* | 950 DeGuigne Avenue |
* | Sunnyvale, California 94088-3650, USA |
* |-----------------------------------------------------------|
*/
#ident "$Header: /proj/irix6.5.7m/isms/eoe/cmd/lp_svr4/lib/postscript/RCS/misc.c,v 1.1 1992/12/14 13:32:54 suresh Exp $"
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
/* The copyright notice above does not evidence any */
/* actual or intended publication of such source code. */
/*
*
* A few general purpose routines.
*
*/
#include <stdio.h>
#include <ctype.h>
#include <fcntl.h>
#include "gen.h" /* a few general purpose definitions */
#include "ext.h" /* external variable declarations */
int nolist = 0; /* number of specified ranges */
int olist[50]; /* processing range pairs */
/*****************************************************************************/
out_list(str)
char *str; /* process ranges in this string */
{
int start, stop; /* end points */
/*
*
* Called to get the processing ranges that were specified by using the -o option.
* The range syntax should be identical to the one used in nroff and troff.
*
*/
while ( *str && nolist < sizeof(olist) - 2 ) {
start = stop = str_convert(&str, 0);
if ( *str == '-' && *str++ )
stop = str_convert(&str, 9999);
if ( start > stop )
error(FATAL, "illegal range %d-%d", start, stop);
olist[nolist++] = start;
olist[nolist++] = stop;
if ( *str != '\0' ) str++;
} /* End while */
olist[nolist] = 0;
} /* End of out_list */
/*****************************************************************************/
in_olist(num)
int num; /* should we print this page? */
{
int i; /* just a loop index */
/*
*
* Returns ON if num represents a page that we're supposed to print. If no ranges
* were selected nolist will be 0 and we'll print everything.
*
*/
if ( nolist == 0 ) /* everything's included */
return(ON);
for ( i = 0; i < nolist; i += 2 )
if ( num >= olist[i] && num <= olist[i+1] )
return(ON);
return(OFF);
} /* End of in_olist */
/*****************************************************************************/
cat(file)
char *file; /* copy this file to stdout */
{
int fd_in; /* for the input */
int fd_out; /* and output files */
char buf[512]; /* buffer for reads and writes */
int count; /* number of bytes we just read */
/*
*
* Copies *file to stdout - mostly for the prologue. Returns FALSE if there was a
* problem and TRUE otherwise.
*
*/
fflush(stdout);
if ( (fd_in = open(file, O_RDONLY)) == -1 )
return(FALSE);
fd_out = fileno(stdout);
while ( (count = read(fd_in, buf, sizeof(buf))) > 0 )
write(fd_out, buf, count);
close(fd_in);
return(TRUE);
} /* End of cat */
/*****************************************************************************/
str_convert(str, err)
char **str; /* get next number from this string */
int err; /* value returned on error */
{
int i; /* just a loop index */
/*
*
* Gets the next integer from **str and returns its value to the caller. If **str
* isn't an integer err is returned. *str is updated after each digit is processed.
*
*/
if ( ! isdigit(**str) ) /* something's wrong */
return(err);
for ( i = 0; isdigit(**str); *str += 1 )
i = 10 * i + **str - '0';
return(i);
} /* End of str_convert */
/*****************************************************************************/
error(kind, mesg, a1, a2, a3)
int kind; /* FATAL or NON_FATAL error */
char *mesg; /* error message control string */
unsigned a1, a2, a3; /* control string arguments */
{
/*
*
* Called when we've run into some kind of program error. *mesg is printed using
* the control string arguments a?. We'll quit if we're not ignoring errors and
* kind is FATAL.
*
*/
if ( mesg != NULL && *mesg != '\0' ) {
fprintf(stderr, "%s: ", prog_name);
fprintf(stderr, mesg, a1, a2, a3);
if ( lineno > 0 )
fprintf(stderr, " (line %d)", lineno);
if ( position > 0 )
fprintf(stderr, " (near byte %d)", position);
putc('\n', stderr);
} /* End if */
if ( kind == FATAL && ignore == OFF ) {
if ( temp_file != NULL )
unlink(temp_file);
exit(x_stat | 01);
} /* End if */
} /* End of error */
/*****************************************************************************/
void interrupt(sig)
int sig; /* signal that we caught */
{
/*
*
* Called when we get a signal that we're supposed to catch.
*
*/
if ( temp_file != NULL )
unlink(temp_file);
exit(1);
} /* End of interrupt */
/*****************************************************************************/