2 * Copyright (c) 2013 Johann 'Myrkraverk' Oskarsson.
3 * Copyright (c) 1992 Diomidis Spinellis.
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
8 * Diomidis Spinellis of Imperial College, University of London.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 4. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #include <sys/types.h>
37 #include <sys/param.h>
55 #include "freebsd-compat.h"
58 * Linked list of units (strings and files) to be compiled
61 struct s_compunit
*next
;
62 enum e_cut
{CU_FILE
, CU_STRING
} type
;
63 char *s
; /* Pointer to string or fname */
67 * Linked list pointer to compilation units and pointer to current
70 static struct s_compunit
*script
, **cu_nextp
= &script
;
73 * Linked list of files to be processed
81 * Linked list pointer to files and pointer to current
84 static struct s_flist
*files
, **fl_nextp
= &files
;
86 FILE *infile
; /* Current input file */
87 FILE *outfile
; /* Current output file */
89 int aflag
, eflag
, nflag
;
91 static int rval
; /* Exit status */
93 static int ispan
; /* Whether inplace editing spans across files */
96 * Current file and line number; line numbers restart across compilation
97 * units, but span across input files. The latter is optional if editing
100 const char *fname
; /* File name. */
101 const char *outfname
; /* Output file name */
102 static char oldfname
[PATH_MAX
]; /* Old file name (for in-place editing) */
103 static char tmpfname
[PATH_MAX
]; /* Temporary file name (for in-place editing) */
104 static const char *inplace
; /* Inplace edit file extension. */
107 static void add_compunit(enum e_cut
, char *);
108 static void add_file(char *);
109 static void usage(void);
112 main(int argc
, char *argv
[])
117 (void) setlocale(LC_ALL
, "");
122 while ((c
= getopt(argc
, argv
, "EI:ae:f:i:lnru")) != -1)
124 case 'r': /* Gnu sed compat */
126 rflags
= REG_EXTENDED
;
130 ispan
= 1; /* span across input files */
137 if ((temp_arg
= malloc(strlen(optarg
) + 2)) == NULL
)
139 strcpy(temp_arg
, optarg
);
140 strcat(temp_arg
, "\n");
141 add_compunit(CU_STRING
, temp_arg
);
145 add_compunit(CU_FILE
, optarg
);
149 ispan
= 0; /* don't span across input files */
152 if(setvbuf(stdout
, NULL
, _IOLBF
, 0) != 0)
153 warnx("setting line buffered output failed");
159 if(setvbuf(stdout
, NULL
, _IONBF
, 0) != 0)
160 warnx("setting unbuffered output failed");
169 /* First usage case; script is the first arg */
170 if (!eflag
&& !fflag
&& *argv
) {
171 add_compunit(CU_STRING
, *argv
);
177 /* Continue with first and start second usage */
179 for (; *argv
; argv
++)
193 (void)fprintf(stderr
,
194 "usage: %s script [-Ealnru] [-i extension] [file ...]\n"
195 "\t%s [-Ealnu] [-i extension] [-e script] ... [-f script_file]"
196 " ... [file ...]\n", getprogname(), getprogname());
201 * Like fgets, but go through the chain of compilation units chaining them
202 * together. Empty strings and files are ignored.
205 cu_fgets(char *buf
, int n
, int *more
)
207 static enum {ST_EOF
, ST_FILE
, ST_STRING
} state
= ST_EOF
;
208 static FILE *f
; /* Current open file */
209 static char *s
; /* Current pointer inside string */
210 static char string_ident
[30];
216 if (script
== NULL
) {
222 switch (script
->type
) {
224 if ((f
= fopen(script
->s
, "r")) == NULL
)
225 err(1, "%s", script
->s
);
230 if (((size_t)snprintf(string_ident
,
231 sizeof(string_ident
), "\"%s\"", script
->s
)) >=
232 sizeof(string_ident
) - 1)
233 (void)strcpy(string_ident
+
234 sizeof(string_ident
) - 6, " ...\"");
235 fname
= string_ident
;
241 if ((p
= fgets(buf
, n
, f
)) != NULL
) {
243 if (linenum
== 1 && buf
[0] == '#' && buf
[1] == 'n')
249 script
= script
->next
;
254 if (linenum
== 0 && s
[0] == '#' && s
[1] == 'n')
268 if (s
== script
->s
) {
269 script
= script
->next
;
272 script
= script
->next
;
297 * Like fgets, but go through the list of files chaining them together.
298 * Set len to the length of the line.
301 mf_fgets(SPACE
*sp
, enum e_spflag spflag
)
305 char *dirbuf
, *basebuf
;
306 static char *p
= NULL
;
307 static size_t plen
= 0;
309 static int firstfile
;
311 if (infile
== NULL
) {
313 if (files
->fname
== NULL
) {
315 errx(1, "-I or -i may not be used with stdin");
325 if (infile
!= NULL
&& (c
= getc(infile
)) != EOF
) {
326 (void)ungetc(c
, infile
);
329 /* If we are here then either eof or no files are open yet */
330 if (infile
== stdin
) {
334 if (infile
!= NULL
) {
336 if (*oldfname
!= '\0') {
337 /* if there was a backup file, remove it */
340 * Backup the original. Note that hard links
341 * are not supported on all filesystems.
343 if ((link(fname
, oldfname
) != 0) &&
344 (rename(fname
, oldfname
) != 0)) {
352 if (*tmpfname
!= '\0') {
353 if (outfile
!= NULL
&& outfile
!= stdout
)
354 if (fclose(outfile
) != 0) {
360 if (rename(tmpfname
, fname
) != 0) {
361 /* this should not happen really! */
378 fname
= files
->fname
;
379 if (inplace
!= NULL
) {
380 if (lstat(fname
, &sb
) != 0)
382 if (!(sb
.st_mode
& S_IFREG
))
383 errx(1, "%s: %s %s", fname
,
384 "in-place editing only",
385 "works for regular files");
386 if (*inplace
!= '\0') {
387 strlcpy(oldfname
, fname
,
389 len
= strlcat(oldfname
, inplace
,
391 if (len
> (ssize_t
)sizeof(oldfname
))
392 errx(1, "%s: name too long", fname
);
394 if ((dirbuf
= strdup(fname
)) == NULL
||
395 (basebuf
= strdup(fname
)) == NULL
)
397 len
= snprintf(tmpfname
, sizeof(tmpfname
),
398 "%s/.!%ld!%s", dirname(dirbuf
), (long)getpid(),
402 if (len
>= (ssize_t
)sizeof(tmpfname
))
403 errx(1, "%s: name too long", fname
);
405 if (outfile
!= NULL
&& outfile
!= stdout
)
407 if ((outfile
= fopen(tmpfname
, "w")) == NULL
)
409 fchown(fileno(outfile
), sb
.st_uid
, sb
.st_gid
);
410 fchmod(fileno(outfile
), sb
.st_mode
& ALLPERMS
);
420 if ((infile
= fopen(fname
, "r")) == NULL
) {
427 * We are here only when infile is open and we still have something
430 * Use getline() so that we can handle essentially infinite input
431 * data. The p and plen are static so each invocation gives
432 * getline() the same buffer which is expanded as needed.
434 len
= getline(&p
, &plen
, infile
);
437 if (len
!= 0 && p
[len
- 1] == '\n') {
438 sp
->append_newline
= 1;
440 } else if (!lastline()) {
441 sp
->append_newline
= 1;
443 sp
->append_newline
= 0;
445 cspace(sp
, p
, len
, spflag
);
453 * Add a compilation unit to the linked list
456 add_compunit(enum e_cut type
, char *s
)
458 struct s_compunit
*cu
;
460 if ((cu
= malloc(sizeof(struct s_compunit
))) == NULL
)
466 cu_nextp
= &cu
->next
;
470 * Add a file to the linked list
477 if ((fp
= malloc(sizeof(struct s_flist
))) == NULL
)
482 fl_nextp
= &fp
->next
;
486 next_files_have_lines(void)
488 struct s_flist
*file
;
493 while ((file
= file
->next
) != NULL
) {
494 if ((file_fd
= fopen(file
->fname
, "r")) == NULL
)
497 if ((ch
= getc(file_fd
)) != EOF
) {
499 * This next file has content, therefore current
500 * file doesn't contains the last line.
520 (inplace
== NULL
|| ispan
) &&
521 next_files_have_lines());
523 if ((ch
= getc(infile
)) == EOF
) {
525 (inplace
== NULL
|| ispan
) &&
526 next_files_have_lines());