1994-05-27 12:33:43 +00:00
|
|
|
/*-
|
2017-11-20 19:49:47 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
2013-06-26 04:14:19 +00:00
|
|
|
* Copyright (c) 2013 Johann 'Myrkraverk' Oskarsson.
|
1994-05-27 12:33:43 +00:00
|
|
|
* Copyright (c) 1992 Diomidis Spinellis.
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Diomidis Spinellis of Imperial College, University of London.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 12:33:43 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2001-12-12 23:20:16 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
#ifndef lint
|
1997-08-11 07:21:08 +00:00
|
|
|
static const char copyright[] =
|
1994-05-27 12:33:43 +00:00
|
|
|
"@(#) Copyright (c) 1992, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
2001-12-12 23:20:16 +00:00
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
#ifndef lint
|
2001-12-12 23:20:16 +00:00
|
|
|
static const char sccsid[] = "@(#)main.c 8.2 (Berkeley) 1/3/94";
|
1997-08-11 07:21:08 +00:00
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2002-06-14 01:28:52 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/mman.h>
|
Add a -i option to sed(1) to do inplace editing, to give us an alternative to
Perl for such things. The key difference to Perl is that a backup extension
*MUST* be specified, because on one hand it isn't recommended to have options
which optionally take a parameter, and on the other hand, it'd be slightly
unpleasent to implement proper handling for that.
The difference between this and the version posted to developers@ is that it
does handle multiple files in argv after the getopt(3) handling "correctly",
in that the inplace editing-specific code has been moved out to a function,
and that function is used beyond the first file in our linked list.
This option has been documented as FreeBSD-specific in the manpage.
Reviewed by: developers@ (got feedback from: des, fanf, sobomax, roberto,
obrien)
MFC after: 1 week
2002-05-07 18:32:18 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/stat.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1997-08-11 07:21:08 +00:00
|
|
|
#include <err.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <errno.h>
|
2009-12-13 03:14:06 +00:00
|
|
|
#include <fcntl.h>
|
2005-02-09 09:13:36 +00:00
|
|
|
#include <libgen.h>
|
2004-07-14 10:06:22 +00:00
|
|
|
#include <limits.h>
|
1996-08-11 17:46:35 +00:00
|
|
|
#include <locale.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <regex.h>
|
2009-12-13 03:14:06 +00:00
|
|
|
#include <stddef.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "extern.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Linked list of units (strings and files) to be compiled
|
|
|
|
*/
|
|
|
|
struct s_compunit {
|
|
|
|
struct s_compunit *next;
|
|
|
|
enum e_cut {CU_FILE, CU_STRING} type;
|
2016-08-02 15:35:53 +00:00
|
|
|
char *s; /* Pointer to string or fname */
|
1994-05-27 12:33:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Linked list pointer to compilation units and pointer to current
|
|
|
|
* next pointer.
|
|
|
|
*/
|
|
|
|
static struct s_compunit *script, **cu_nextp = &script;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Linked list of files to be processed
|
|
|
|
*/
|
|
|
|
struct s_flist {
|
2016-08-02 15:35:53 +00:00
|
|
|
char *fname;
|
1994-05-27 12:33:43 +00:00
|
|
|
struct s_flist *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Linked list pointer to files and pointer to current
|
|
|
|
* next pointer.
|
|
|
|
*/
|
|
|
|
static struct s_flist *files, **fl_nextp = &files;
|
|
|
|
|
2003-11-04 13:09:16 +00:00
|
|
|
FILE *infile; /* Current input file */
|
|
|
|
FILE *outfile; /* Current output file */
|
2002-07-03 14:38:27 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
int aflag, eflag, nflag;
|
2000-03-19 19:41:53 +00:00
|
|
|
int rflags = 0;
|
2018-08-29 17:09:03 +00:00
|
|
|
int quit = 0;
|
2002-05-24 10:58:21 +00:00
|
|
|
static int rval; /* Exit status */
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2007-04-21 01:21:36 +00:00
|
|
|
static int ispan; /* Whether inplace editing spans across files */
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Current file and line number; line numbers restart across compilation
|
2007-04-21 01:21:36 +00:00
|
|
|
* units, but span across input files. The latter is optional if editing
|
|
|
|
* in place.
|
1994-05-27 12:33:43 +00:00
|
|
|
*/
|
2001-12-12 23:20:16 +00:00
|
|
|
const char *fname; /* File name. */
|
2003-11-04 13:09:16 +00:00
|
|
|
const char *outfname; /* Output file name */
|
|
|
|
static char oldfname[PATH_MAX]; /* Old file name (for in-place editing) */
|
|
|
|
static char tmpfname[PATH_MAX]; /* Temporary file name (for in-place editing) */
|
2018-08-29 17:09:03 +00:00
|
|
|
const char *inplace; /* Inplace edit file extension. */
|
1994-05-27 12:33:43 +00:00
|
|
|
u_long linenum;
|
|
|
|
|
2016-08-02 15:35:53 +00:00
|
|
|
static void add_compunit(enum e_cut, char *);
|
|
|
|
static void add_file(char *);
|
2002-03-22 01:42:45 +00:00
|
|
|
static void usage(void);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
int
|
2003-11-04 12:15:20 +00:00
|
|
|
main(int argc, char *argv[])
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
int c, fflag;
|
2016-08-02 15:35:53 +00:00
|
|
|
char *temp_arg;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1996-08-11 17:46:35 +00:00
|
|
|
(void) setlocale(LC_ALL, "");
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
fflag = 0;
|
Add a -i option to sed(1) to do inplace editing, to give us an alternative to
Perl for such things. The key difference to Perl is that a backup extension
*MUST* be specified, because on one hand it isn't recommended to have options
which optionally take a parameter, and on the other hand, it'd be slightly
unpleasent to implement proper handling for that.
The difference between this and the version posted to developers@ is that it
does handle multiple files in argv after the getopt(3) handling "correctly",
in that the inplace editing-specific code has been moved out to a function,
and that function is used beyond the first file in our linked list.
This option has been documented as FreeBSD-specific in the manpage.
Reviewed by: developers@ (got feedback from: des, fanf, sobomax, roberto,
obrien)
MFC after: 1 week
2002-05-07 18:32:18 +00:00
|
|
|
inplace = NULL;
|
|
|
|
|
2014-06-20 21:41:30 +00:00
|
|
|
while ((c = getopt(argc, argv, "EI:ae:f:i:lnru")) != -1)
|
1994-05-27 12:33:43 +00:00
|
|
|
switch (c) {
|
2010-03-31 17:40:13 +00:00
|
|
|
case 'r': /* Gnu sed compat */
|
2000-03-19 19:41:53 +00:00
|
|
|
case 'E':
|
|
|
|
rflags = REG_EXTENDED;
|
|
|
|
break;
|
2007-04-21 01:21:36 +00:00
|
|
|
case 'I':
|
|
|
|
inplace = optarg;
|
|
|
|
ispan = 1; /* span across input files */
|
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
case 'a':
|
|
|
|
aflag = 1;
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
eflag = 1;
|
2016-08-02 15:35:53 +00:00
|
|
|
if ((temp_arg = malloc(strlen(optarg) + 2)) == NULL)
|
|
|
|
err(1, "malloc");
|
|
|
|
strcpy(temp_arg, optarg);
|
|
|
|
strcat(temp_arg, "\n");
|
2016-07-31 05:31:09 +00:00
|
|
|
add_compunit(CU_STRING, temp_arg);
|
1994-05-27 12:33:43 +00:00
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
fflag = 1;
|
|
|
|
add_compunit(CU_FILE, optarg);
|
|
|
|
break;
|
Add a -i option to sed(1) to do inplace editing, to give us an alternative to
Perl for such things. The key difference to Perl is that a backup extension
*MUST* be specified, because on one hand it isn't recommended to have options
which optionally take a parameter, and on the other hand, it'd be slightly
unpleasent to implement proper handling for that.
The difference between this and the version posted to developers@ is that it
does handle multiple files in argv after the getopt(3) handling "correctly",
in that the inplace editing-specific code has been moved out to a function,
and that function is used beyond the first file in our linked list.
This option has been documented as FreeBSD-specific in the manpage.
Reviewed by: developers@ (got feedback from: des, fanf, sobomax, roberto,
obrien)
MFC after: 1 week
2002-05-07 18:32:18 +00:00
|
|
|
case 'i':
|
|
|
|
inplace = optarg;
|
2007-04-21 01:21:36 +00:00
|
|
|
ispan = 0; /* don't span across input files */
|
Add a -i option to sed(1) to do inplace editing, to give us an alternative to
Perl for such things. The key difference to Perl is that a backup extension
*MUST* be specified, because on one hand it isn't recommended to have options
which optionally take a parameter, and on the other hand, it'd be slightly
unpleasent to implement proper handling for that.
The difference between this and the version posted to developers@ is that it
does handle multiple files in argv after the getopt(3) handling "correctly",
in that the inplace editing-specific code has been moved out to a function,
and that function is used beyond the first file in our linked list.
This option has been documented as FreeBSD-specific in the manpage.
Reviewed by: developers@ (got feedback from: des, fanf, sobomax, roberto,
obrien)
MFC after: 1 week
2002-05-07 18:32:18 +00:00
|
|
|
break;
|
2005-05-10 13:40:50 +00:00
|
|
|
case 'l':
|
2014-06-21 14:07:33 +00:00
|
|
|
if(setvbuf(stdout, NULL, _IOLBF, 0) != 0)
|
|
|
|
warnx("setting line buffered output failed");
|
2005-05-10 13:40:50 +00:00
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
case 'n':
|
|
|
|
nflag = 1;
|
|
|
|
break;
|
2014-06-20 21:41:30 +00:00
|
|
|
case 'u':
|
2014-06-21 14:07:33 +00:00
|
|
|
if(setvbuf(stdout, NULL, _IONBF, 0) != 0)
|
2014-06-20 21:41:30 +00:00
|
|
|
warnx("setting unbuffered output failed");
|
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
default:
|
|
|
|
case '?':
|
1997-08-11 07:21:08 +00:00
|
|
|
usage();
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
/* First usage case; script is the first arg */
|
|
|
|
if (!eflag && !fflag && *argv) {
|
|
|
|
add_compunit(CU_STRING, *argv);
|
|
|
|
argv++;
|
|
|
|
}
|
|
|
|
|
|
|
|
compile();
|
|
|
|
|
|
|
|
/* Continue with first and start second usage */
|
|
|
|
if (*argv)
|
|
|
|
for (; *argv; argv++)
|
|
|
|
add_file(*argv);
|
|
|
|
else
|
|
|
|
add_file(NULL);
|
|
|
|
process();
|
|
|
|
cfclose(prog, NULL);
|
|
|
|
if (fclose(stdout))
|
1997-08-11 07:21:08 +00:00
|
|
|
err(1, "stdout");
|
2002-05-24 10:58:21 +00:00
|
|
|
exit(rval);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
1997-08-11 07:21:08 +00:00
|
|
|
static void
|
2003-11-04 12:15:20 +00:00
|
|
|
usage(void)
|
1997-08-11 07:21:08 +00:00
|
|
|
{
|
2014-06-20 21:41:30 +00:00
|
|
|
(void)fprintf(stderr,
|
2014-07-03 00:31:13 +00:00
|
|
|
"usage: %s script [-Ealnru] [-i extension] [file ...]\n"
|
2014-07-02 23:07:01 +00:00
|
|
|
"\t%s [-Ealnu] [-i extension] [-e script] ... [-f script_file]"
|
2014-06-20 21:41:30 +00:00
|
|
|
" ... [file ...]\n", getprogname(), getprogname());
|
1997-08-11 07:21:08 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Like fgets, but go through the chain of compilation units chaining them
|
|
|
|
* together. Empty strings and files are ignored.
|
|
|
|
*/
|
2016-08-02 15:35:53 +00:00
|
|
|
char *
|
|
|
|
cu_fgets(char *buf, int n, int *more)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
static enum {ST_EOF, ST_FILE, ST_STRING} state = ST_EOF;
|
|
|
|
static FILE *f; /* Current open file */
|
2016-08-02 15:35:53 +00:00
|
|
|
static char *s; /* Current pointer inside string */
|
|
|
|
static char string_ident[30];
|
1994-05-27 12:33:43 +00:00
|
|
|
char *p;
|
|
|
|
|
|
|
|
again:
|
|
|
|
switch (state) {
|
|
|
|
case ST_EOF:
|
1998-12-08 21:29:22 +00:00
|
|
|
if (script == NULL) {
|
|
|
|
if (more != NULL)
|
|
|
|
*more = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
return (NULL);
|
1998-12-08 21:29:22 +00:00
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
linenum = 0;
|
|
|
|
switch (script->type) {
|
|
|
|
case CU_FILE:
|
|
|
|
if ((f = fopen(script->s, "r")) == NULL)
|
1997-08-11 07:21:08 +00:00
|
|
|
err(1, "%s", script->s);
|
1994-05-27 12:33:43 +00:00
|
|
|
fname = script->s;
|
|
|
|
state = ST_FILE;
|
|
|
|
goto again;
|
|
|
|
case CU_STRING:
|
2008-02-09 09:12:02 +00:00
|
|
|
if (((size_t)snprintf(string_ident,
|
1994-05-27 12:33:43 +00:00
|
|
|
sizeof(string_ident), "\"%s\"", script->s)) >=
|
|
|
|
sizeof(string_ident) - 1)
|
|
|
|
(void)strcpy(string_ident +
|
|
|
|
sizeof(string_ident) - 6, " ...\"");
|
|
|
|
fname = string_ident;
|
|
|
|
s = script->s;
|
|
|
|
state = ST_STRING;
|
|
|
|
goto again;
|
2018-07-09 20:27:31 +00:00
|
|
|
default:
|
|
|
|
__unreachable();
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
case ST_FILE:
|
2016-08-02 15:35:53 +00:00
|
|
|
if ((p = fgets(buf, n, f)) != NULL) {
|
1994-05-27 12:33:43 +00:00
|
|
|
linenum++;
|
2016-08-02 15:35:53 +00:00
|
|
|
if (linenum == 1 && buf[0] == '#' && buf[1] == 'n')
|
1994-05-27 12:33:43 +00:00
|
|
|
nflag = 1;
|
1998-12-08 21:29:22 +00:00
|
|
|
if (more != NULL)
|
|
|
|
*more = !feof(f);
|
2016-08-02 15:35:53 +00:00
|
|
|
return (p);
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
script = script->next;
|
|
|
|
(void)fclose(f);
|
|
|
|
state = ST_EOF;
|
|
|
|
goto again;
|
|
|
|
case ST_STRING:
|
|
|
|
if (linenum == 0 && s[0] == '#' && s[1] == 'n')
|
|
|
|
nflag = 1;
|
2016-08-02 15:35:53 +00:00
|
|
|
p = buf;
|
1994-05-27 12:33:43 +00:00
|
|
|
for (;;) {
|
2016-08-02 15:35:53 +00:00
|
|
|
if (n-- <= 1) {
|
|
|
|
*p = '\0';
|
|
|
|
linenum++;
|
|
|
|
if (more != NULL)
|
|
|
|
*more = 1;
|
|
|
|
return (buf);
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
switch (*s) {
|
|
|
|
case '\0':
|
|
|
|
state = ST_EOF;
|
2016-08-02 15:35:53 +00:00
|
|
|
if (s == script->s) {
|
|
|
|
script = script->next;
|
|
|
|
goto again;
|
|
|
|
} else {
|
|
|
|
script = script->next;
|
|
|
|
*p = '\0';
|
|
|
|
linenum++;
|
|
|
|
if (more != NULL)
|
|
|
|
*more = 0;
|
|
|
|
return (buf);
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
case '\n':
|
2016-08-02 15:35:53 +00:00
|
|
|
*p++ = '\n';
|
|
|
|
*p = '\0';
|
1994-05-27 12:33:43 +00:00
|
|
|
s++;
|
|
|
|
linenum++;
|
1998-12-08 21:29:22 +00:00
|
|
|
if (more != NULL)
|
|
|
|
*more = 0;
|
2016-08-02 15:35:53 +00:00
|
|
|
return (buf);
|
1994-05-27 12:33:43 +00:00
|
|
|
default:
|
2016-08-02 15:35:53 +00:00
|
|
|
*p++ = *s++;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
1997-08-11 07:21:08 +00:00
|
|
|
return (NULL);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Like fgets, but go through the list of files chaining them together.
|
|
|
|
* Set len to the length of the line.
|
|
|
|
*/
|
|
|
|
int
|
2003-11-04 12:15:20 +00:00
|
|
|
mf_fgets(SPACE *sp, enum e_spflag spflag)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2003-11-04 13:09:16 +00:00
|
|
|
struct stat sb;
|
2013-06-26 04:14:19 +00:00
|
|
|
ssize_t len;
|
2016-07-28 15:17:12 +00:00
|
|
|
char *dirbuf, *basebuf;
|
2013-06-26 04:14:19 +00:00
|
|
|
static char *p = NULL;
|
|
|
|
static size_t plen = 0;
|
1996-11-17 02:16:34 +00:00
|
|
|
int c;
|
2002-06-14 01:28:52 +00:00
|
|
|
static int firstfile;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2003-11-04 13:09:16 +00:00
|
|
|
if (infile == NULL) {
|
2002-06-14 01:28:52 +00:00
|
|
|
/* stdin? */
|
|
|
|
if (files->fname == NULL) {
|
|
|
|
if (inplace != NULL)
|
2007-04-21 01:21:36 +00:00
|
|
|
errx(1, "-I or -i may not be used with stdin");
|
2003-11-04 13:09:16 +00:00
|
|
|
infile = stdin;
|
2002-06-14 01:28:52 +00:00
|
|
|
fname = "stdin";
|
2003-11-04 13:09:16 +00:00
|
|
|
outfile = stdout;
|
|
|
|
outfname = "stdout";
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2002-06-14 01:28:52 +00:00
|
|
|
firstfile = 1;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2002-06-14 01:28:52 +00:00
|
|
|
for (;;) {
|
2018-08-29 17:09:03 +00:00
|
|
|
if (infile != NULL && (c = getc(infile)) != EOF && !quit) {
|
2003-11-04 13:09:16 +00:00
|
|
|
(void)ungetc(c, infile);
|
2002-06-14 01:28:52 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* If we are here then either eof or no files are open yet */
|
2003-11-04 13:09:16 +00:00
|
|
|
if (infile == stdin) {
|
2002-06-16 08:44:39 +00:00
|
|
|
sp->len = 0;
|
2002-06-14 01:28:52 +00:00
|
|
|
return (0);
|
|
|
|
}
|
2003-11-04 13:09:16 +00:00
|
|
|
if (infile != NULL) {
|
|
|
|
fclose(infile);
|
2004-06-03 22:33:50 +00:00
|
|
|
if (*oldfname != '\0') {
|
2011-01-08 00:03:18 +00:00
|
|
|
/* if there was a backup file, remove it */
|
|
|
|
unlink(oldfname);
|
|
|
|
/*
|
|
|
|
* Backup the original. Note that hard links
|
|
|
|
* are not supported on all filesystems.
|
|
|
|
*/
|
|
|
|
if ((link(fname, oldfname) != 0) &&
|
|
|
|
(rename(fname, oldfname) != 0)) {
|
2004-06-03 22:33:50 +00:00
|
|
|
warn("rename()");
|
2011-01-08 00:03:18 +00:00
|
|
|
if (*tmpfname)
|
|
|
|
unlink(tmpfname);
|
2004-06-03 22:33:50 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
*oldfname = '\0';
|
2003-11-04 13:09:16 +00:00
|
|
|
}
|
2004-06-03 22:33:50 +00:00
|
|
|
if (*tmpfname != '\0') {
|
|
|
|
if (outfile != NULL && outfile != stdout)
|
2011-01-08 00:03:18 +00:00
|
|
|
if (fclose(outfile) != 0) {
|
|
|
|
warn("fclose()");
|
|
|
|
unlink(tmpfname);
|
|
|
|
exit(1);
|
|
|
|
}
|
2004-06-03 22:33:50 +00:00
|
|
|
outfile = NULL;
|
2011-01-08 00:03:18 +00:00
|
|
|
if (rename(tmpfname, fname) != 0) {
|
|
|
|
/* this should not happen really! */
|
|
|
|
warn("rename()");
|
|
|
|
unlink(tmpfname);
|
|
|
|
exit(1);
|
|
|
|
}
|
2004-06-03 22:33:50 +00:00
|
|
|
*tmpfname = '\0';
|
|
|
|
}
|
2003-11-04 13:09:16 +00:00
|
|
|
outfname = NULL;
|
2002-06-14 01:28:52 +00:00
|
|
|
}
|
2003-11-04 13:09:16 +00:00
|
|
|
if (firstfile == 0)
|
2002-06-14 01:28:52 +00:00
|
|
|
files = files->next;
|
2003-11-04 13:09:16 +00:00
|
|
|
else
|
2002-06-14 01:28:52 +00:00
|
|
|
firstfile = 0;
|
|
|
|
if (files == NULL) {
|
2002-06-16 08:44:39 +00:00
|
|
|
sp->len = 0;
|
2002-06-14 01:28:52 +00:00
|
|
|
return (0);
|
|
|
|
}
|
2003-11-04 13:09:16 +00:00
|
|
|
fname = files->fname;
|
2002-06-14 01:28:52 +00:00
|
|
|
if (inplace != NULL) {
|
2003-11-04 13:09:16 +00:00
|
|
|
if (lstat(fname, &sb) != 0)
|
|
|
|
err(1, "%s", fname);
|
2017-02-05 08:51:41 +00:00
|
|
|
if (!S_ISREG(sb.st_mode))
|
2003-11-04 13:09:16 +00:00
|
|
|
errx(1, "%s: %s %s", fname,
|
|
|
|
"in-place editing only",
|
|
|
|
"works for regular files");
|
|
|
|
if (*inplace != '\0') {
|
|
|
|
strlcpy(oldfname, fname,
|
|
|
|
sizeof(oldfname));
|
|
|
|
len = strlcat(oldfname, inplace,
|
|
|
|
sizeof(oldfname));
|
2016-08-02 15:35:53 +00:00
|
|
|
if (len > (ssize_t)sizeof(oldfname))
|
2003-11-04 13:09:16 +00:00
|
|
|
errx(1, "%s: name too long", fname);
|
|
|
|
}
|
2016-07-28 15:17:12 +00:00
|
|
|
if ((dirbuf = strdup(fname)) == NULL ||
|
|
|
|
(basebuf = strdup(fname)) == NULL)
|
|
|
|
err(1, "strdup");
|
2003-11-04 13:09:16 +00:00
|
|
|
len = snprintf(tmpfname, sizeof(tmpfname),
|
2016-07-28 15:17:12 +00:00
|
|
|
"%s/.!%ld!%s", dirname(dirbuf), (long)getpid(),
|
|
|
|
basename(basebuf));
|
|
|
|
free(dirbuf);
|
|
|
|
free(basebuf);
|
2016-08-02 15:35:53 +00:00
|
|
|
if (len >= (ssize_t)sizeof(tmpfname))
|
2003-11-04 13:09:16 +00:00
|
|
|
errx(1, "%s: name too long", fname);
|
|
|
|
unlink(tmpfname);
|
2015-01-27 18:58:24 +00:00
|
|
|
if (outfile != NULL && outfile != stdout)
|
|
|
|
fclose(outfile);
|
2015-01-27 19:46:19 +00:00
|
|
|
if ((outfile = fopen(tmpfname, "w")) == NULL)
|
|
|
|
err(1, "%s", fname);
|
2003-11-04 13:09:16 +00:00
|
|
|
fchown(fileno(outfile), sb.st_uid, sb.st_gid);
|
|
|
|
fchmod(fileno(outfile), sb.st_mode & ALLPERMS);
|
|
|
|
outfname = tmpfname;
|
2007-04-21 01:21:36 +00:00
|
|
|
if (!ispan) {
|
|
|
|
linenum = 0;
|
2007-06-12 12:05:24 +00:00
|
|
|
resetstate();
|
2007-04-21 01:21:36 +00:00
|
|
|
}
|
2003-11-04 13:09:16 +00:00
|
|
|
} else {
|
|
|
|
outfile = stdout;
|
|
|
|
outfname = "stdout";
|
2002-06-14 01:28:52 +00:00
|
|
|
}
|
2003-11-04 13:09:16 +00:00
|
|
|
if ((infile = fopen(fname, "r")) == NULL) {
|
2002-06-14 01:28:52 +00:00
|
|
|
warn("%s", fname);
|
2002-06-14 02:20:05 +00:00
|
|
|
rval = 1;
|
2002-06-14 01:28:52 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
2003-11-04 13:09:16 +00:00
|
|
|
* We are here only when infile is open and we still have something
|
2002-07-03 14:38:27 +00:00
|
|
|
* to read from it.
|
2002-06-14 01:28:52 +00:00
|
|
|
*
|
2013-06-26 04:14:19 +00:00
|
|
|
* Use getline() so that we can handle essentially infinite input
|
|
|
|
* data. The p and plen are static so each invocation gives
|
|
|
|
* getline() the same buffer which is expanded as needed.
|
1994-05-27 12:33:43 +00:00
|
|
|
*/
|
2013-06-26 04:14:19 +00:00
|
|
|
len = getline(&p, &plen, infile);
|
|
|
|
if (len == -1)
|
|
|
|
err(1, "%s", fname);
|
2014-08-08 17:29:01 +00:00
|
|
|
if (len != 0 && p[len - 1] == '\n') {
|
|
|
|
sp->append_newline = 1;
|
2002-06-22 01:42:26 +00:00
|
|
|
len--;
|
2014-08-08 17:29:01 +00:00
|
|
|
} else if (!lastline()) {
|
|
|
|
sp->append_newline = 1;
|
|
|
|
} else {
|
|
|
|
sp->append_newline = 0;
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
cspace(sp, p, len, spflag);
|
|
|
|
|
|
|
|
linenum++;
|
2002-06-14 01:28:52 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add a compilation unit to the linked list
|
|
|
|
*/
|
|
|
|
static void
|
2016-08-02 15:35:53 +00:00
|
|
|
add_compunit(enum e_cut type, char *s)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
struct s_compunit *cu;
|
|
|
|
|
2001-07-24 14:05:21 +00:00
|
|
|
if ((cu = malloc(sizeof(struct s_compunit))) == NULL)
|
|
|
|
err(1, "malloc");
|
1994-05-27 12:33:43 +00:00
|
|
|
cu->type = type;
|
|
|
|
cu->s = s;
|
|
|
|
cu->next = NULL;
|
|
|
|
*cu_nextp = cu;
|
|
|
|
cu_nextp = &cu->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add a file to the linked list
|
|
|
|
*/
|
|
|
|
static void
|
2016-08-02 15:35:53 +00:00
|
|
|
add_file(char *s)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
struct s_flist *fp;
|
|
|
|
|
2001-07-24 14:05:21 +00:00
|
|
|
if ((fp = malloc(sizeof(struct s_flist))) == NULL)
|
|
|
|
err(1, "malloc");
|
1994-05-27 12:33:43 +00:00
|
|
|
fp->next = NULL;
|
|
|
|
*fl_nextp = fp;
|
|
|
|
fp->fname = s;
|
|
|
|
fl_nextp = &fp->next;
|
|
|
|
}
|
Add a -i option to sed(1) to do inplace editing, to give us an alternative to
Perl for such things. The key difference to Perl is that a backup extension
*MUST* be specified, because on one hand it isn't recommended to have options
which optionally take a parameter, and on the other hand, it'd be slightly
unpleasent to implement proper handling for that.
The difference between this and the version posted to developers@ is that it
does handle multiple files in argv after the getopt(3) handling "correctly",
in that the inplace editing-specific code has been moved out to a function,
and that function is used beyond the first file in our linked list.
This option has been documented as FreeBSD-specific in the manpage.
Reviewed by: developers@ (got feedback from: des, fanf, sobomax, roberto,
obrien)
MFC after: 1 week
2002-05-07 18:32:18 +00:00
|
|
|
|
2014-08-08 17:29:01 +00:00
|
|
|
static int
|
2015-01-08 16:33:15 +00:00
|
|
|
next_files_have_lines(void)
|
2014-08-08 17:29:01 +00:00
|
|
|
{
|
|
|
|
struct s_flist *file;
|
|
|
|
FILE *file_fd;
|
|
|
|
int ch;
|
|
|
|
|
|
|
|
file = files;
|
|
|
|
while ((file = file->next) != NULL) {
|
|
|
|
if ((file_fd = fopen(file->fname, "r")) == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ((ch = getc(file_fd)) != EOF) {
|
|
|
|
/*
|
|
|
|
* This next file has content, therefore current
|
|
|
|
* file doesn't contains the last line.
|
|
|
|
*/
|
|
|
|
ungetc(ch, file_fd);
|
|
|
|
fclose(file_fd);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(file_fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2002-07-03 14:38:27 +00:00
|
|
|
int
|
|
|
|
lastline(void)
|
|
|
|
{
|
|
|
|
int ch;
|
|
|
|
|
2014-08-08 17:29:01 +00:00
|
|
|
if (feof(infile)) {
|
|
|
|
return !(
|
|
|
|
(inplace == NULL || ispan) &&
|
|
|
|
next_files_have_lines());
|
|
|
|
}
|
|
|
|
if ((ch = getc(infile)) == EOF) {
|
|
|
|
return !(
|
|
|
|
(inplace == NULL || ispan) &&
|
|
|
|
next_files_have_lines());
|
|
|
|
}
|
2003-11-04 13:09:16 +00:00
|
|
|
ungetc(ch, infile);
|
2002-07-03 14:38:27 +00:00
|
|
|
return (0);
|
|
|
|
}
|