4 * Copyright (C) Linus Torvalds, 2005
6 * This applies patches on top of some (arbitrary) version of the SCM.
14 // --check turns on checking that the working tree matches the
15 // files that are being modified, but doesn't apply the patch
16 // --stat does just a diffstat, and doesn't actually apply
17 // --numstat does numeric diffstat, and doesn't actually apply
18 // --index-info shows the old and new index info for paths if available.
20 static const char *prefix
;
21 static int prefix_length
= -1;
23 static int p_value
= 1;
24 static int allow_binary_replacement
= 0;
25 static int check_index
= 0;
26 static int write_index
= 0;
27 static int diffstat
= 0;
28 static int numstat
= 0;
29 static int summary
= 0;
32 static int no_add
= 0;
33 static int show_index_info
= 0;
34 static int line_termination
= '\n';
35 static unsigned long p_context
= -1;
36 static const char apply_usage
[] =
37 "git-apply [--stat] [--numstat] [--summary] [--check] [--index] [--apply] [--no-add] [--index-info] [--allow-binary-replacement] [-z] [-pNUM] [-CNUM] [--whitespace=<nowarn|warn|error|error-all|strip>] <patch>...";
39 static enum whitespace_eol
{
44 } new_whitespace
= warn_on_whitespace
;
45 static int whitespace_error
= 0;
46 static int squelch_whitespace_errors
= 5;
47 static int applied_after_stripping
= 0;
48 static const char *patch_input_file
= NULL
;
50 static void parse_whitespace_option(const char *option
)
53 new_whitespace
= warn_on_whitespace
;
56 if (!strcmp(option
, "warn")) {
57 new_whitespace
= warn_on_whitespace
;
60 if (!strcmp(option
, "nowarn")) {
61 new_whitespace
= nowarn_whitespace
;
64 if (!strcmp(option
, "error")) {
65 new_whitespace
= error_on_whitespace
;
68 if (!strcmp(option
, "error-all")) {
69 new_whitespace
= error_on_whitespace
;
70 squelch_whitespace_errors
= 0;
73 if (!strcmp(option
, "strip")) {
74 new_whitespace
= strip_whitespace
;
77 die("unrecognized whitespace option '%s'", option
);
80 static void set_default_whitespace_mode(const char *whitespace_option
)
82 if (!whitespace_option
&& !apply_default_whitespace
) {
83 new_whitespace
= (apply
90 * For "diff-stat" like behaviour, we keep track of the biggest change
91 * we've seen, and the longest filename. That allows us to do simple
94 static int max_change
, max_len
;
97 * Various "current state", notably line numbers and what
98 * file (and how) we're patching right now.. The "is_xxxx"
99 * things are flags, where -1 means "don't know yet".
101 static int linenr
= 1;
104 unsigned long leading
, trailing
;
105 unsigned long oldpos
, oldlines
;
106 unsigned long newpos
, newlines
;
109 struct fragment
*next
;
113 char *new_name
, *old_name
, *def_name
;
114 unsigned int old_mode
, new_mode
;
115 int is_rename
, is_copy
, is_new
, is_delete
, is_binary
;
116 int lines_added
, lines_deleted
;
118 struct fragment
*fragments
;
120 unsigned long resultsize
;
121 char old_sha1_prefix
[41];
122 char new_sha1_prefix
[41];
126 #define CHUNKSIZE (8192)
129 static void *read_patch_file(int fd
, unsigned long *sizep
)
131 unsigned long size
= 0, alloc
= CHUNKSIZE
;
132 void *buffer
= xmalloc(alloc
);
135 int nr
= alloc
- size
;
138 buffer
= xrealloc(buffer
, alloc
);
141 nr
= xread(fd
, buffer
+ size
, nr
);
145 die("git-apply: read returned %s", strerror(errno
));
151 * Make sure that we have some slop in the buffer
152 * so that we can do speculative "memcmp" etc, and
153 * see to it that it is NUL-filled.
155 if (alloc
< size
+ SLOP
)
156 buffer
= xrealloc(buffer
, size
+ SLOP
);
157 memset(buffer
+ size
, 0, SLOP
);
161 static unsigned long linelen(const char *buffer
, unsigned long size
)
163 unsigned long len
= 0;
166 if (*buffer
++ == '\n')
172 static int is_dev_null(const char *str
)
174 return !memcmp("/dev/null", str
, 9) && isspace(str
[9]);
180 static int name_terminate(const char *name
, int namelen
, int c
, int terminate
)
182 if (c
== ' ' && !(terminate
& TERM_SPACE
))
184 if (c
== '\t' && !(terminate
& TERM_TAB
))
190 static char * find_name(const char *line
, char *def
, int p_value
, int terminate
)
193 const char *start
= line
;
197 /* Proposed "new-style" GNU patch/diff format; see
198 * http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2
200 name
= unquote_c_style(line
, NULL
);
204 cp
= strchr(name
, '/');
211 /* name can later be freed, so we need
212 * to memmove, not just return cp
214 memmove(name
, cp
, strlen(cp
) + 1);
231 if (name_terminate(start
, line
-start
, c
, terminate
))
235 if (c
== '/' && !--p_value
)
245 * Generally we prefer the shorter name, especially
246 * if the other one is just a variation of that with
247 * something else tacked on to the end (ie "file.orig"
251 int deflen
= strlen(def
);
252 if (deflen
< len
&& !strncmp(start
, def
, deflen
))
256 name
= xmalloc(len
+ 1);
257 memcpy(name
, start
, len
);
264 * Get the name etc info from the --/+++ lines of a traditional patch header
266 * NOTE! This hardcodes "-p1" behaviour in filename detection.
268 * FIXME! The end-of-filename heuristics are kind of screwy. For existing
269 * files, we can happily check the index for a match, but for creating a
270 * new file we should try to match whatever "patch" does. I have no idea.
272 static void parse_traditional_patch(const char *first
, const char *second
, struct patch
*patch
)
276 first
+= 4; // skip "--- "
277 second
+= 4; // skip "+++ "
278 if (is_dev_null(first
)) {
280 patch
->is_delete
= 0;
281 name
= find_name(second
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
282 patch
->new_name
= name
;
283 } else if (is_dev_null(second
)) {
285 patch
->is_delete
= 1;
286 name
= find_name(first
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
287 patch
->old_name
= name
;
289 name
= find_name(first
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
290 name
= find_name(second
, name
, p_value
, TERM_SPACE
| TERM_TAB
);
291 patch
->old_name
= patch
->new_name
= name
;
294 die("unable to find filename in patch at line %d", linenr
);
297 static int gitdiff_hdrend(const char *line
, struct patch
*patch
)
303 * We're anal about diff header consistency, to make
304 * sure that we don't end up having strange ambiguous
305 * patches floating around.
307 * As a result, gitdiff_{old|new}name() will check
308 * their names against any previous information, just
311 static char *gitdiff_verify_name(const char *line
, int isnull
, char *orig_name
, const char *oldnew
)
313 if (!orig_name
&& !isnull
)
314 return find_name(line
, NULL
, 1, 0);
323 die("git-apply: bad git-diff - expected /dev/null, got %s on line %d", name
, linenr
);
324 another
= find_name(line
, NULL
, 1, 0);
325 if (!another
|| memcmp(another
, name
, len
))
326 die("git-apply: bad git-diff - inconsistent %s filename on line %d", oldnew
, linenr
);
331 /* expect "/dev/null" */
332 if (memcmp("/dev/null", line
, 9) || line
[9] != '\n')
333 die("git-apply: bad git-diff - expected /dev/null on line %d", linenr
);
338 static int gitdiff_oldname(const char *line
, struct patch
*patch
)
340 patch
->old_name
= gitdiff_verify_name(line
, patch
->is_new
, patch
->old_name
, "old");
344 static int gitdiff_newname(const char *line
, struct patch
*patch
)
346 patch
->new_name
= gitdiff_verify_name(line
, patch
->is_delete
, patch
->new_name
, "new");
350 static int gitdiff_oldmode(const char *line
, struct patch
*patch
)
352 patch
->old_mode
= strtoul(line
, NULL
, 8);
356 static int gitdiff_newmode(const char *line
, struct patch
*patch
)
358 patch
->new_mode
= strtoul(line
, NULL
, 8);
362 static int gitdiff_delete(const char *line
, struct patch
*patch
)
364 patch
->is_delete
= 1;
365 patch
->old_name
= patch
->def_name
;
366 return gitdiff_oldmode(line
, patch
);
369 static int gitdiff_newfile(const char *line
, struct patch
*patch
)
372 patch
->new_name
= patch
->def_name
;
373 return gitdiff_newmode(line
, patch
);
376 static int gitdiff_copysrc(const char *line
, struct patch
*patch
)
379 patch
->old_name
= find_name(line
, NULL
, 0, 0);
383 static int gitdiff_copydst(const char *line
, struct patch
*patch
)
386 patch
->new_name
= find_name(line
, NULL
, 0, 0);
390 static int gitdiff_renamesrc(const char *line
, struct patch
*patch
)
392 patch
->is_rename
= 1;
393 patch
->old_name
= find_name(line
, NULL
, 0, 0);
397 static int gitdiff_renamedst(const char *line
, struct patch
*patch
)
399 patch
->is_rename
= 1;
400 patch
->new_name
= find_name(line
, NULL
, 0, 0);
404 static int gitdiff_similarity(const char *line
, struct patch
*patch
)
406 if ((patch
->score
= strtoul(line
, NULL
, 10)) == ULONG_MAX
)
411 static int gitdiff_dissimilarity(const char *line
, struct patch
*patch
)
413 if ((patch
->score
= strtoul(line
, NULL
, 10)) == ULONG_MAX
)
418 static int gitdiff_index(const char *line
, struct patch
*patch
)
420 /* index line is N hexadecimal, "..", N hexadecimal,
421 * and optional space with octal mode.
423 const char *ptr
, *eol
;
426 ptr
= strchr(line
, '.');
427 if (!ptr
|| ptr
[1] != '.' || 40 < ptr
- line
)
430 memcpy(patch
->old_sha1_prefix
, line
, len
);
431 patch
->old_sha1_prefix
[len
] = 0;
434 ptr
= strchr(line
, ' ');
435 eol
= strchr(line
, '\n');
437 if (!ptr
|| eol
< ptr
)
443 memcpy(patch
->new_sha1_prefix
, line
, len
);
444 patch
->new_sha1_prefix
[len
] = 0;
446 patch
->new_mode
= patch
->old_mode
= strtoul(ptr
+1, NULL
, 8);
451 * This is normal for a diff that doesn't change anything: we'll fall through
452 * into the next diff. Tell the parser to break out.
454 static int gitdiff_unrecognized(const char *line
, struct patch
*patch
)
459 static const char *stop_at_slash(const char *line
, int llen
)
463 for (i
= 0; i
< llen
; i
++) {
471 /* This is to extract the same name that appears on "diff --git"
472 * line. We do not find and return anything if it is a rename
473 * patch, and it is OK because we will find the name elsewhere.
474 * We need to reliably find name only when it is mode-change only,
475 * creation or deletion of an empty file. In any of these cases,
476 * both sides are the same name under a/ and b/ respectively.
478 static char *git_header_name(char *line
, int llen
)
482 const char *second
= NULL
;
484 line
+= strlen("diff --git ");
485 llen
-= strlen("diff --git ");
489 char *first
= unquote_c_style(line
, &second
);
493 /* advance to the first slash */
494 cp
= stop_at_slash(first
, strlen(first
));
495 if (!cp
|| cp
== first
) {
496 /* we do not accept absolute paths */
502 memmove(first
, cp
+1, len
+1); /* including NUL */
504 /* second points at one past closing dq of name.
505 * find the second name.
507 while ((second
< line
+ llen
) && isspace(*second
))
510 if (line
+ llen
<= second
)
511 goto free_first_and_fail
;
512 if (*second
== '"') {
513 char *sp
= unquote_c_style(second
, NULL
);
515 goto free_first_and_fail
;
516 cp
= stop_at_slash(sp
, strlen(sp
));
517 if (!cp
|| cp
== sp
) {
520 goto free_first_and_fail
;
522 /* They must match, otherwise ignore */
523 if (strcmp(cp
+1, first
))
524 goto free_both_and_fail
;
529 /* unquoted second */
530 cp
= stop_at_slash(second
, line
+ llen
- second
);
531 if (!cp
|| cp
== second
)
532 goto free_first_and_fail
;
534 if (line
+ llen
- cp
!= len
+ 1 ||
535 memcmp(first
, cp
, len
))
536 goto free_first_and_fail
;
540 /* unquoted first name */
541 name
= stop_at_slash(line
, llen
);
542 if (!name
|| name
== line
)
547 /* since the first name is unquoted, a dq if exists must be
548 * the beginning of the second name.
550 for (second
= name
; second
< line
+ llen
; second
++) {
551 if (*second
== '"') {
552 const char *cp
= second
;
554 char *sp
= unquote_c_style(second
, NULL
);
558 np
= stop_at_slash(sp
, strlen(sp
));
559 if (!np
|| np
== sp
) {
560 free_second_and_fail
:
566 if (len
< cp
- name
&&
567 !strncmp(np
, name
, len
) &&
568 isspace(name
[len
])) {
570 memmove(sp
, np
, len
+ 1);
573 goto free_second_and_fail
;
578 * Accept a name only if it shows up twice, exactly the same
581 for (len
= 0 ; ; len
++) {
598 if (second
[len
] == '\n' && !memcmp(name
, second
, len
)) {
599 char *ret
= xmalloc(len
+ 1);
600 memcpy(ret
, name
, len
);
609 /* Verify that we recognize the lines following a git header */
610 static int parse_git_header(char *line
, int len
, unsigned int size
, struct patch
*patch
)
612 unsigned long offset
;
614 /* A git diff has explicit new/delete information, so we don't guess */
616 patch
->is_delete
= 0;
619 * Some things may not have the old name in the
620 * rest of the headers anywhere (pure mode changes,
621 * or removing or adding empty files), so we get
622 * the default name from the header.
624 patch
->def_name
= git_header_name(line
, len
);
629 for (offset
= len
; size
> 0 ; offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
630 static const struct opentry
{
632 int (*fn
)(const char *, struct patch
*);
634 { "@@ -", gitdiff_hdrend
},
635 { "--- ", gitdiff_oldname
},
636 { "+++ ", gitdiff_newname
},
637 { "old mode ", gitdiff_oldmode
},
638 { "new mode ", gitdiff_newmode
},
639 { "deleted file mode ", gitdiff_delete
},
640 { "new file mode ", gitdiff_newfile
},
641 { "copy from ", gitdiff_copysrc
},
642 { "copy to ", gitdiff_copydst
},
643 { "rename old ", gitdiff_renamesrc
},
644 { "rename new ", gitdiff_renamedst
},
645 { "rename from ", gitdiff_renamesrc
},
646 { "rename to ", gitdiff_renamedst
},
647 { "similarity index ", gitdiff_similarity
},
648 { "dissimilarity index ", gitdiff_dissimilarity
},
649 { "index ", gitdiff_index
},
650 { "", gitdiff_unrecognized
},
654 len
= linelen(line
, size
);
655 if (!len
|| line
[len
-1] != '\n')
657 for (i
= 0; i
< ARRAY_SIZE(optable
); i
++) {
658 const struct opentry
*p
= optable
+ i
;
659 int oplen
= strlen(p
->str
);
660 if (len
< oplen
|| memcmp(p
->str
, line
, oplen
))
662 if (p
->fn(line
+ oplen
, patch
) < 0)
671 static int parse_num(const char *line
, unsigned long *p
)
677 *p
= strtoul(line
, &ptr
, 10);
681 static int parse_range(const char *line
, int len
, int offset
, const char *expect
,
682 unsigned long *p1
, unsigned long *p2
)
686 if (offset
< 0 || offset
>= len
)
691 digits
= parse_num(line
, p1
);
701 digits
= parse_num(line
+1, p2
);
713 if (memcmp(line
, expect
, ex
))
720 * Parse a unified diff fragment header of the
721 * form "@@ -a,b +c,d @@"
723 static int parse_fragment_header(char *line
, int len
, struct fragment
*fragment
)
727 if (!len
|| line
[len
-1] != '\n')
730 /* Figure out the number of lines in a fragment */
731 offset
= parse_range(line
, len
, 4, " +", &fragment
->oldpos
, &fragment
->oldlines
);
732 offset
= parse_range(line
, len
, offset
, " @@", &fragment
->newpos
, &fragment
->newlines
);
737 static int find_header(char *line
, unsigned long size
, int *hdrsize
, struct patch
*patch
)
739 unsigned long offset
, len
;
741 patch
->is_rename
= patch
->is_copy
= 0;
742 patch
->is_new
= patch
->is_delete
= -1;
743 patch
->old_mode
= patch
->new_mode
= 0;
744 patch
->old_name
= patch
->new_name
= NULL
;
745 for (offset
= 0; size
> 0; offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
746 unsigned long nextlen
;
748 len
= linelen(line
, size
);
752 /* Testing this early allows us to take a few shortcuts.. */
757 * Make sure we don't find any unconnected patch fragmants.
758 * That's a sign that we didn't find a header, and that a
759 * patch has become corrupted/broken up.
761 if (!memcmp("@@ -", line
, 4)) {
762 struct fragment dummy
;
763 if (parse_fragment_header(line
, len
, &dummy
) < 0)
765 error("patch fragment without header at line %d: %.*s", linenr
, (int)len
-1, line
);
772 * Git patch? It might not have a real patch, just a rename
773 * or mode change, so we handle that specially
775 if (!memcmp("diff --git ", line
, 11)) {
776 int git_hdr_len
= parse_git_header(line
, len
, size
, patch
);
777 if (git_hdr_len
<= len
)
779 if (!patch
->old_name
&& !patch
->new_name
) {
780 if (!patch
->def_name
)
781 die("git diff header lacks filename information (line %d)", linenr
);
782 patch
->old_name
= patch
->new_name
= patch
->def_name
;
784 *hdrsize
= git_hdr_len
;
788 /** --- followed by +++ ? */
789 if (memcmp("--- ", line
, 4) || memcmp("+++ ", line
+ len
, 4))
793 * We only accept unified patches, so we want it to
794 * at least have "@@ -a,b +c,d @@\n", which is 14 chars
797 nextlen
= linelen(line
+ len
, size
- len
);
798 if (size
< nextlen
+ 14 || memcmp("@@ -", line
+ len
+ nextlen
, 4))
801 /* Ok, we'll consider it a patch */
802 parse_traditional_patch(line
, line
+len
, patch
);
803 *hdrsize
= len
+ nextlen
;
811 * Parse a unified diff. Note that this really needs
812 * to parse each fragment separately, since the only
813 * way to know the difference between a "---" that is
814 * part of a patch, and a "---" that starts the next
815 * patch is to look at the line counts..
817 static int parse_fragment(char *line
, unsigned long size
, struct patch
*patch
, struct fragment
*fragment
)
820 int len
= linelen(line
, size
), offset
;
821 unsigned long oldlines
, newlines
;
822 unsigned long leading
, trailing
;
824 offset
= parse_fragment_header(line
, len
, fragment
);
827 oldlines
= fragment
->oldlines
;
828 newlines
= fragment
->newlines
;
832 if (patch
->is_new
< 0) {
833 patch
->is_new
= !oldlines
;
835 patch
->old_name
= NULL
;
837 if (patch
->is_delete
< 0) {
838 patch
->is_delete
= !newlines
;
840 patch
->new_name
= NULL
;
843 if (patch
->is_new
&& oldlines
)
844 return error("new file depends on old contents");
845 if (patch
->is_delete
!= !newlines
) {
847 return error("deleted file still has contents");
848 fprintf(stderr
, "** warning: file %s becomes empty but is not deleted\n", patch
->new_name
);
851 /* Parse the thing.. */
856 for (offset
= len
; size
> 0; offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
857 if (!oldlines
&& !newlines
)
859 len
= linelen(line
, size
);
860 if (!len
|| line
[len
-1] != '\n')
868 if (!deleted
&& !added
)
879 * We know len is at least two, since we have a '+' and
880 * we checked that the last character was a '\n' above.
881 * That is, an addition of an empty line would check
882 * the '+' here. Sneaky...
884 if ((new_whitespace
!= nowarn_whitespace
) &&
885 isspace(line
[len
-2])) {
887 if (squelch_whitespace_errors
&&
888 squelch_whitespace_errors
<
892 fprintf(stderr
, "Adds trailing whitespace.\n%s:%d:%.*s\n",
894 linenr
, len
-2, line
+1);
902 /* We allow "\ No newline at end of file". Depending
903 * on locale settings when the patch was produced we
904 * don't know what this line looks like. The only
905 * thing we do know is that it begins with "\ ".
906 * Checking for 12 is just for sanity check -- any
907 * l10n of "\ No newline..." is at least that long.
910 if (len
< 12 || memcmp(line
, "\\ ", 2))
915 if (oldlines
|| newlines
)
917 fragment
->leading
= leading
;
918 fragment
->trailing
= trailing
;
920 /* If a fragment ends with an incomplete line, we failed to include
921 * it in the above loop because we hit oldlines == newlines == 0
924 if (12 < size
&& !memcmp(line
, "\\ ", 2))
925 offset
+= linelen(line
, size
);
927 patch
->lines_added
+= added
;
928 patch
->lines_deleted
+= deleted
;
932 static int parse_single_patch(char *line
, unsigned long size
, struct patch
*patch
)
934 unsigned long offset
= 0;
935 struct fragment
**fragp
= &patch
->fragments
;
937 while (size
> 4 && !memcmp(line
, "@@ -", 4)) {
938 struct fragment
*fragment
;
941 fragment
= xcalloc(1, sizeof(*fragment
));
942 len
= parse_fragment(line
, size
, patch
, fragment
);
944 die("corrupt patch at line %d", linenr
);
946 fragment
->patch
= line
;
947 fragment
->size
= len
;
950 fragp
= &fragment
->next
;
959 static inline int metadata_changes(struct patch
*patch
)
961 return patch
->is_rename
> 0 ||
962 patch
->is_copy
> 0 ||
965 (patch
->old_mode
&& patch
->new_mode
&&
966 patch
->old_mode
!= patch
->new_mode
);
969 static int parse_chunk(char *buffer
, unsigned long size
, struct patch
*patch
)
971 int hdrsize
, patchsize
;
972 int offset
= find_header(buffer
, size
, &hdrsize
, patch
);
977 patchsize
= parse_single_patch(buffer
+ offset
+ hdrsize
, size
- offset
- hdrsize
, patch
);
980 static const char *binhdr
[] = {
986 int hd
= hdrsize
+ offset
;
987 unsigned long llen
= linelen(buffer
+ hd
, size
- hd
);
989 if (!memcmp(" differ\n", buffer
+ hd
+ llen
- 8, 8))
990 for (i
= 0; binhdr
[i
]; i
++) {
991 int len
= strlen(binhdr
[i
]);
992 if (len
< size
- hd
&&
993 !memcmp(binhdr
[i
], buffer
+ hd
, len
)) {
994 patch
->is_binary
= 1;
999 /* Empty patch cannot be applied if:
1000 * - it is a binary patch and we do not do binary_replace, or
1001 * - text patch without metadata change
1003 if ((apply
|| check
) &&
1005 ? !allow_binary_replacement
1006 : !metadata_changes(patch
)))
1007 die("patch with only garbage at line %d", linenr
);
1010 return offset
+ hdrsize
+ patchsize
;
1013 static const char pluses
[] = "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
1014 static const char minuses
[]= "----------------------------------------------------------------------";
1016 static void show_stats(struct patch
*patch
)
1018 const char *prefix
= "";
1019 char *name
= patch
->new_name
;
1021 int len
, max
, add
, del
, total
;
1024 name
= patch
->old_name
;
1026 if (0 < (len
= quote_c_style(name
, NULL
, NULL
, 0))) {
1027 qname
= xmalloc(len
+ 1);
1028 quote_c_style(name
, qname
, NULL
, 0);
1033 * "scale" the filename
1044 slash
= strchr(name
, '/');
1051 * scale the add/delete
1057 add
= patch
->lines_added
;
1058 del
= patch
->lines_deleted
;
1061 if (max_change
> 0) {
1062 total
= (total
* max
+ max_change
/ 2) / max_change
;
1063 add
= (add
* max
+ max_change
/ 2) / max_change
;
1066 if (patch
->is_binary
)
1067 printf(" %s%-*s | Bin\n", prefix
, len
, name
);
1069 printf(" %s%-*s |%5d %.*s%.*s\n", prefix
,
1070 len
, name
, patch
->lines_added
+ patch
->lines_deleted
,
1071 add
, pluses
, del
, minuses
);
1076 static int read_old_data(struct stat
*st
, const char *path
, void *buf
, unsigned long size
)
1081 switch (st
->st_mode
& S_IFMT
) {
1083 return readlink(path
, buf
, size
);
1085 fd
= open(path
, O_RDONLY
);
1087 return error("unable to open %s", path
);
1090 int ret
= xread(fd
, buf
+ got
, size
- got
);
1103 static int find_offset(const char *buf
, unsigned long size
, const char *fragment
, unsigned long fragsize
, int line
, int *lines
)
1106 unsigned long start
, backwards
, forwards
;
1108 if (fragsize
> size
)
1113 unsigned long offset
= 0;
1115 while (offset
+ fragsize
<= size
) {
1116 if (buf
[offset
++] == '\n') {
1124 /* Exact line number? */
1125 if (!memcmp(buf
+ start
, fragment
, fragsize
))
1129 * There's probably some smart way to do this, but I'll leave
1130 * that to the smart and beautiful people. I'm simple and stupid.
1134 for (i
= 0; ; i
++) {
1141 if (forwards
+ fragsize
> size
)
1147 } while (backwards
&& buf
[backwards
-1] != '\n');
1150 while (forwards
+ fragsize
<= size
) {
1151 if (buf
[forwards
++] == '\n')
1157 if (try + fragsize
> size
)
1159 if (memcmp(buf
+ try, fragment
, fragsize
))
1169 * We should start searching forward and backward.
1174 static void remove_first_line(const char **rbuf
, int *rsize
)
1176 const char *buf
= *rbuf
;
1178 unsigned long offset
;
1180 while (offset
<= size
) {
1181 if (buf
[offset
++] == '\n')
1184 *rsize
= size
- offset
;
1185 *rbuf
= buf
+ offset
;
1188 static void remove_last_line(const char **rbuf
, int *rsize
)
1190 const char *buf
= *rbuf
;
1192 unsigned long offset
;
1194 while (offset
> 0) {
1195 if (buf
[--offset
] == '\n')
1198 *rsize
= offset
+ 1;
1201 struct buffer_desc
{
1204 unsigned long alloc
;
1207 static int apply_line(char *output
, const char *patch
, int plen
)
1209 /* plen is number of bytes to be copied from patch,
1210 * starting at patch+1 (patch[0] is '+'). Typically
1211 * patch[plen] is '\n'.
1213 int add_nl_to_tail
= 0;
1214 if ((new_whitespace
== strip_whitespace
) &&
1215 1 < plen
&& isspace(patch
[plen
-1])) {
1216 if (patch
[plen
] == '\n')
1219 while (0 < plen
&& isspace(patch
[plen
]))
1221 applied_after_stripping
++;
1223 memcpy(output
, patch
+ 1, plen
);
1225 output
[plen
++] = '\n';
1229 static int apply_one_fragment(struct buffer_desc
*desc
, struct fragment
*frag
)
1231 char *buf
= desc
->buffer
;
1232 const char *patch
= frag
->patch
;
1233 int offset
, size
= frag
->size
;
1234 char *old
= xmalloc(size
);
1235 char *new = xmalloc(size
);
1236 const char *oldlines
, *newlines
;
1237 int oldsize
= 0, newsize
= 0;
1238 unsigned long leading
, trailing
;
1242 int len
= linelen(patch
, size
);
1249 * "plen" is how much of the line we should use for
1250 * the actual patch data. Normally we just remove the
1251 * first character on the line, but if the line is
1252 * followed by "\ No newline", then we also remove the
1253 * last one (which is the newline, of course).
1256 if (len
< size
&& patch
[len
] == '\\')
1261 memcpy(old
+ oldsize
, patch
+ 1, plen
);
1265 /* Fall-through for ' ' */
1267 if (*patch
!= '+' || !no_add
)
1268 newsize
+= apply_line(new + newsize
, patch
,
1271 case '@': case '\\':
1272 /* Ignore it, we already handled it */
1281 #ifdef NO_ACCURATE_DIFF
1282 if (oldsize
> 0 && old
[oldsize
- 1] == '\n' &&
1283 newsize
> 0 && new[newsize
- 1] == '\n') {
1291 leading
= frag
->leading
;
1292 trailing
= frag
->trailing
;
1296 offset
= find_offset(buf
, desc
->size
, oldlines
, oldsize
, pos
, &lines
);
1298 int diff
= newsize
- oldsize
;
1299 unsigned long size
= desc
->size
+ diff
;
1300 unsigned long alloc
= desc
->alloc
;
1302 /* Warn if it was necessary to reduce the number
1305 if ((leading
!= frag
->leading
) || (trailing
!= frag
->trailing
))
1306 fprintf(stderr
, "Context reduced to (%ld/%ld) to apply fragment at %d\n",
1307 leading
, trailing
, pos
+ lines
);
1310 alloc
= size
+ 8192;
1311 desc
->alloc
= alloc
;
1312 buf
= xrealloc(buf
, alloc
);
1316 memmove(buf
+ offset
+ newsize
, buf
+ offset
+ oldsize
, size
- offset
- newsize
);
1317 memcpy(buf
+ offset
, newlines
, newsize
);
1323 /* Am I at my context limits? */
1324 if ((leading
<= p_context
) && (trailing
<= p_context
))
1326 /* Reduce the number of context lines
1327 * Reduce both leading and trailing if they are equal
1328 * otherwise just reduce the larger context.
1330 if (leading
>= trailing
) {
1331 remove_first_line(&oldlines
, &oldsize
);
1332 remove_first_line(&newlines
, &newsize
);
1336 if (trailing
> leading
) {
1337 remove_last_line(&oldlines
, &oldsize
);
1338 remove_last_line(&newlines
, &newsize
);
1348 static int apply_fragments(struct buffer_desc
*desc
, struct patch
*patch
)
1350 struct fragment
*frag
= patch
->fragments
;
1351 const char *name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
1353 if (patch
->is_binary
) {
1354 unsigned char sha1
[20];
1356 if (!allow_binary_replacement
)
1357 return error("cannot apply binary patch to '%s' "
1358 "without --allow-binary-replacement",
1361 /* For safety, we require patch index line to contain
1362 * full 40-byte textual SHA1 for old and new, at least for now.
1364 if (strlen(patch
->old_sha1_prefix
) != 40 ||
1365 strlen(patch
->new_sha1_prefix
) != 40 ||
1366 get_sha1_hex(patch
->old_sha1_prefix
, sha1
) ||
1367 get_sha1_hex(patch
->new_sha1_prefix
, sha1
))
1368 return error("cannot apply binary patch to '%s' "
1369 "without full index line", name
);
1371 if (patch
->old_name
) {
1372 unsigned char hdr
[50];
1375 /* See if the old one matches what the patch
1378 write_sha1_file_prepare(desc
->buffer
, desc
->size
,
1379 blob_type
, sha1
, hdr
, &hdrlen
);
1380 if (strcmp(sha1_to_hex(sha1
), patch
->old_sha1_prefix
))
1381 return error("the patch applies to '%s' (%s), "
1382 "which does not match the "
1383 "current contents.",
1384 name
, sha1_to_hex(sha1
));
1387 /* Otherwise, the old one must be empty. */
1389 return error("the patch applies to an empty "
1390 "'%s' but it is not empty", name
);
1393 /* For now, we do not record post-image data in the patch,
1394 * and require the object already present in the recipient's
1399 desc
->alloc
= desc
->size
= 0;
1401 get_sha1_hex(patch
->new_sha1_prefix
, sha1
);
1403 if (memcmp(sha1
, null_sha1
, 20)) {
1407 desc
->buffer
= read_sha1_file(sha1
, type
, &size
);
1409 return error("the necessary postimage %s for "
1410 "'%s' does not exist",
1411 patch
->new_sha1_prefix
, name
);
1412 desc
->alloc
= desc
->size
= size
;
1419 if (apply_one_fragment(desc
, frag
) < 0)
1420 return error("patch failed: %s:%ld",
1421 name
, frag
->oldpos
);
1427 static int apply_data(struct patch
*patch
, struct stat
*st
)
1430 unsigned long size
, alloc
;
1431 struct buffer_desc desc
;
1436 if (patch
->old_name
) {
1438 alloc
= size
+ 8192;
1439 buf
= xmalloc(alloc
);
1440 if (read_old_data(st
, patch
->old_name
, buf
, alloc
) != size
)
1441 return error("read of %s failed", patch
->old_name
);
1447 if (apply_fragments(&desc
, patch
) < 0)
1449 patch
->result
= desc
.buffer
;
1450 patch
->resultsize
= desc
.size
;
1452 if (patch
->is_delete
&& patch
->resultsize
)
1453 return error("removal patch leaves file contents");
1458 static int check_patch(struct patch
*patch
)
1461 const char *old_name
= patch
->old_name
;
1462 const char *new_name
= patch
->new_name
;
1463 const char *name
= old_name
? old_name
: new_name
;
1467 int stat_ret
= lstat(old_name
, &st
);
1470 int pos
= cache_name_pos(old_name
, strlen(old_name
));
1472 return error("%s: does not exist in index",
1475 struct checkout costate
;
1476 if (errno
!= ENOENT
)
1477 return error("%s: %s", old_name
,
1480 costate
.base_dir
= "";
1481 costate
.base_dir_len
= 0;
1484 costate
.not_new
= 0;
1485 costate
.refresh_cache
= 1;
1486 if (checkout_entry(active_cache
[pos
],
1489 lstat(old_name
, &st
))
1493 changed
= ce_match_stat(active_cache
[pos
], &st
, 1);
1495 return error("%s: does not match index",
1498 else if (stat_ret
< 0)
1499 return error("%s: %s", old_name
, strerror(errno
));
1501 if (patch
->is_new
< 0)
1503 st
.st_mode
= ntohl(create_ce_mode(st
.st_mode
));
1504 if (!patch
->old_mode
)
1505 patch
->old_mode
= st
.st_mode
;
1506 if ((st
.st_mode
^ patch
->old_mode
) & S_IFMT
)
1507 return error("%s: wrong type", old_name
);
1508 if (st
.st_mode
!= patch
->old_mode
)
1509 fprintf(stderr
, "warning: %s has type %o, expected %o\n",
1510 old_name
, st
.st_mode
, patch
->old_mode
);
1513 if (new_name
&& (patch
->is_new
| patch
->is_rename
| patch
->is_copy
)) {
1514 if (check_index
&& cache_name_pos(new_name
, strlen(new_name
)) >= 0)
1515 return error("%s: already exists in index", new_name
);
1516 if (!lstat(new_name
, &st
))
1517 return error("%s: already exists in working directory", new_name
);
1518 if (errno
!= ENOENT
)
1519 return error("%s: %s", new_name
, strerror(errno
));
1520 if (!patch
->new_mode
) {
1522 patch
->new_mode
= S_IFREG
| 0644;
1524 patch
->new_mode
= patch
->old_mode
;
1528 if (new_name
&& old_name
) {
1529 int same
= !strcmp(old_name
, new_name
);
1530 if (!patch
->new_mode
)
1531 patch
->new_mode
= patch
->old_mode
;
1532 if ((patch
->old_mode
^ patch
->new_mode
) & S_IFMT
)
1533 return error("new mode (%o) of %s does not match old mode (%o)%s%s",
1534 patch
->new_mode
, new_name
, patch
->old_mode
,
1535 same
? "" : " of ", same
? "" : old_name
);
1538 if (apply_data(patch
, &st
) < 0)
1539 return error("%s: patch does not apply", name
);
1543 static int check_patch_list(struct patch
*patch
)
1547 for (;patch
; patch
= patch
->next
)
1548 error
|= check_patch(patch
);
1552 static inline int is_null_sha1(const unsigned char *sha1
)
1554 return !memcmp(sha1
, null_sha1
, 20);
1557 static void show_index_list(struct patch
*list
)
1559 struct patch
*patch
;
1561 /* Once we start supporting the reverse patch, it may be
1562 * worth showing the new sha1 prefix, but until then...
1564 for (patch
= list
; patch
; patch
= patch
->next
) {
1565 const unsigned char *sha1_ptr
;
1566 unsigned char sha1
[20];
1569 name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
1571 sha1_ptr
= null_sha1
;
1572 else if (get_sha1(patch
->old_sha1_prefix
, sha1
))
1573 die("sha1 information is lacking or useless (%s).",
1578 printf("%06o %s ",patch
->old_mode
, sha1_to_hex(sha1_ptr
));
1579 if (line_termination
&& quote_c_style(name
, NULL
, NULL
, 0))
1580 quote_c_style(name
, NULL
, stdout
, 0);
1582 fputs(name
, stdout
);
1583 putchar(line_termination
);
1587 static void stat_patch_list(struct patch
*patch
)
1589 int files
, adds
, dels
;
1591 for (files
= adds
= dels
= 0 ; patch
; patch
= patch
->next
) {
1593 adds
+= patch
->lines_added
;
1594 dels
+= patch
->lines_deleted
;
1598 printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files
, adds
, dels
);
1601 static void numstat_patch_list(struct patch
*patch
)
1603 for ( ; patch
; patch
= patch
->next
) {
1605 name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
1606 printf("%d\t%d\t", patch
->lines_added
, patch
->lines_deleted
);
1607 if (line_termination
&& quote_c_style(name
, NULL
, NULL
, 0))
1608 quote_c_style(name
, NULL
, stdout
, 0);
1610 fputs(name
, stdout
);
1615 static void show_file_mode_name(const char *newdelete
, unsigned int mode
, const char *name
)
1618 printf(" %s mode %06o %s\n", newdelete
, mode
, name
);
1620 printf(" %s %s\n", newdelete
, name
);
1623 static void show_mode_change(struct patch
*p
, int show_name
)
1625 if (p
->old_mode
&& p
->new_mode
&& p
->old_mode
!= p
->new_mode
) {
1627 printf(" mode change %06o => %06o %s\n",
1628 p
->old_mode
, p
->new_mode
, p
->new_name
);
1630 printf(" mode change %06o => %06o\n",
1631 p
->old_mode
, p
->new_mode
);
1635 static void show_rename_copy(struct patch
*p
)
1637 const char *renamecopy
= p
->is_rename
? "rename" : "copy";
1638 const char *old
, *new;
1640 /* Find common prefix */
1644 const char *slash_old
, *slash_new
;
1645 slash_old
= strchr(old
, '/');
1646 slash_new
= strchr(new, '/');
1649 slash_old
- old
!= slash_new
- new ||
1650 memcmp(old
, new, slash_new
- new))
1652 old
= slash_old
+ 1;
1653 new = slash_new
+ 1;
1655 /* p->old_name thru old is the common prefix, and old and new
1656 * through the end of names are renames
1658 if (old
!= p
->old_name
)
1659 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy
,
1660 (int)(old
- p
->old_name
), p
->old_name
,
1661 old
, new, p
->score
);
1663 printf(" %s %s => %s (%d%%)\n", renamecopy
,
1664 p
->old_name
, p
->new_name
, p
->score
);
1665 show_mode_change(p
, 0);
1668 static void summary_patch_list(struct patch
*patch
)
1672 for (p
= patch
; p
; p
= p
->next
) {
1674 show_file_mode_name("create", p
->new_mode
, p
->new_name
);
1675 else if (p
->is_delete
)
1676 show_file_mode_name("delete", p
->old_mode
, p
->old_name
);
1678 if (p
->is_rename
|| p
->is_copy
)
1679 show_rename_copy(p
);
1682 printf(" rewrite %s (%d%%)\n",
1683 p
->new_name
, p
->score
);
1684 show_mode_change(p
, 0);
1687 show_mode_change(p
, 1);
1693 static void patch_stats(struct patch
*patch
)
1695 int lines
= patch
->lines_added
+ patch
->lines_deleted
;
1697 if (lines
> max_change
)
1699 if (patch
->old_name
) {
1700 int len
= quote_c_style(patch
->old_name
, NULL
, NULL
, 0);
1702 len
= strlen(patch
->old_name
);
1706 if (patch
->new_name
) {
1707 int len
= quote_c_style(patch
->new_name
, NULL
, NULL
, 0);
1709 len
= strlen(patch
->new_name
);
1715 static void remove_file(struct patch
*patch
)
1718 if (remove_file_from_cache(patch
->old_name
) < 0)
1719 die("unable to remove %s from index", patch
->old_name
);
1721 unlink(patch
->old_name
);
1724 static void add_index_file(const char *path
, unsigned mode
, void *buf
, unsigned long size
)
1727 struct cache_entry
*ce
;
1728 int namelen
= strlen(path
);
1729 unsigned ce_size
= cache_entry_size(namelen
);
1734 ce
= xcalloc(1, ce_size
);
1735 memcpy(ce
->name
, path
, namelen
);
1736 ce
->ce_mode
= create_ce_mode(mode
);
1737 ce
->ce_flags
= htons(namelen
);
1738 if (lstat(path
, &st
) < 0)
1739 die("unable to stat newly created file %s", path
);
1740 fill_stat_cache_info(ce
, &st
);
1741 if (write_sha1_file(buf
, size
, blob_type
, ce
->sha1
) < 0)
1742 die("unable to create backing store for newly created file %s", path
);
1743 if (add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
) < 0)
1744 die("unable to add cache entry for %s", path
);
1747 static int try_create_file(const char *path
, unsigned int mode
, const char *buf
, unsigned long size
)
1752 return symlink(buf
, path
);
1753 fd
= open(path
, O_CREAT
| O_EXCL
| O_WRONLY
, (mode
& 0100) ? 0777 : 0666);
1757 int written
= xwrite(fd
, buf
, size
);
1759 die("writing file %s: %s", path
, strerror(errno
));
1761 die("out of space writing file %s", path
);
1766 die("closing file %s: %s", path
, strerror(errno
));
1771 * We optimistically assume that the directories exist,
1772 * which is true 99% of the time anyway. If they don't,
1773 * we create them and try again.
1775 static void create_one_file(char *path
, unsigned mode
, const char *buf
, unsigned long size
)
1777 if (!try_create_file(path
, mode
, buf
, size
))
1780 if (errno
== ENOENT
) {
1781 if (safe_create_leading_directories(path
))
1783 if (!try_create_file(path
, mode
, buf
, size
))
1787 if (errno
== EEXIST
) {
1788 unsigned int nr
= getpid();
1791 const char *newpath
;
1792 newpath
= mkpath("%s~%u", path
, nr
);
1793 if (!try_create_file(newpath
, mode
, buf
, size
)) {
1794 if (!rename(newpath
, path
))
1799 if (errno
!= EEXIST
)
1804 die("unable to write file %s mode %o", path
, mode
);
1807 static void create_file(struct patch
*patch
)
1809 char *path
= patch
->new_name
;
1810 unsigned mode
= patch
->new_mode
;
1811 unsigned long size
= patch
->resultsize
;
1812 char *buf
= patch
->result
;
1815 mode
= S_IFREG
| 0644;
1816 create_one_file(path
, mode
, buf
, size
);
1817 add_index_file(path
, mode
, buf
, size
);
1820 static void write_out_one_result(struct patch
*patch
)
1822 if (patch
->is_delete
> 0) {
1826 if (patch
->is_new
> 0 || patch
->is_copy
) {
1831 * Rename or modification boils down to the same
1832 * thing: remove the old, write the new
1838 static void write_out_results(struct patch
*list
, int skipped_patch
)
1840 if (!list
&& !skipped_patch
)
1844 write_out_one_result(list
);
1849 static struct cache_file cache_file
;
1851 static struct excludes
{
1852 struct excludes
*next
;
1856 static int use_patch(struct patch
*p
)
1858 const char *pathname
= p
->new_name
? p
->new_name
: p
->old_name
;
1859 struct excludes
*x
= excludes
;
1861 if (fnmatch(x
->path
, pathname
, 0) == 0)
1865 if (0 < prefix_length
) {
1866 int pathlen
= strlen(pathname
);
1867 if (pathlen
<= prefix_length
||
1868 memcmp(prefix
, pathname
, prefix_length
))
1874 static int apply_patch(int fd
, const char *filename
)
1877 unsigned long offset
, size
;
1878 char *buffer
= read_patch_file(fd
, &size
);
1879 struct patch
*list
= NULL
, **listp
= &list
;
1880 int skipped_patch
= 0;
1882 patch_input_file
= filename
;
1887 struct patch
*patch
;
1890 patch
= xcalloc(1, sizeof(*patch
));
1891 nr
= parse_chunk(buffer
+ offset
, size
, patch
);
1894 if (use_patch(patch
)) {
1897 listp
= &patch
->next
;
1899 /* perhaps free it a bit better? */
1908 if (whitespace_error
&& (new_whitespace
== error_on_whitespace
))
1911 write_index
= check_index
&& apply
;
1913 newfd
= hold_index_file_for_update(&cache_file
, get_index_file());
1915 if (read_cache() < 0)
1916 die("unable to read index file");
1919 if ((check
|| apply
) && check_patch_list(list
) < 0)
1923 write_out_results(list
, skipped_patch
);
1926 if (write_cache(newfd
, active_cache
, active_nr
) ||
1927 commit_index_file(&cache_file
))
1928 die("Unable to write new cachefile");
1931 if (show_index_info
)
1932 show_index_list(list
);
1935 stat_patch_list(list
);
1938 numstat_patch_list(list
);
1941 summary_patch_list(list
);
1947 static int git_apply_config(const char *var
, const char *value
)
1949 if (!strcmp(var
, "apply.whitespace")) {
1950 apply_default_whitespace
= strdup(value
);
1953 return git_default_config(var
, value
);
1957 int main(int argc
, char **argv
)
1961 const char *whitespace_option
= NULL
;
1963 for (i
= 1; i
< argc
; i
++) {
1964 const char *arg
= argv
[i
];
1968 if (!strcmp(arg
, "-")) {
1969 apply_patch(0, "<stdin>");
1973 if (!strncmp(arg
, "--exclude=", 10)) {
1974 struct excludes
*x
= xmalloc(sizeof(*x
));
1980 if (!strncmp(arg
, "-p", 2)) {
1981 p_value
= atoi(arg
+ 2);
1984 if (!strcmp(arg
, "--no-add")) {
1988 if (!strcmp(arg
, "--stat")) {
1993 if (!strcmp(arg
, "--allow-binary-replacement")) {
1994 allow_binary_replacement
= 1;
1997 if (!strcmp(arg
, "--numstat")) {
2002 if (!strcmp(arg
, "--summary")) {
2007 if (!strcmp(arg
, "--check")) {
2012 if (!strcmp(arg
, "--index")) {
2016 if (!strcmp(arg
, "--apply")) {
2020 if (!strcmp(arg
, "--index-info")) {
2022 show_index_info
= 1;
2025 if (!strcmp(arg
, "-z")) {
2026 line_termination
= 0;
2029 if (!strncmp(arg
, "-C", 2)) {
2030 p_context
= strtoul(arg
+ 2, &end
, 0);
2032 die("unrecognized context count '%s'", arg
+ 2);
2035 if (!strncmp(arg
, "--whitespace=", 13)) {
2036 whitespace_option
= arg
+ 13;
2037 parse_whitespace_option(arg
+ 13);
2041 if (check_index
&& prefix_length
< 0) {
2042 prefix
= setup_git_directory();
2043 prefix_length
= prefix
? strlen(prefix
) : 0;
2044 git_config(git_apply_config
);
2045 if (!whitespace_option
&& apply_default_whitespace
)
2046 parse_whitespace_option(apply_default_whitespace
);
2048 if (0 < prefix_length
)
2049 arg
= prefix_filename(prefix
, prefix_length
, arg
);
2051 fd
= open(arg
, O_RDONLY
);
2055 set_default_whitespace_mode(whitespace_option
);
2056 apply_patch(fd
, arg
);
2059 set_default_whitespace_mode(whitespace_option
);
2061 apply_patch(0, "<stdin>");
2062 if (whitespace_error
) {
2063 if (squelch_whitespace_errors
&&
2064 squelch_whitespace_errors
< whitespace_error
) {
2066 whitespace_error
- squelch_whitespace_errors
;
2067 fprintf(stderr
, "warning: squelched %d whitespace error%s\n",
2069 squelched
== 1 ? "" : "s");
2071 if (new_whitespace
== error_on_whitespace
)
2072 die("%d line%s add%s trailing whitespaces.",
2074 whitespace_error
== 1 ? "" : "s",
2075 whitespace_error
== 1 ? "s" : "");
2076 if (applied_after_stripping
)
2077 fprintf(stderr
, "warning: %d line%s applied after"
2078 " stripping trailing whitespaces.\n",
2079 applied_after_stripping
,
2080 applied_after_stripping
== 1 ? "" : "s");
2081 else if (whitespace_error
)
2082 fprintf(stderr
, "warning: %d line%s add%s trailing"
2085 whitespace_error
== 1 ? "" : "s",
2086 whitespace_error
== 1 ? "s" : "");