4 * Copyright (C) Linus Torvalds, 2005
6 * This applies patches on top of some (arbitrary) version of the SCM.
8 * NOTE! It does all its work in the index file, and only cares about
9 * the files in the working directory if you tell it to "merge" the
12 * Even when merging it always takes the source from the index, and
13 * uses the working tree as a "branch" for a 3-way merge.
19 // We default to the merge behaviour, since that's what most people would
22 // --check turns on checking that the working tree matches the
23 // files that are being modified, but doesn't apply the patch
24 // --stat does just a diffstat, and doesn't actually apply
25 // --show-files shows the directory changes
27 static int merge_patch
= 1;
28 static int check_index
= 0;
29 static int write_index
= 0;
30 static int diffstat
= 0;
31 static int summary
= 0;
34 static int show_files
= 0;
35 static const char apply_usage
[] =
36 "git-apply [--no-merge] [--stat] [--summary] [--check] [--index] [--apply] [--show-files] <patch>...";
39 * For "diff-stat" like behaviour, we keep track of the biggest change
40 * we've seen, and the longest filename. That allows us to do simple
43 static int max_change
, max_len
;
46 * Various "current state", notably line numbers and what
47 * file (and how) we're patching right now.. The "is_xxxx"
48 * things are flags, where -1 means "don't know yet".
50 static int linenr
= 1;
53 unsigned long oldpos
, oldlines
;
54 unsigned long newpos
, newlines
;
57 struct fragment
*next
;
61 char *new_name
, *old_name
, *def_name
;
62 unsigned int old_mode
, new_mode
;
63 int is_rename
, is_copy
, is_new
, is_delete
;
64 int lines_added
, lines_deleted
;
66 struct fragment
*fragments
;
68 unsigned long resultsize
;
72 #define CHUNKSIZE (8192)
75 static void *read_patch_file(int fd
, unsigned long *sizep
)
77 unsigned long size
= 0, alloc
= CHUNKSIZE
;
78 void *buffer
= xmalloc(alloc
);
81 int nr
= alloc
- size
;
84 buffer
= xrealloc(buffer
, alloc
);
87 nr
= read(fd
, buffer
+ size
, nr
);
93 die("git-apply: read returned %s", strerror(errno
));
100 * Make sure that we have some slop in the buffer
101 * so that we can do speculative "memcmp" etc, and
102 * see to it that it is NUL-filled.
104 if (alloc
< size
+ SLOP
)
105 buffer
= xrealloc(buffer
, size
+ SLOP
);
106 memset(buffer
+ size
, 0, SLOP
);
110 static unsigned long linelen(const char *buffer
, unsigned long size
)
112 unsigned long len
= 0;
115 if (*buffer
++ == '\n')
121 static int is_dev_null(const char *str
)
123 return !memcmp("/dev/null", str
, 9) && isspace(str
[9]);
129 static int name_terminate(const char *name
, int namelen
, int c
, int terminate
)
131 if (c
== ' ' && !(terminate
& TERM_SPACE
))
133 if (c
== '\t' && !(terminate
& TERM_TAB
))
139 static char * find_name(const char *line
, char *def
, int p_value
, int terminate
)
142 const char *start
= line
;
151 if (name_terminate(start
, line
-start
, c
, terminate
))
155 if (c
== '/' && !--p_value
)
165 * Generally we prefer the shorter name, especially
166 * if the other one is just a variation of that with
167 * something else tacked on to the end (ie "file.orig"
171 int deflen
= strlen(def
);
172 if (deflen
< len
&& !strncmp(start
, def
, deflen
))
176 name
= xmalloc(len
+ 1);
177 memcpy(name
, start
, len
);
184 * Get the name etc info from the --/+++ lines of a traditional patch header
186 * NOTE! This hardcodes "-p1" behaviour in filename detection.
188 * FIXME! The end-of-filename heuristics are kind of screwy. For existing
189 * files, we can happily check the index for a match, but for creating a
190 * new file we should try to match whatever "patch" does. I have no idea.
192 static void parse_traditional_patch(const char *first
, const char *second
, struct patch
*patch
)
197 first
+= 4; // skip "--- "
198 second
+= 4; // skip "+++ "
199 if (is_dev_null(first
)) {
201 patch
->is_delete
= 0;
202 name
= find_name(second
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
203 patch
->new_name
= name
;
204 } else if (is_dev_null(second
)) {
206 patch
->is_delete
= 1;
207 name
= find_name(first
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
208 patch
->old_name
= name
;
210 name
= find_name(first
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
211 name
= find_name(second
, name
, p_value
, TERM_SPACE
| TERM_TAB
);
212 patch
->old_name
= patch
->new_name
= name
;
215 die("unable to find filename in patch at line %d", linenr
);
218 static int gitdiff_hdrend(const char *line
, struct patch
*patch
)
224 * We're anal about diff header consistency, to make
225 * sure that we don't end up having strange ambiguous
226 * patches floating around.
228 * As a result, gitdiff_{old|new}name() will check
229 * their names against any previous information, just
232 static char *gitdiff_verify_name(const char *line
, int isnull
, char *orig_name
, const char *oldnew
)
237 if (!orig_name
&& !isnull
)
238 return find_name(line
, NULL
, 1, 0);
246 die("git-apply: bad git-diff - expected /dev/null, got %s on line %d", name
, linenr
);
259 if (memcmp(line
, name
, len
) || line
[len
] != '\n')
263 die("git-apply: bad git-diff - inconsistent %s filename on line %d", oldnew
, linenr
);
267 static int gitdiff_oldname(const char *line
, struct patch
*patch
)
269 patch
->old_name
= gitdiff_verify_name(line
, patch
->is_new
, patch
->old_name
, "old");
273 static int gitdiff_newname(const char *line
, struct patch
*patch
)
275 patch
->new_name
= gitdiff_verify_name(line
, patch
->is_delete
, patch
->new_name
, "new");
279 static int gitdiff_oldmode(const char *line
, struct patch
*patch
)
281 patch
->old_mode
= strtoul(line
, NULL
, 8);
285 static int gitdiff_newmode(const char *line
, struct patch
*patch
)
287 patch
->new_mode
= strtoul(line
, NULL
, 8);
291 static int gitdiff_delete(const char *line
, struct patch
*patch
)
293 patch
->is_delete
= 1;
294 patch
->old_name
= patch
->def_name
;
295 return gitdiff_oldmode(line
, patch
);
298 static int gitdiff_newfile(const char *line
, struct patch
*patch
)
301 patch
->new_name
= patch
->def_name
;
302 return gitdiff_newmode(line
, patch
);
305 static int gitdiff_copysrc(const char *line
, struct patch
*patch
)
308 patch
->old_name
= find_name(line
, NULL
, 0, 0);
312 static int gitdiff_copydst(const char *line
, struct patch
*patch
)
315 patch
->new_name
= find_name(line
, NULL
, 0, 0);
319 static int gitdiff_renamesrc(const char *line
, struct patch
*patch
)
321 patch
->is_rename
= 1;
322 patch
->old_name
= find_name(line
, NULL
, 0, 0);
326 static int gitdiff_renamedst(const char *line
, struct patch
*patch
)
328 patch
->is_rename
= 1;
329 patch
->new_name
= find_name(line
, NULL
, 0, 0);
333 static int gitdiff_similarity(const char *line
, struct patch
*patch
)
335 if ((patch
->score
= strtoul(line
, NULL
, 10)) == ULONG_MAX
)
340 static int gitdiff_dissimilarity(const char *line
, struct patch
*patch
)
342 if ((patch
->score
= strtoul(line
, NULL
, 10)) == ULONG_MAX
)
348 * This is normal for a diff that doesn't change anything: we'll fall through
349 * into the next diff. Tell the parser to break out.
351 static int gitdiff_unrecognized(const char *line
, struct patch
*patch
)
356 static char *git_header_name(char *line
)
374 * We don't accept absolute paths (/dev/null) as possibly valid
380 * Accept a name only if it shows up twice, exactly the same
383 for (len
= 0 ; ; len
++) {
400 if (second
[len
] == '\n' && !memcmp(name
, second
, len
)) {
401 char *ret
= xmalloc(len
+ 1);
402 memcpy(ret
, name
, len
);
411 /* Verify that we recognize the lines following a git header */
412 static int parse_git_header(char *line
, int len
, unsigned int size
, struct patch
*patch
)
414 unsigned long offset
;
416 /* A git diff has explicit new/delete information, so we don't guess */
418 patch
->is_delete
= 0;
421 * Some things may not have the old name in the
422 * rest of the headers anywhere (pure mode changes,
423 * or removing or adding empty files), so we get
424 * the default name from the header.
426 patch
->def_name
= git_header_name(line
+ strlen("diff --git "));
431 for (offset
= len
; size
> 0 ; offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
432 static const struct opentry
{
434 int (*fn
)(const char *, struct patch
*);
436 { "@@ -", gitdiff_hdrend
},
437 { "--- ", gitdiff_oldname
},
438 { "+++ ", gitdiff_newname
},
439 { "old mode ", gitdiff_oldmode
},
440 { "new mode ", gitdiff_newmode
},
441 { "deleted file mode ", gitdiff_delete
},
442 { "new file mode ", gitdiff_newfile
},
443 { "copy from ", gitdiff_copysrc
},
444 { "copy to ", gitdiff_copydst
},
445 { "rename old ", gitdiff_renamesrc
},
446 { "rename new ", gitdiff_renamedst
},
447 { "rename from ", gitdiff_renamesrc
},
448 { "rename to ", gitdiff_renamedst
},
449 { "similarity index ", gitdiff_similarity
},
450 { "dissimilarity index ", gitdiff_dissimilarity
},
451 { "", gitdiff_unrecognized
},
455 len
= linelen(line
, size
);
456 if (!len
|| line
[len
-1] != '\n')
458 for (i
= 0; i
< sizeof(optable
) / sizeof(optable
[0]); i
++) {
459 const struct opentry
*p
= optable
+ i
;
460 int oplen
= strlen(p
->str
);
461 if (len
< oplen
|| memcmp(p
->str
, line
, oplen
))
463 if (p
->fn(line
+ oplen
, patch
) < 0)
472 static int parse_num(const char *line
, unsigned long *p
)
478 *p
= strtoul(line
, &ptr
, 10);
482 static int parse_range(const char *line
, int len
, int offset
, const char *expect
,
483 unsigned long *p1
, unsigned long *p2
)
487 if (offset
< 0 || offset
>= len
)
492 digits
= parse_num(line
, p1
);
502 digits
= parse_num(line
+1, p2
);
514 if (memcmp(line
, expect
, ex
))
521 * Parse a unified diff fragment header of the
522 * form "@@ -a,b +c,d @@"
524 static int parse_fragment_header(char *line
, int len
, struct fragment
*fragment
)
528 if (!len
|| line
[len
-1] != '\n')
531 /* Figure out the number of lines in a fragment */
532 offset
= parse_range(line
, len
, 4, " +", &fragment
->oldpos
, &fragment
->oldlines
);
533 offset
= parse_range(line
, len
, offset
, " @@", &fragment
->newpos
, &fragment
->newlines
);
538 static int find_header(char *line
, unsigned long size
, int *hdrsize
, struct patch
*patch
)
540 unsigned long offset
, len
;
542 patch
->is_rename
= patch
->is_copy
= 0;
543 patch
->is_new
= patch
->is_delete
= -1;
544 patch
->old_mode
= patch
->new_mode
= 0;
545 patch
->old_name
= patch
->new_name
= NULL
;
546 for (offset
= 0; size
> 0; offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
547 unsigned long nextlen
;
549 len
= linelen(line
, size
);
553 /* Testing this early allows us to take a few shortcuts.. */
558 * Make sure we don't find any unconnected patch fragmants.
559 * That's a sign that we didn't find a header, and that a
560 * patch has become corrupted/broken up.
562 if (!memcmp("@@ -", line
, 4)) {
563 struct fragment dummy
;
564 if (parse_fragment_header(line
, len
, &dummy
) < 0)
566 error("patch fragment without header at line %d: %.*s", linenr
, (int)len
-1, line
);
573 * Git patch? It might not have a real patch, just a rename
574 * or mode change, so we handle that specially
576 if (!memcmp("diff --git ", line
, 11)) {
577 int git_hdr_len
= parse_git_header(line
, len
, size
, patch
);
578 if (git_hdr_len
<= len
)
580 if (!patch
->old_name
&& !patch
->new_name
) {
581 if (!patch
->def_name
)
582 die("git diff header lacks filename information (line %d)", linenr
);
583 patch
->old_name
= patch
->new_name
= patch
->def_name
;
585 *hdrsize
= git_hdr_len
;
589 /** --- followed by +++ ? */
590 if (memcmp("--- ", line
, 4) || memcmp("+++ ", line
+ len
, 4))
594 * We only accept unified patches, so we want it to
595 * at least have "@@ -a,b +c,d @@\n", which is 14 chars
598 nextlen
= linelen(line
+ len
, size
- len
);
599 if (size
< nextlen
+ 14 || memcmp("@@ -", line
+ len
+ nextlen
, 4))
602 /* Ok, we'll consider it a patch */
603 parse_traditional_patch(line
, line
+len
, patch
);
604 *hdrsize
= len
+ nextlen
;
612 * Parse a unified diff. Note that this really needs
613 * to parse each fragment separately, since the only
614 * way to know the difference between a "---" that is
615 * part of a patch, and a "---" that starts the next
616 * patch is to look at the line counts..
618 static int parse_fragment(char *line
, unsigned long size
, struct patch
*patch
, struct fragment
*fragment
)
621 int len
= linelen(line
, size
), offset
;
622 unsigned long oldlines
, newlines
;
624 offset
= parse_fragment_header(line
, len
, fragment
);
627 oldlines
= fragment
->oldlines
;
628 newlines
= fragment
->newlines
;
630 if (patch
->is_new
< 0) {
631 patch
->is_new
= !oldlines
;
633 patch
->old_name
= NULL
;
635 if (patch
->is_delete
< 0) {
636 patch
->is_delete
= !newlines
;
638 patch
->new_name
= NULL
;
641 if (patch
->is_new
!= !oldlines
)
642 return error("new file depends on old contents");
643 if (patch
->is_delete
!= !newlines
) {
645 return error("deleted file still has contents");
646 fprintf(stderr
, "** warning: file %s becomes empty but is not deleted\n", patch
->new_name
);
649 /* Parse the thing.. */
654 for (offset
= len
; size
> 0; offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
655 if (!oldlines
&& !newlines
)
657 len
= linelen(line
, size
);
658 if (!len
|| line
[len
-1] != '\n')
675 /* We allow "\ No newline at end of file" */
677 if (len
< 12 || memcmp(line
, "\\ No newline", 12))
682 /* If a fragment ends with an incomplete line, we failed to include
683 * it in the above loop because we hit oldlines == newlines == 0
686 if (12 < size
&& !memcmp(line
, "\\ No newline", 12))
687 offset
+= linelen(line
, size
);
689 patch
->lines_added
+= added
;
690 patch
->lines_deleted
+= deleted
;
694 static int parse_single_patch(char *line
, unsigned long size
, struct patch
*patch
)
696 unsigned long offset
= 0;
697 struct fragment
**fragp
= &patch
->fragments
;
699 while (size
> 4 && !memcmp(line
, "@@ -", 4)) {
700 struct fragment
*fragment
;
703 fragment
= xmalloc(sizeof(*fragment
));
704 memset(fragment
, 0, sizeof(*fragment
));
705 len
= parse_fragment(line
, size
, patch
, fragment
);
707 die("corrupt patch at line %d", linenr
);
709 fragment
->patch
= line
;
710 fragment
->size
= len
;
713 fragp
= &fragment
->next
;
722 static int parse_chunk(char *buffer
, unsigned long size
, struct patch
*patch
)
724 int hdrsize
, patchsize
;
725 int offset
= find_header(buffer
, size
, &hdrsize
, patch
);
730 patchsize
= parse_single_patch(buffer
+ offset
+ hdrsize
, size
- offset
- hdrsize
, patch
);
732 return offset
+ hdrsize
+ patchsize
;
735 static const char pluses
[] = "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
736 static const char minuses
[]= "----------------------------------------------------------------------";
738 static void show_stats(struct patch
*patch
)
740 const char *prefix
= "";
741 char *name
= patch
->new_name
;
742 int len
, max
, add
, del
, total
;
745 name
= patch
->old_name
;
748 * "scale" the filename
759 slash
= strchr(name
, '/');
766 * scale the add/delete
772 add
= patch
->lines_added
;
773 del
= patch
->lines_deleted
;
776 if (max_change
> 0) {
777 total
= (total
* max
+ max_change
/ 2) / max_change
;
778 add
= (add
* max
+ max_change
/ 2) / max_change
;
781 printf(" %s%-*s |%5d %.*s%.*s\n", prefix
,
782 len
, name
, patch
->lines_added
+ patch
->lines_deleted
,
783 add
, pluses
, del
, minuses
);
786 static int read_old_data(struct stat
*st
, const char *path
, void *buf
, unsigned long size
)
791 switch (st
->st_mode
& S_IFMT
) {
793 return readlink(path
, buf
, size
);
795 fd
= open(path
, O_RDONLY
);
797 return error("unable to open %s", path
);
800 int ret
= read(fd
, buf
+ got
, size
- got
);
818 static int find_offset(const char *buf
, unsigned long size
, const char *fragment
, unsigned long fragsize
, int line
)
821 unsigned long start
, backwards
, forwards
;
828 unsigned long offset
= 0;
830 while (offset
+ fragsize
<= size
) {
831 if (buf
[offset
++] == '\n') {
839 /* Exact line number? */
840 if (!memcmp(buf
+ start
, fragment
, fragsize
))
844 * There's probably some smart way to do this, but I'll leave
845 * that to the smart and beautiful people. I'm simple and stupid.
856 if (forwards
+ fragsize
> size
)
862 } while (backwards
&& buf
[backwards
-1] != '\n');
865 while (forwards
+ fragsize
<= size
) {
866 if (buf
[forwards
++] == '\n')
872 if (try + fragsize
> size
)
874 if (memcmp(buf
+ try, fragment
, fragsize
))
883 * We should start searching forward and backward.
894 static int apply_one_fragment(struct buffer_desc
*desc
, struct fragment
*frag
)
896 char *buf
= desc
->buffer
;
897 const char *patch
= frag
->patch
;
898 int offset
, size
= frag
->size
;
899 char *old
= xmalloc(size
);
900 char *new = xmalloc(size
);
901 int oldsize
= 0, newsize
= 0;
904 int len
= linelen(patch
, size
);
911 * "plen" is how much of the line we should use for
912 * the actual patch data. Normally we just remove the
913 * first character on the line, but if the line is
914 * followed by "\ No newline", then we also remove the
915 * last one (which is the newline, of course).
918 if (len
< size
&& patch
[len
] == '\\')
923 memcpy(old
+ oldsize
, patch
+ 1, plen
);
927 /* Fall-through for ' ' */
929 memcpy(new + newsize
, patch
+ 1, plen
);
933 /* Ignore it, we already handled it */
942 offset
= find_offset(buf
, desc
->size
, old
, oldsize
, frag
->newpos
);
944 int diff
= newsize
- oldsize
;
945 unsigned long size
= desc
->size
+ diff
;
946 unsigned long alloc
= desc
->alloc
;
951 buf
= xrealloc(buf
, alloc
);
955 memmove(buf
+ offset
+ newsize
, buf
+ offset
+ oldsize
, size
- offset
- newsize
);
956 memcpy(buf
+ offset
, new, newsize
);
965 static int apply_fragments(struct buffer_desc
*desc
, struct patch
*patch
)
967 struct fragment
*frag
= patch
->fragments
;
970 if (apply_one_fragment(desc
, frag
) < 0)
971 return error("patch failed: %s:%ld", patch
->old_name
, frag
->oldpos
);
977 static int apply_data(struct patch
*patch
, struct stat
*st
)
980 unsigned long size
, alloc
;
981 struct buffer_desc desc
;
986 if (patch
->old_name
) {
989 buf
= xmalloc(alloc
);
990 if (read_old_data(st
, patch
->old_name
, buf
, alloc
) != size
)
991 return error("read of %s failed", patch
->old_name
);
997 if (apply_fragments(&desc
, patch
) < 0)
999 patch
->result
= desc
.buffer
;
1000 patch
->resultsize
= desc
.size
;
1002 if (patch
->is_delete
&& patch
->resultsize
)
1003 return error("removal patch leaves file contents");
1008 static int check_patch(struct patch
*patch
)
1011 const char *old_name
= patch
->old_name
;
1012 const char *new_name
= patch
->new_name
;
1017 if (lstat(old_name
, &st
) < 0)
1018 return error("%s: %s", old_name
, strerror(errno
));
1020 int pos
= cache_name_pos(old_name
, strlen(old_name
));
1022 return error("%s: does not exist in index", old_name
);
1023 changed
= ce_match_stat(active_cache
[pos
], &st
);
1025 return error("%s: does not match index", old_name
);
1027 if (patch
->is_new
< 0)
1029 st
.st_mode
= ntohl(create_ce_mode(st
.st_mode
));
1030 if (!patch
->old_mode
)
1031 patch
->old_mode
= st
.st_mode
;
1032 if ((st
.st_mode
^ patch
->old_mode
) & S_IFMT
)
1033 return error("%s: wrong type", old_name
);
1034 if (st
.st_mode
!= patch
->old_mode
)
1035 fprintf(stderr
, "warning: %s has type %o, expected %o\n",
1036 old_name
, st
.st_mode
, patch
->old_mode
);
1039 if (new_name
&& (patch
->is_new
| patch
->is_rename
| patch
->is_copy
)) {
1040 if (check_index
&& cache_name_pos(new_name
, strlen(new_name
)) >= 0)
1041 return error("%s: already exists in index", new_name
);
1042 if (!lstat(new_name
, &st
))
1043 return error("%s: already exists in working directory", new_name
);
1044 if (errno
!= ENOENT
)
1045 return error("%s: %s", new_name
, strerror(errno
));
1046 if (!patch
->new_mode
)
1047 patch
->new_mode
= S_IFREG
| 0644;
1050 if (new_name
&& old_name
) {
1051 int same
= !strcmp(old_name
, new_name
);
1052 if (!patch
->new_mode
)
1053 patch
->new_mode
= patch
->old_mode
;
1054 if ((patch
->old_mode
^ patch
->new_mode
) & S_IFMT
)
1055 return error("new mode (%o) of %s does not match old mode (%o)%s%s",
1056 patch
->new_mode
, new_name
, patch
->old_mode
,
1057 same
? "" : " of ", same
? "" : old_name
);
1060 if (apply_data(patch
, &st
) < 0)
1061 return error("%s: patch does not apply", old_name
);
1065 static int check_patch_list(struct patch
*patch
)
1069 for (;patch
; patch
= patch
->next
)
1070 error
|= check_patch(patch
);
1074 static void show_file(int c
, unsigned int mode
, const char *name
)
1076 printf("%c %o %s\n", c
, mode
, name
);
1079 static void show_file_list(struct patch
*patch
)
1081 for (;patch
; patch
= patch
->next
) {
1082 if (patch
->is_rename
) {
1083 show_file('-', patch
->old_mode
, patch
->old_name
);
1084 show_file('+', patch
->new_mode
, patch
->new_name
);
1087 if (patch
->is_copy
|| patch
->is_new
) {
1088 show_file('+', patch
->new_mode
, patch
->new_name
);
1091 if (patch
->is_delete
) {
1092 show_file('-', patch
->old_mode
, patch
->old_name
);
1095 if (patch
->old_mode
&& patch
->new_mode
&& patch
->old_mode
!= patch
->new_mode
) {
1096 printf("M %o:%o %s\n", patch
->old_mode
, patch
->new_mode
, patch
->old_name
);
1099 printf("M %o %s\n", patch
->old_mode
, patch
->old_name
);
1103 static void stat_patch_list(struct patch
*patch
)
1105 int files
, adds
, dels
;
1107 for (files
= adds
= dels
= 0 ; patch
; patch
= patch
->next
) {
1109 adds
+= patch
->lines_added
;
1110 dels
+= patch
->lines_deleted
;
1114 printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files
, adds
, dels
);
1117 static void show_file_mode_name(const char *newdelete
, unsigned int mode
, const char *name
)
1120 printf(" %s mode %06o %s\n", newdelete
, mode
, name
);
1122 printf(" %s %s\n", newdelete
, name
);
1125 static void show_mode_change(struct patch
*p
, int show_name
)
1127 if (p
->old_mode
&& p
->new_mode
&& p
->old_mode
!= p
->new_mode
) {
1129 printf(" mode change %06o => %06o %s\n",
1130 p
->old_mode
, p
->new_mode
, p
->new_name
);
1132 printf(" mode change %06o => %06o\n",
1133 p
->old_mode
, p
->new_mode
);
1137 static void show_rename_copy(struct patch
*p
)
1139 const char *renamecopy
= p
->is_rename
? "rename" : "copy";
1140 const char *old
, *new;
1142 /* Find common prefix */
1146 const char *slash_old
, *slash_new
;
1147 slash_old
= strchr(old
, '/');
1148 slash_new
= strchr(new, '/');
1151 slash_old
- old
!= slash_new
- new ||
1152 memcmp(old
, new, slash_new
- new))
1154 old
= slash_old
+ 1;
1155 new = slash_new
+ 1;
1157 /* p->old_name thru old is the common prefix, and old and new
1158 * through the end of names are renames
1160 if (old
!= p
->old_name
)
1161 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy
,
1162 (int)(old
- p
->old_name
), p
->old_name
,
1163 old
, new, p
->score
);
1165 printf(" %s %s => %s (%d%%)\n", renamecopy
,
1166 p
->old_name
, p
->new_name
, p
->score
);
1167 show_mode_change(p
, 0);
1170 static void summary_patch_list(struct patch
*patch
)
1174 for (p
= patch
; p
; p
= p
->next
) {
1176 show_file_mode_name("create", p
->new_mode
, p
->new_name
);
1177 else if (p
->is_delete
)
1178 show_file_mode_name("delete", p
->old_mode
, p
->old_name
);
1180 if (p
->is_rename
|| p
->is_copy
)
1181 show_rename_copy(p
);
1184 printf(" rewrite %s (%d%%)\n",
1185 p
->new_name
, p
->score
);
1186 show_mode_change(p
, 0);
1189 show_mode_change(p
, 1);
1195 static void patch_stats(struct patch
*patch
)
1197 int lines
= patch
->lines_added
+ patch
->lines_deleted
;
1199 if (lines
> max_change
)
1201 if (patch
->old_name
) {
1202 int len
= strlen(patch
->old_name
);
1206 if (patch
->new_name
) {
1207 int len
= strlen(patch
->new_name
);
1213 static void remove_file(struct patch
*patch
)
1216 if (remove_file_from_cache(patch
->old_name
) < 0)
1217 die("unable to remove %s from index", patch
->old_name
);
1219 unlink(patch
->old_name
);
1222 static void add_index_file(const char *path
, unsigned mode
, void *buf
, unsigned long size
)
1225 struct cache_entry
*ce
;
1226 int namelen
= strlen(path
);
1227 unsigned ce_size
= cache_entry_size(namelen
);
1232 ce
= xmalloc(ce_size
);
1233 memset(ce
, 0, ce_size
);
1234 memcpy(ce
->name
, path
, namelen
);
1235 ce
->ce_mode
= create_ce_mode(mode
);
1236 ce
->ce_flags
= htons(namelen
);
1237 if (lstat(path
, &st
) < 0)
1238 die("unable to stat newly created file %s", path
);
1239 fill_stat_cache_info(ce
, &st
);
1240 if (write_sha1_file(buf
, size
, "blob", ce
->sha1
) < 0)
1241 die("unable to create backing store for newly created file %s", path
);
1242 if (add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
) < 0)
1243 die("unable to add cache entry for %s", path
);
1246 static void create_subdirectories(const char *path
)
1248 int len
= strlen(path
);
1249 char *buf
= xmalloc(len
+ 1);
1250 const char *slash
= path
;
1252 while ((slash
= strchr(slash
+1, '/')) != NULL
) {
1254 memcpy(buf
, path
, len
);
1256 if (mkdir(buf
, 0777) < 0) {
1257 if (errno
!= EEXIST
)
1264 static int try_create_file(const char *path
, unsigned int mode
, const char *buf
, unsigned long size
)
1269 return symlink(buf
, path
);
1270 fd
= open(path
, O_CREAT
| O_EXCL
| O_WRONLY
| O_TRUNC
, (mode
& 0100) ? 0777 : 0666);
1274 int written
= write(fd
, buf
, size
);
1276 if (errno
== EINTR
|| errno
== EAGAIN
)
1278 die("writing file %s: %s", path
, strerror(errno
));
1281 die("out of space writing file %s", path
);
1286 die("closing file %s: %s", path
, strerror(errno
));
1291 * We optimistically assume that the directories exist,
1292 * which is true 99% of the time anyway. If they don't,
1293 * we create them and try again.
1295 static void create_one_file(const char *path
, unsigned mode
, const char *buf
, unsigned long size
)
1297 if (!try_create_file(path
, mode
, buf
, size
))
1300 if (errno
== ENOENT
) {
1301 create_subdirectories(path
);
1302 if (!try_create_file(path
, mode
, buf
, size
))
1306 if (errno
== EEXIST
) {
1307 unsigned int nr
= getpid();
1310 const char *newpath
;
1311 newpath
= mkpath("%s~%u", path
, nr
);
1312 if (!try_create_file(newpath
, mode
, buf
, size
)) {
1313 if (!rename(newpath
, path
))
1318 if (errno
!= EEXIST
)
1322 die("unable to write file %s mode %o", path
, mode
);
1325 static void create_file(struct patch
*patch
)
1327 const char *path
= patch
->new_name
;
1328 unsigned mode
= patch
->new_mode
;
1329 unsigned long size
= patch
->resultsize
;
1330 char *buf
= patch
->result
;
1333 mode
= S_IFREG
| 0644;
1334 create_one_file(path
, mode
, buf
, size
);
1335 add_index_file(path
, mode
, buf
, size
);
1338 static void write_out_one_result(struct patch
*patch
)
1340 if (patch
->is_delete
> 0) {
1344 if (patch
->is_new
> 0 || patch
->is_copy
) {
1349 * Rename or modification boils down to the same
1350 * thing: remove the old, write the new
1356 static void write_out_results(struct patch
*list
, int skipped_patch
)
1358 if (!list
&& !skipped_patch
)
1362 write_out_one_result(list
);
1367 static struct cache_file cache_file
;
1369 static struct excludes
{
1370 struct excludes
*next
;
1374 static int use_patch(struct patch
*p
)
1376 const char *pathname
= p
->new_name
? : p
->old_name
;
1377 struct excludes
*x
= excludes
;
1379 if (fnmatch(x
->path
, pathname
, 0) == 0)
1386 static int apply_patch(int fd
)
1389 unsigned long offset
, size
;
1390 char *buffer
= read_patch_file(fd
, &size
);
1391 struct patch
*list
= NULL
, **listp
= &list
;
1392 int skipped_patch
= 0;
1398 struct patch
*patch
;
1401 patch
= xmalloc(sizeof(*patch
));
1402 memset(patch
, 0, sizeof(*patch
));
1403 nr
= parse_chunk(buffer
+ offset
, size
, patch
);
1406 if (use_patch(patch
)) {
1409 listp
= &patch
->next
;
1411 /* perhaps free it a bit better? */
1420 write_index
= check_index
&& apply
;
1422 newfd
= hold_index_file_for_update(&cache_file
, get_index_file());
1424 if (read_cache() < 0)
1425 die("unable to read index file");
1428 if ((check
|| apply
) && check_patch_list(list
) < 0)
1432 write_out_results(list
, skipped_patch
);
1435 if (write_cache(newfd
, active_cache
, active_nr
) ||
1436 commit_index_file(&cache_file
))
1437 die("Unable to write new cachefile");
1441 show_file_list(list
);
1444 stat_patch_list(list
);
1447 summary_patch_list(list
);
1453 int main(int argc
, char **argv
)
1458 for (i
= 1; i
< argc
; i
++) {
1459 const char *arg
= argv
[i
];
1462 if (!strcmp(arg
, "-")) {
1467 if (!strncmp(arg
, "--exclude=", 10)) {
1468 struct excludes
*x
= xmalloc(sizeof(*x
));
1474 /* NEEDSWORK: this does not do anything at this moment. */
1475 if (!strcmp(arg
, "--no-merge")) {
1479 if (!strcmp(arg
, "--stat")) {
1484 if (!strcmp(arg
, "--summary")) {
1489 if (!strcmp(arg
, "--check")) {
1494 if (!strcmp(arg
, "--index")) {
1498 if (!strcmp(arg
, "--apply")) {
1502 if (!strcmp(arg
, "--show-files")) {
1506 fd
= open(arg
, O_RDONLY
);