/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <stdio.h>
#include <ctype.h>
#include <signal.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include "error.h"
int nerrors = 0;
int nfiles = 0;
char *processname;
/*
* error [-I ignorename] [-n] [-q] [-t suffixlist] [-s] [-v] [infile]
*
* -T: terse output
*
* -I: the following name, `ignorename' contains a list of
* function names that are not to be treated as hard errors.
* Default: ~/.errorsrc
*
* -n: don't touch ANY files!
*
* -q: The user is to be queried before touching each
* file; if not specified, all files with hard, non
* ignorable errors are touched (assuming they can be).
*
* -t: touch only files ending with the list of suffices, each
* suffix preceded by a dot.
* eg, -t .c.y.l
* will touch only files ending with .c, .y or .l
*
* -s: print a summary of the error's categories.
*
* -v: after touching all files, overlay vi(1), ex(1) or ed(1)
* on top of error, entered in the first file with
* an error in it, with the appropriate editor
* set up to use the "next" command to get the other
* files containing errors.
*
* -p: (obsolete: for older versions of pi without bug
* fix regarding printing out the name of the main file
* with an error in it)
* Take the following argument and use it as the name of
* the pascal source file, suffix .p
*
* -E: show the errors in sorted order; intended for
* debugging.
*
* -S: show the errors in unsorted order
* (as they come from the error file)
*
* infile: The error messages come from this file.
* Default: stdin
*/
int
{
char *cp;
char *ignorename = 0;
int ed_argc;
processname = argv[0];
if (argc > 1) {
switch (*cp) {
default:
"%s: -%c: Unknown flag\n",
processname, *cp);
break;
case 'n':
break;
case 'q':
break;
case 'S':
Show_Errors = TRUE;
break;
case 's':
pr_summary = TRUE;
break;
case 'v':
edit_files = TRUE;
break;
case 'T':
break;
case 't':
*cp-- = 0;
argv++;
argc--;
if (argc > 1) {
}
break;
case 'I': /* ignore file name */
*cp-- = 0;
argv++;
argc--;
if (argc > 1)
break;
}
}
}
}
if (notouch)
suffixlist = 0;
if (argc > 1) {
if (argc > 3) {
"%s: Only takes 0 or 1 arguments\n",
exit(3);
}
"%s: %s: No such file or directory for "
exit(4);
}
}
if (query) {
"%s: Can't open \"%s\" to query the user.\n",
processname, im_on);
exit(9);
}
}
if (Show_Errors)
if (show_errors)
if (pr_summary) {
if (nunknown)
"%d Errors are unclassifiable.\n",
nunknown);
if (nignore)
"%d Errors are classifiable, but totally "
"discarded.\n", nignore);
if (nsyncerrors)
"%d Errors are synchronization errors.\n",
if (nignore)
"%d Errors are discarded because they "
"refer to sacrosanct files.\n", ndiscard);
if (nnulled)
"%d Errors are nulled because they refer "
"to specific functions.\n", nnulled);
if (nnonspec)
"%d Errors are not specific to any file.\n",
nnonspec);
if (nthisfile)
"%d Errors are specific to a given file, "
"but not to a line.\n", nthisfile);
if (ntrue)
"%d Errors are true errors, and can be "
"inserted into the files.\n", ntrue);
}
return (0);
}
static void
{
if (query) {
? "Edit? "
: "Do you still want to edit the files you touched? ")) {
case Q_NO:
case Q_no:
return;
default:
break;
}
}
/*
* ed_agument's first argument is
* to find the first occurance of ###
*/
}
static void
{
(void) sleep(2);
return;
return;
}
static int
{
int order;
/*
* Sort by:
* 1) synchronization, non specific, discarded errors first;
* 2) nulled and true errors last
* a) grouped by similar file names
* 1) grouped in ascending line number
*/
return (0);
}
if (order == 0) {
}
return (order);
}