]>
git.cameronkatri.com Git - apple_cmds.git/blob - patch_cmds/patch/patch.c
1 /* $OpenBSD: patch.c,v 1.48 2009/10/27 23:59:41 deraadt Exp $ */
4 * patch - a program to apply diffs to original files
6 * Copyright 1986, Larry Wall
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following condition is met:
10 * 1. Redistributions of source code must retain the above copyright notice,
11 * this condition and the following disclaimer.
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
17 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
19 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
20 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * -C option added in 1998, original code by Marc Espie, based on FreeBSD
29 #include <sys/types.h>
44 #include "backupfile.h"
45 #include "pathnames.h"
47 mode_t filemode
= 0644;
49 char buf
[MAXLINELEN
]; /* general purpose buffer */
51 bool using_plan_a
= true; /* try to keep everything in memory */
52 bool out_of_mem
= false; /* ran out of memory in plan a */
56 char *filearg
[MAXFILEC
];
57 bool ok_to_create_file
= false;
59 char *origprae
= NULL
;
64 bool toutkeep
= false;
65 bool trejkeep
= false;
66 bool warn_on_invalid_line
;
67 bool last_line_missing_eol
;
77 bool noreverse
= false;
78 bool skip_rest_of_patch
= false;
80 bool canonicalize
= false;
81 bool check_only
= false;
83 char *revision
= NULL
; /* prerequisite revision, if any */
84 LINENUM input_lines
= 0; /* how long is input file in lines */
85 int posix
= 0; /* strict POSIX mode? */
87 static void reinitialize_almost_everything(void);
88 static void get_some_switches(void);
89 static LINENUM
locate_hunk(LINENUM
);
90 static void abort_context_hunk(void);
91 static void rej_line(int, LINENUM
);
92 static void abort_hunk(void);
93 static void apply_hunk(LINENUM
);
94 static void init_output(const char *);
95 static void init_reject(const char *);
96 static void copy_till(LINENUM
, bool);
97 static void spew_output(void);
98 static void dump_line(LINENUM
, bool);
99 static bool patch_match(LINENUM
, LINENUM
, LINENUM
);
100 static bool similar(const char *, const char *, int);
101 static __dead
void usage(void);
103 /* true if -E was specified on command line. */
104 static bool remove_empty_files
= false;
106 /* true if -R was specified on command line. */
107 static bool reverse_flag_specified
= false;
109 /* buffer holding the name of the rejected patch file. */
110 static char rejname
[NAME_MAX
+ 1];
112 /* buffer for stderr */
113 static char serrbuf
[BUFSIZ
];
115 /* how many input lines have been irretractibly output */
116 static LINENUM last_frozen_line
= 0;
118 static int Argc
; /* guess */
120 static int Argc_last
; /* for restarting plan_b */
121 static char **Argv_last
;
123 static FILE *ofp
= NULL
; /* output file pointer */
124 static FILE *rejfp
= NULL
; /* reject file pointer */
126 static int filec
= 0; /* how many file arguments? */
127 static LINENUM last_offset
= 0;
128 static LINENUM maxfuzz
= 2;
130 /* patch using ifdef, ifndef, etc. */
131 static bool do_defines
= false;
133 static char if_defined
[128];
135 static char not_defined
[128];
137 static const char else_defined
[] = "#else\n";
139 static char end_defined
[128];
142 /* Apply a set of diffs as appropriate. */
145 main(int argc
, char *argv
[])
147 int error
= 0, hunk
, failed
, i
, fd
;
149 LINENUM where
= 0, newwhere
, fuzz
, mymaxfuzz
;
153 setbuf(stderr
, serrbuf
);
154 for (i
= 0; i
< MAXFILEC
; i
++)
157 /* Cons up the names of the temporary files. */
158 if ((tmpdir
= getenv("TMPDIR")) == NULL
|| *tmpdir
== '\0')
160 for (i
= strlen(tmpdir
) - 1; i
> 0 && tmpdir
[i
] == '/'; i
--)
163 if (asprintf(&TMPOUTNAME
, "%.*s/patchoXXXXXXXXXX", i
, tmpdir
) == -1)
164 fatal("cannot allocate memory");
165 if ((fd
= mkstemp(TMPOUTNAME
)) < 0)
166 pfatal("can't create %s", TMPOUTNAME
);
169 if (asprintf(&TMPINNAME
, "%.*s/patchiXXXXXXXXXX", i
, tmpdir
) == -1)
170 fatal("cannot allocate memory");
171 if ((fd
= mkstemp(TMPINNAME
)) < 0)
172 pfatal("can't create %s", TMPINNAME
);
175 if (asprintf(&TMPREJNAME
, "%.*s/patchrXXXXXXXXXX", i
, tmpdir
) == -1)
176 fatal("cannot allocate memory");
177 if ((fd
= mkstemp(TMPREJNAME
)) < 0)
178 pfatal("can't create %s", TMPREJNAME
);
181 if (asprintf(&TMPPATNAME
, "%.*s/patchpXXXXXXXXXX", i
, tmpdir
) == -1)
182 fatal("cannot allocate memory");
183 if ((fd
= mkstemp(TMPPATNAME
)) < 0)
184 pfatal("can't create %s", TMPPATNAME
);
187 v
= getenv("SIMPLE_BACKUP_SUFFIX");
189 simple_backup_suffix
= v
;
191 simple_backup_suffix
= ORIGEXT
;
198 if (backup_type
== none
) {
199 if ((v
= getenv("PATCH_VERSION_CONTROL")) == NULL
)
200 v
= getenv("VERSION_CONTROL");
201 if (v
!= NULL
|| !posix
)
202 backup_type
= get_version(v
); /* OK to pass NULL. */
205 /* make sure we clean up /tmp in case of disaster */
209 for (open_patch_file(filearg
[1]); there_is_another_patch();
210 reinitialize_almost_everything()) {
211 /* for each patch in patch file */
215 warn_on_invalid_line
= true;
218 outname
= savestr(filearg
[0]);
220 /* for ed script just up and do it and exit */
221 if (diff_type
== ED_DIFF
) {
225 /* initialize the patched file */
226 if (!skip_rest_of_patch
)
227 init_output(TMPOUTNAME
);
229 /* initialize reject file */
230 init_reject(TMPREJNAME
);
232 /* find out where all the lines are */
233 if (!skip_rest_of_patch
)
234 scan_input(filearg
[0]);
236 /* from here on, open no standard i/o files, because malloc */
237 /* might misfire and we can't catch it easily */
239 /* apply each hunk of patch */
243 while (another_hunk()) {
246 mymaxfuzz
= pch_context();
247 if (maxfuzz
< mymaxfuzz
)
249 if (!skip_rest_of_patch
) {
251 where
= locate_hunk(fuzz
);
252 if (hunk
== 1 && where
== 0 && !force
) {
253 /* dwim for reversed patch? */
256 say("Not enough memory to try swapped hunk! Assuming unswapped.\n");
261 where
= locate_hunk(fuzz
);
263 /* didn't find it swapped */
265 /* put it back to normal */
266 fatal("lost hunk on alloc error!\n");
268 } else if (noreverse
) {
270 /* put it back to normal */
271 fatal("lost hunk on alloc error!\n");
273 say("Ignoring previously applied (or reversed) patch.\n");
274 skip_rest_of_patch
= true;
277 say("%seversed (or previously applied) patch detected! %s -R.",
278 reverse
? "R" : "Unr",
279 reverse
? "Assuming" : "Ignoring");
281 ask("%seversed (or previously applied) patch detected! %s -R? [y] ",
282 reverse
? "R" : "Unr",
283 reverse
? "Assume" : "Ignore");
285 ask("Apply anyway? [n] ");
287 skip_rest_of_patch
= true;
291 /* put it back to normal */
292 fatal("lost hunk on alloc error!\n");
296 } while (!skip_rest_of_patch
&& where
== 0 &&
297 ++fuzz
<= mymaxfuzz
);
299 if (skip_rest_of_patch
) { /* just got decided */
304 newwhere
= pch_newfirst() + last_offset
;
305 if (skip_rest_of_patch
) {
309 say("Hunk #%d ignored at %ld.\n",
311 } else if (where
== 0) {
315 say("Hunk #%d failed at %ld.\n",
320 say("Hunk #%d succeeded at %ld",
323 say(" with fuzz %ld", fuzz
);
325 say(" (offset %ld line%s)",
327 last_offset
== 1L ? "" : "s");
333 if (out_of_mem
&& using_plan_a
) {
336 say("\n\nRan out of memory using Plan A--trying again...\n\n");
346 fatal("Internal error: hunk should not be 0\n");
348 /* finish spewing out the new file */
349 if (!skip_rest_of_patch
)
352 /* and put the output where desired */
354 if (!skip_rest_of_patch
) {
356 char *realout
= outname
;
359 if (move_file(TMPOUTNAME
, outname
) < 0) {
361 realout
= TMPOUTNAME
;
362 chmod(TMPOUTNAME
, filemode
);
364 chmod(outname
, filemode
);
366 if (remove_empty_files
&&
367 stat(realout
, &statbuf
) == 0 &&
368 statbuf
.st_size
== 0) {
370 say("Removing %s (empty after patching).\n",
380 if (*rejname
== '\0') {
381 if (strlcpy(rejname
, outname
,
382 sizeof(rejname
)) >= sizeof(rejname
))
383 fatal("filename %s is too long\n", outname
);
384 if (strlcat(rejname
, REJEXT
,
385 sizeof(rejname
)) >= sizeof(rejname
))
386 fatal("filename %s is too long\n", outname
);
388 if (skip_rest_of_patch
) {
389 say("%d out of %d hunks ignored--saving rejects to %s\n",
390 failed
, hunk
, rejname
);
392 say("%d out of %d hunks failed--saving rejects to %s\n",
393 failed
, hunk
, rejname
);
395 if (!check_only
&& move_file(TMPREJNAME
, rejname
) < 0)
408 /* Prepare to find the next patch to do in the patch file. */
411 reinitialize_almost_everything(void)
417 last_frozen_line
= 0;
434 reverse
= reverse_flag_specified
;
435 skip_rest_of_patch
= false;
440 /* Process switches and filenames. */
443 get_some_switches(void)
445 const char *options
= "b::B:cCd:D:eEfF:i:lnNo:p:r:RstuvV:x:z:";
446 static struct option longopts
[] = {
447 {"backup", no_argument
, 0, 'b'},
448 {"batch", no_argument
, 0, 't'},
449 {"binary", no_argument
, 0, 1},
450 {"check", no_argument
, 0, 'C'},
451 {"context", no_argument
, 0, 'c'},
452 {"debug", required_argument
, 0, 'x'},
453 {"directory", required_argument
, 0, 'd'},
454 {"dry-run", no_argument
, 0, 'C'},
455 {"ed", no_argument
, 0, 'e'},
456 {"force", no_argument
, 0, 'f'},
457 {"forward", no_argument
, 0, 'N'},
458 {"fuzz", required_argument
, 0, 'F'},
459 {"ifdef", required_argument
, 0, 'D'},
460 {"input", required_argument
, 0, 'i'},
461 {"ignore-whitespace", no_argument
, 0, 'l'},
462 {"normal", no_argument
, 0, 'n'},
463 {"output", required_argument
, 0, 'o'},
464 {"prefix", required_argument
, 0, 'B'},
465 {"quiet", no_argument
, 0, 's'},
466 {"reject-file", required_argument
, 0, 'r'},
467 {"remove-empty-files", no_argument
, 0, 'E'},
468 {"reverse", no_argument
, 0, 'R'},
469 {"silent", no_argument
, 0, 's'},
470 {"strip", required_argument
, 0, 'p'},
471 {"suffix", required_argument
, 0, 'z'},
472 {"unified", no_argument
, 0, 'u'},
473 {"version", no_argument
, 0, 'v'},
474 {"version-control", required_argument
, 0, 'V'},
475 {"posix", no_argument
, &posix
, 1},
476 {"verbose", no_argument
, &verbose
, true},
486 optreset
= optind
= 1;
487 while ((ch
= getopt_long(Argc
, Argv
, options
, longopts
, NULL
)) != -1) {
490 if (backup_type
== none
)
491 backup_type
= numbered_existing
;
495 say("Warning, the ``-b suffix'' option has been"
496 " obsoleted by the -z option.\n");
499 /* must directly follow 'b' case for backwards compat */
500 simple_backup_suffix
= savestr(optarg
);
503 origprae
= savestr(optarg
);
506 diff_type
= CONTEXT_DIFF
;
512 if (chdir(optarg
) < 0)
513 pfatal("can't cd to %s", optarg
);
517 if (!isalpha(*optarg
) && *optarg
!= '_')
518 fatal("argument to -D is not an identifier\n");
519 snprintf(if_defined
, sizeof if_defined
,
520 "#ifdef %s\n", optarg
);
521 snprintf(not_defined
, sizeof not_defined
,
522 "#ifndef %s\n", optarg
);
523 snprintf(end_defined
, sizeof end_defined
,
524 "#endif /* %s */\n", optarg
);
530 remove_empty_files
= true;
536 maxfuzz
= atoi(optarg
);
539 if (++filec
== MAXFILEC
)
540 fatal("too many file arguments\n");
541 filearg
[filec
] = savestr(optarg
);
547 diff_type
= NORMAL_DIFF
;
553 outname
= savestr(optarg
);
556 strippath
= atoi(optarg
);
559 if (strlcpy(rejname
, optarg
,
560 sizeof(rejname
)) >= sizeof(rejname
))
561 fatal("argument for -r is too long\n");
565 reverse_flag_specified
= true;
574 diff_type
= UNI_DIFF
;
580 backup_type
= get_version(optarg
);
584 debug
= atoi(optarg
);
600 filearg
[0] = savestr(*Argv
++);
603 if (++filec
== MAXFILEC
)
604 fatal("too many file arguments\n");
605 filearg
[filec
] = savestr(*Argv
++);
610 if (getenv("POSIXLY_CORRECT") != NULL
)
618 "usage: patch [-bCcEeflNnRstuv] [-B backup-prefix] [-D symbol] [-d directory]\n"
619 " [-F max-fuzz] [-i patchfile] [-o out-file] [-p strip-count]\n"
620 " [-r rej-name] [-V t | nil | never] [-x number] [-z backup-ext]\n"
621 " [--posix] [origfile [patchfile]]\n"
622 " patch <patchfile\n");
623 my_exit(EXIT_SUCCESS
);
627 * Attempt to find the right place to apply this hunk of patch.
630 locate_hunk(LINENUM fuzz
)
632 LINENUM first_guess
= pch_first() + last_offset
;
634 LINENUM pat_lines
= pch_ptrn_lines();
635 LINENUM max_pos_offset
= input_lines
- first_guess
- pat_lines
+ 1;
636 LINENUM max_neg_offset
= first_guess
- last_frozen_line
- 1 + pch_context();
638 if (pat_lines
== 0) { /* null range matches always */
639 if (verbose
&& fuzz
== 0 && (diff_type
== CONTEXT_DIFF
640 || diff_type
== NEW_CONTEXT_DIFF
641 || diff_type
== UNI_DIFF
)) {
642 say("Empty context always matches.\n");
644 return (first_guess
);
646 if (max_neg_offset
>= first_guess
) /* do not try lines < 0 */
647 max_neg_offset
= first_guess
- 1;
648 if (first_guess
<= input_lines
&& patch_match(first_guess
, 0, fuzz
))
650 for (offset
= 1; ; offset
++) {
651 bool check_after
= (offset
<= max_pos_offset
);
652 bool check_before
= (offset
<= max_neg_offset
);
654 if (check_after
&& patch_match(first_guess
, offset
, fuzz
)) {
657 say("Offset changing from %ld to %ld\n",
658 last_offset
, offset
);
660 last_offset
= offset
;
661 return first_guess
+ offset
;
662 } else if (check_before
&& patch_match(first_guess
, -offset
, fuzz
)) {
665 say("Offset changing from %ld to %ld\n",
666 last_offset
, -offset
);
668 last_offset
= -offset
;
669 return first_guess
- offset
;
670 } else if (!check_before
&& !check_after
)
675 /* We did not find the pattern, dump out the hunk so they can handle it. */
678 abort_context_hunk(void)
681 const LINENUM pat_end
= pch_end();
683 * add in last_offset to guess the same as the previous successful
686 const LINENUM oldfirst
= pch_first() + last_offset
;
687 const LINENUM newfirst
= pch_newfirst() + last_offset
;
688 const LINENUM oldlast
= oldfirst
+ pch_ptrn_lines() - 1;
689 const LINENUM newlast
= newfirst
+ pch_repl_lines() - 1;
690 const char *stars
= (diff_type
>= NEW_CONTEXT_DIFF
? " ****" : "");
691 const char *minuses
= (diff_type
>= NEW_CONTEXT_DIFF
? " ----" : " -----");
693 fprintf(rejfp
, "***************\n");
694 for (i
= 0; i
<= pat_end
; i
++) {
695 switch (pch_char(i
)) {
697 if (oldlast
< oldfirst
)
698 fprintf(rejfp
, "*** 0%s\n", stars
);
699 else if (oldlast
== oldfirst
)
700 fprintf(rejfp
, "*** %ld%s\n", oldfirst
, stars
);
702 fprintf(rejfp
, "*** %ld,%ld%s\n", oldfirst
,
706 if (newlast
< newfirst
)
707 fprintf(rejfp
, "--- 0%s\n", minuses
);
708 else if (newlast
== newfirst
)
709 fprintf(rejfp
, "--- %ld%s\n", newfirst
, minuses
);
711 fprintf(rejfp
, "--- %ld,%ld%s\n", newfirst
,
715 fprintf(rejfp
, "%s", pfetch(i
));
721 fprintf(rejfp
, "%c %s", pch_char(i
), pfetch(i
));
724 fatal("fatal internal error in abort_context_hunk\n");
730 rej_line(int ch
, LINENUM i
)
733 const char *line
= pfetch(i
);
737 fprintf(rejfp
, "%c%s", ch
, line
);
738 if (len
== 0 || line
[len
-1] != '\n')
739 fprintf(rejfp
, "\n\\ No newline at end of file\n");
747 const LINENUM pat_end
= pch_end();
748 const LINENUM oldfirst
= pch_first() + last_offset
;
749 const LINENUM newfirst
= pch_newfirst() + last_offset
;
751 if (diff_type
!= UNI_DIFF
) {
752 abort_context_hunk();
756 for (i
= 0; i
<= pat_end
; i
++) {
757 if (pch_char(i
) == '=') {
763 fprintf(rejfp
, "malformed hunk: no split found\n");
768 fprintf(rejfp
, "@@ -%ld,%ld +%ld,%ld @@\n",
769 pch_ptrn_lines() ? oldfirst
: 0,
770 pch_ptrn_lines(), newfirst
, pch_repl_lines());
771 while (i
< split
|| j
<= pat_end
) {
772 ch1
= i
< split
? pch_char(i
) : -1;
773 ch2
= j
<= pat_end
? pch_char(j
) : -1;
777 } else if (ch1
== ' ' && ch2
== ' ') {
781 } else if (ch1
== '!' && ch2
== '!') {
782 while (i
< split
&& ch1
== '!') {
785 ch1
= i
< split
? pch_char(i
) : -1;
787 while (j
<= pat_end
&& ch2
== '!') {
790 ch2
= j
<= pat_end
? pch_char(j
) : -1;
792 } else if (ch1
== '*') {
794 } else if (ch2
== '+' || ch2
== ' ') {
798 fprintf(rejfp
, "internal error on (%ld %ld %ld)\n",
807 /* We found where to apply it (we hope), so do it. */
810 apply_hunk(LINENUM where
)
813 const LINENUM lastline
= pch_ptrn_lines();
814 LINENUM
new = lastline
+ 1;
819 int def_state
= OUTSIDE
;
820 const LINENUM pat_end
= pch_end();
823 while (pch_char(new) == '=' || pch_char(new) == '\n')
826 while (old
<= lastline
) {
827 if (pch_char(old
) == '-') {
828 copy_till(where
+ old
- 1, false);
830 if (def_state
== OUTSIDE
) {
831 fputs(not_defined
, ofp
);
832 def_state
= IN_IFNDEF
;
833 } else if (def_state
== IN_IFDEF
) {
834 fputs(else_defined
, ofp
);
837 fputs(pfetch(old
), ofp
);
841 } else if (new > pat_end
) {
843 } else if (pch_char(new) == '+') {
844 copy_till(where
+ old
- 1, false);
846 if (def_state
== IN_IFNDEF
) {
847 fputs(else_defined
, ofp
);
849 } else if (def_state
== OUTSIDE
) {
850 fputs(if_defined
, ofp
);
851 def_state
= IN_IFDEF
;
854 fputs(pfetch(new), ofp
);
856 } else if (pch_char(new) != pch_char(old
)) {
857 say("Out-of-sync patch, lines %ld,%ld--mangled text or line numbers, maybe?\n",
858 pch_hunk_beg() + old
,
859 pch_hunk_beg() + new);
861 say("oldchar = '%c', newchar = '%c'\n",
862 pch_char(old
), pch_char(new));
865 } else if (pch_char(new) == '!') {
866 copy_till(where
+ old
- 1, false);
868 fputs(not_defined
, ofp
);
869 def_state
= IN_IFNDEF
;
871 while (pch_char(old
) == '!') {
873 fputs(pfetch(old
), ofp
);
879 fputs(else_defined
, ofp
);
882 while (pch_char(new) == '!') {
883 fputs(pfetch(new), ofp
);
887 if (pch_char(new) != ' ')
888 fatal("Internal error: expected ' '\n");
891 if (do_defines
&& def_state
!= OUTSIDE
) {
892 fputs(end_defined
, ofp
);
897 if (new <= pat_end
&& pch_char(new) == '+') {
898 copy_till(where
+ old
- 1, false);
900 if (def_state
== OUTSIDE
) {
901 fputs(if_defined
, ofp
);
902 def_state
= IN_IFDEF
;
903 } else if (def_state
== IN_IFNDEF
) {
904 fputs(else_defined
, ofp
);
908 while (new <= pat_end
&& pch_char(new) == '+') {
909 fputs(pfetch(new), ofp
);
913 if (do_defines
&& def_state
!= OUTSIDE
) {
914 fputs(end_defined
, ofp
);
922 init_output(const char *name
)
924 ofp
= fopen(name
, "w");
926 pfatal("can't create %s", name
);
930 * Open a file to put hunks we can't locate.
933 init_reject(const char *name
)
935 rejfp
= fopen(name
, "w");
937 pfatal("can't create %s", name
);
941 * Copy input file to output, up to wherever hunk is to be applied.
942 * If endoffile is true, treat the last line specially since it may
946 copy_till(LINENUM lastline
, bool endoffile
)
948 if (last_frozen_line
> lastline
)
949 fatal("misordered hunks! output would be garbled\n");
950 while (last_frozen_line
< lastline
) {
951 if (++last_frozen_line
== lastline
&& endoffile
)
952 dump_line(last_frozen_line
, !last_line_missing_eol
);
954 dump_line(last_frozen_line
, true);
959 * Finish copying the input file to the output file.
966 say("il=%ld lfl=%ld\n", input_lines
, last_frozen_line
);
969 copy_till(input_lines
, true); /* dump remainder of file */
975 * Copy one line from input to output.
978 dump_line(LINENUM line
, bool write_newline
)
985 /* Note: string is not NUL terminated. */
986 for (; *s
!= '\n'; s
++)
993 * Does the patch pattern match at line base+offset?
996 patch_match(LINENUM base
, LINENUM offset
, LINENUM fuzz
)
998 LINENUM pline
= 1 + fuzz
;
1000 LINENUM pat_lines
= pch_ptrn_lines() - fuzz
;
1001 const char *ilineptr
;
1002 const char *plineptr
;
1005 for (iline
= base
+ offset
+ fuzz
; pline
<= pat_lines
; pline
++, iline
++) {
1006 ilineptr
= ifetch(iline
, offset
>= 0);
1007 if (ilineptr
== NULL
)
1009 plineptr
= pfetch(pline
);
1010 plinelen
= pch_line_len(pline
);
1012 if (!similar(ilineptr
, plineptr
, plinelen
))
1014 } else if (strnNE(ilineptr
, plineptr
, plinelen
))
1016 if (iline
== input_lines
) {
1018 * We are looking at the last line of the file.
1019 * If the file has no eol, the patch line should
1020 * not have one either and vice-versa. Note that
1023 if (last_line_missing_eol
) {
1024 if (plineptr
[plinelen
- 1] == '\n')
1027 if (plineptr
[plinelen
- 1] != '\n')
1036 * Do two lines match with canonicalized white space?
1039 similar(const char *a
, const char *b
, int len
)
1042 if (isspace(*b
)) { /* whitespace (or \n) to match? */
1043 if (!isspace(*a
)) /* no corresponding whitespace? */
1045 while (len
&& isspace(*b
) && *b
!= '\n')
1046 b
++, len
--; /* skip pattern whitespace */
1047 while (isspace(*a
) && *a
!= '\n')
1048 a
++; /* skip target whitespace */
1049 if (*a
== '\n' || *b
== '\n')
1050 return (*a
== *b
); /* should end in sync */
1051 } else if (*a
++ != *b
++) /* match non-whitespace chars */
1054 len
--; /* probably not necessary */
1056 return true; /* actually, this is not reached */
1057 /* since there is always a \n */