7 #include "run-command.h"
10 #include "string-list.h"
12 struct string_list config_name_for_path
;
13 struct string_list config_fetch_recurse_submodules_for_name
;
14 struct string_list config_ignore_for_name
;
15 static int config_fetch_recurse_submodules
;
17 static int add_submodule_odb(const char *path
)
19 struct strbuf objects_directory
= STRBUF_INIT
;
20 struct alternate_object_database
*alt_odb
;
24 strbuf_addf(&objects_directory
, "%s/.git", path
);
25 git_dir
= read_gitfile_gently(objects_directory
.buf
);
27 strbuf_reset(&objects_directory
);
28 strbuf_addstr(&objects_directory
, git_dir
);
30 strbuf_addstr(&objects_directory
, "/objects/");
31 if (!is_directory(objects_directory
.buf
)) {
35 /* avoid adding it twice */
36 for (alt_odb
= alt_odb_list
; alt_odb
; alt_odb
= alt_odb
->next
)
37 if (alt_odb
->name
- alt_odb
->base
== objects_directory
.len
&&
38 !strncmp(alt_odb
->base
, objects_directory
.buf
,
39 objects_directory
.len
))
42 alt_odb
= xmalloc(objects_directory
.len
+ 42 + sizeof(*alt_odb
));
43 alt_odb
->next
= alt_odb_list
;
44 strcpy(alt_odb
->base
, objects_directory
.buf
);
45 alt_odb
->name
= alt_odb
->base
+ objects_directory
.len
;
46 alt_odb
->name
[2] = '/';
47 alt_odb
->name
[40] = '\0';
48 alt_odb
->name
[41] = '\0';
49 alt_odb_list
= alt_odb
;
52 strbuf_release(&objects_directory
);
56 void set_diffopt_flags_from_submodule_config(struct diff_options
*diffopt
,
59 struct string_list_item
*path_option
, *ignore_option
;
60 path_option
= unsorted_string_list_lookup(&config_name_for_path
, path
);
62 ignore_option
= unsorted_string_list_lookup(&config_ignore_for_name
, path_option
->util
);
64 handle_ignore_submodules_arg(diffopt
, ignore_option
->util
);
68 int submodule_config(const char *var
, const char *value
, void *cb
)
70 if (!prefixcmp(var
, "submodule."))
71 return parse_submodule_config_option(var
, value
);
72 else if (!strcmp(var
, "fetch.recursesubmodules")) {
73 config_fetch_recurse_submodules
= git_config_bool(var
, value
);
79 void gitmodules_config(void)
81 const char *work_tree
= get_git_work_tree();
83 struct strbuf gitmodules_path
= STRBUF_INIT
;
84 strbuf_addstr(&gitmodules_path
, work_tree
);
85 strbuf_addstr(&gitmodules_path
, "/.gitmodules");
86 git_config_from_file(submodule_config
, gitmodules_path
.buf
, NULL
);
87 strbuf_release(&gitmodules_path
);
91 int parse_submodule_config_option(const char *var
, const char *value
)
94 struct string_list_item
*config
;
95 struct strbuf submodname
= STRBUF_INIT
;
97 var
+= 10; /* Skip "submodule." */
100 if ((len
> 5) && !strcmp(var
+ len
- 5, ".path")) {
101 strbuf_add(&submodname
, var
, len
- 5);
102 config
= unsorted_string_list_lookup(&config_name_for_path
, value
);
106 config
= string_list_append(&config_name_for_path
, xstrdup(value
));
107 config
->util
= strbuf_detach(&submodname
, NULL
);
108 strbuf_release(&submodname
);
109 } else if ((len
> 23) && !strcmp(var
+ len
- 23, ".fetchrecursesubmodules")) {
110 strbuf_add(&submodname
, var
, len
- 23);
111 config
= unsorted_string_list_lookup(&config_fetch_recurse_submodules_for_name
, submodname
.buf
);
113 config
= string_list_append(&config_fetch_recurse_submodules_for_name
,
114 strbuf_detach(&submodname
, NULL
));
115 config
->util
= git_config_bool(var
, value
) ? (void *)1 : NULL
;
116 strbuf_release(&submodname
);
117 } else if ((len
> 7) && !strcmp(var
+ len
- 7, ".ignore")) {
118 if (strcmp(value
, "untracked") && strcmp(value
, "dirty") &&
119 strcmp(value
, "all") && strcmp(value
, "none")) {
120 warning("Invalid parameter \"%s\" for config option \"submodule.%s.ignore\"", value
, var
);
124 strbuf_add(&submodname
, var
, len
- 7);
125 config
= unsorted_string_list_lookup(&config_ignore_for_name
, submodname
.buf
);
129 config
= string_list_append(&config_ignore_for_name
,
130 strbuf_detach(&submodname
, NULL
));
131 strbuf_release(&submodname
);
132 config
->util
= xstrdup(value
);
138 void handle_ignore_submodules_arg(struct diff_options
*diffopt
,
141 DIFF_OPT_CLR(diffopt
, IGNORE_SUBMODULES
);
142 DIFF_OPT_CLR(diffopt
, IGNORE_UNTRACKED_IN_SUBMODULES
);
143 DIFF_OPT_CLR(diffopt
, IGNORE_DIRTY_SUBMODULES
);
145 if (!strcmp(arg
, "all"))
146 DIFF_OPT_SET(diffopt
, IGNORE_SUBMODULES
);
147 else if (!strcmp(arg
, "untracked"))
148 DIFF_OPT_SET(diffopt
, IGNORE_UNTRACKED_IN_SUBMODULES
);
149 else if (!strcmp(arg
, "dirty"))
150 DIFF_OPT_SET(diffopt
, IGNORE_DIRTY_SUBMODULES
);
151 else if (strcmp(arg
, "none"))
152 die("bad --ignore-submodules argument: %s", arg
);
155 static int prepare_submodule_summary(struct rev_info
*rev
, const char *path
,
156 struct commit
*left
, struct commit
*right
,
157 int *fast_forward
, int *fast_backward
)
159 struct commit_list
*merge_bases
, *list
;
161 init_revisions(rev
, NULL
);
162 setup_revisions(0, NULL
, rev
, NULL
);
164 rev
->first_parent_only
= 1;
165 left
->object
.flags
|= SYMMETRIC_LEFT
;
166 add_pending_object(rev
, &left
->object
, path
);
167 add_pending_object(rev
, &right
->object
, path
);
168 merge_bases
= get_merge_bases(left
, right
, 1);
170 if (merge_bases
->item
== left
)
172 else if (merge_bases
->item
== right
)
175 for (list
= merge_bases
; list
; list
= list
->next
) {
176 list
->item
->object
.flags
|= UNINTERESTING
;
177 add_pending_object(rev
, &list
->item
->object
,
178 sha1_to_hex(list
->item
->object
.sha1
));
180 return prepare_revision_walk(rev
);
183 static void print_submodule_summary(struct rev_info
*rev
, FILE *f
,
184 const char *del
, const char *add
, const char *reset
)
186 static const char format
[] = " %m %s";
187 struct strbuf sb
= STRBUF_INIT
;
188 struct commit
*commit
;
190 while ((commit
= get_revision(rev
))) {
191 struct pretty_print_context ctx
= {0};
192 ctx
.date_mode
= rev
->date_mode
;
193 strbuf_setlen(&sb
, 0);
194 if (commit
->object
.flags
& SYMMETRIC_LEFT
) {
196 strbuf_addstr(&sb
, del
);
199 strbuf_addstr(&sb
, add
);
200 format_commit_message(commit
, format
, &sb
, &ctx
);
202 strbuf_addstr(&sb
, reset
);
203 strbuf_addch(&sb
, '\n');
204 fprintf(f
, "%s", sb
.buf
);
209 void show_submodule_summary(FILE *f
, const char *path
,
210 unsigned char one
[20], unsigned char two
[20],
211 unsigned dirty_submodule
,
212 const char *del
, const char *add
, const char *reset
)
215 struct commit
*left
= left
, *right
= right
;
216 const char *message
= NULL
;
217 struct strbuf sb
= STRBUF_INIT
;
218 int fast_forward
= 0, fast_backward
= 0;
220 if (is_null_sha1(two
))
221 message
= "(submodule deleted)";
222 else if (add_submodule_odb(path
))
223 message
= "(not checked out)";
224 else if (is_null_sha1(one
))
225 message
= "(new submodule)";
226 else if (!(left
= lookup_commit_reference(one
)) ||
227 !(right
= lookup_commit_reference(two
)))
228 message
= "(commits not present)";
231 prepare_submodule_summary(&rev
, path
, left
, right
,
232 &fast_forward
, &fast_backward
))
233 message
= "(revision walker failed)";
235 if (dirty_submodule
& DIRTY_SUBMODULE_UNTRACKED
)
236 fprintf(f
, "Submodule %s contains untracked content\n", path
);
237 if (dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
)
238 fprintf(f
, "Submodule %s contains modified content\n", path
);
240 if (!hashcmp(one
, two
)) {
245 strbuf_addf(&sb
, "Submodule %s %s..", path
,
246 find_unique_abbrev(one
, DEFAULT_ABBREV
));
247 if (!fast_backward
&& !fast_forward
)
248 strbuf_addch(&sb
, '.');
249 strbuf_addf(&sb
, "%s", find_unique_abbrev(two
, DEFAULT_ABBREV
));
251 strbuf_addf(&sb
, " %s\n", message
);
253 strbuf_addf(&sb
, "%s:\n", fast_backward
? " (rewind)" : "");
254 fwrite(sb
.buf
, sb
.len
, 1, f
);
257 print_submodule_summary(&rev
, f
, del
, add
, reset
);
258 clear_commit_marks(left
, ~0);
259 clear_commit_marks(right
, ~0);
265 void set_config_fetch_recurse_submodules(int value
)
267 config_fetch_recurse_submodules
= value
;
270 int fetch_populated_submodules(int num_options
, const char **options
,
271 const char *prefix
, int ignore_config
,
274 int i
, result
= 0, argc
= 0;
275 struct child_process cp
;
277 struct string_list_item
*name_for_path
;
278 const char *work_tree
= get_git_work_tree();
282 if (!the_index
.initialized
)
283 if (read_cache() < 0)
284 die("index file corrupt");
286 /* 4: "fetch" (options) "--submodule-prefix" prefix NULL */
287 argv
= xcalloc(num_options
+ 4, sizeof(const char *));
288 argv
[argc
++] = "fetch";
289 for (i
= 0; i
< num_options
; i
++)
290 argv
[argc
++] = options
[i
];
291 argv
[argc
++] = "--submodule-prefix";
293 memset(&cp
, 0, sizeof(cp
));
295 cp
.env
= local_repo_env
;
299 for (i
= 0; i
< active_nr
; i
++) {
300 struct strbuf submodule_path
= STRBUF_INIT
;
301 struct strbuf submodule_git_dir
= STRBUF_INIT
;
302 struct strbuf submodule_prefix
= STRBUF_INIT
;
303 struct cache_entry
*ce
= active_cache
[i
];
304 const char *git_dir
, *name
;
306 if (!S_ISGITLINK(ce
->ce_mode
))
310 name_for_path
= unsorted_string_list_lookup(&config_name_for_path
, ce
->name
);
312 name
= name_for_path
->util
;
314 if (!ignore_config
) {
315 struct string_list_item
*fetch_recurse_submodules_option
;
316 fetch_recurse_submodules_option
= unsorted_string_list_lookup(&config_fetch_recurse_submodules_for_name
, name
);
317 if (fetch_recurse_submodules_option
) {
318 if (!fetch_recurse_submodules_option
->util
)
321 if (!config_fetch_recurse_submodules
)
326 strbuf_addf(&submodule_path
, "%s/%s", work_tree
, ce
->name
);
327 strbuf_addf(&submodule_git_dir
, "%s/.git", submodule_path
.buf
);
328 strbuf_addf(&submodule_prefix
, "%s%s/", prefix
, ce
->name
);
329 git_dir
= read_gitfile_gently(submodule_git_dir
.buf
);
331 git_dir
= submodule_git_dir
.buf
;
332 if (is_directory(git_dir
)) {
334 printf("Fetching submodule %s%s\n", prefix
, ce
->name
);
335 cp
.dir
= submodule_path
.buf
;
336 argv
[argc
] = submodule_prefix
.buf
;
337 if (run_command(&cp
))
340 strbuf_release(&submodule_path
);
341 strbuf_release(&submodule_git_dir
);
342 strbuf_release(&submodule_prefix
);
348 unsigned is_submodule_modified(const char *path
, int ignore_untracked
)
351 struct child_process cp
;
352 const char *argv
[] = {
358 struct strbuf buf
= STRBUF_INIT
;
359 unsigned dirty_submodule
= 0;
360 const char *line
, *next_line
;
363 strbuf_addf(&buf
, "%s/.git", path
);
364 git_dir
= read_gitfile_gently(buf
.buf
);
367 if (!is_directory(git_dir
)) {
368 strbuf_release(&buf
);
369 /* The submodule is not checked out, so it is not modified */
375 if (ignore_untracked
)
378 memset(&cp
, 0, sizeof(cp
));
380 cp
.env
= local_repo_env
;
385 if (start_command(&cp
))
386 die("Could not run git status --porcelain");
388 len
= strbuf_read(&buf
, cp
.out
, 1024);
391 if ((line
[0] == '?') && (line
[1] == '?')) {
392 dirty_submodule
|= DIRTY_SUBMODULE_UNTRACKED
;
393 if (dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
)
396 dirty_submodule
|= DIRTY_SUBMODULE_MODIFIED
;
397 if (ignore_untracked
||
398 (dirty_submodule
& DIRTY_SUBMODULE_UNTRACKED
))
401 next_line
= strchr(line
, '\n');
405 len
-= (next_line
- line
);
410 if (finish_command(&cp
))
411 die("git status --porcelain failed");
413 strbuf_release(&buf
);
414 return dirty_submodule
;
417 static int find_first_merges(struct object_array
*result
, const char *path
,
418 struct commit
*a
, struct commit
*b
)
421 struct object_array merges
;
422 struct commit
*commit
;
423 int contains_another
;
425 char merged_revision
[42];
426 const char *rev_args
[] = { "rev-list", "--merges", "--ancestry-path",
427 "--all", merged_revision
, NULL
};
428 struct rev_info revs
;
429 struct setup_revision_opt rev_opts
;
431 memset(&merges
, 0, sizeof(merges
));
432 memset(result
, 0, sizeof(struct object_array
));
433 memset(&rev_opts
, 0, sizeof(rev_opts
));
435 /* get all revisions that merge commit a */
436 snprintf(merged_revision
, sizeof(merged_revision
), "^%s",
437 sha1_to_hex(a
->object
.sha1
));
438 init_revisions(&revs
, NULL
);
439 rev_opts
.submodule
= path
;
440 setup_revisions(sizeof(rev_args
)/sizeof(char *)-1, rev_args
, &revs
, &rev_opts
);
442 /* save all revisions from the above list that contain b */
443 if (prepare_revision_walk(&revs
))
444 die("revision walk setup failed");
445 while ((commit
= get_revision(&revs
)) != NULL
) {
446 struct object
*o
= &(commit
->object
);
447 if (in_merge_bases(b
, &commit
, 1))
448 add_object_array(o
, NULL
, &merges
);
451 /* Now we've got all merges that contain a and b. Prune all
452 * merges that contain another found merge and save them in
455 for (i
= 0; i
< merges
.nr
; i
++) {
456 struct commit
*m1
= (struct commit
*) merges
.objects
[i
].item
;
458 contains_another
= 0;
459 for (j
= 0; j
< merges
.nr
; j
++) {
460 struct commit
*m2
= (struct commit
*) merges
.objects
[j
].item
;
461 if (i
!= j
&& in_merge_bases(m2
, &m1
, 1)) {
462 contains_another
= 1;
467 if (!contains_another
)
468 add_object_array(merges
.objects
[i
].item
,
469 merges
.objects
[i
].name
, result
);
472 free(merges
.objects
);
476 static void print_commit(struct commit
*commit
)
478 struct strbuf sb
= STRBUF_INIT
;
479 struct pretty_print_context ctx
= {0};
480 ctx
.date_mode
= DATE_NORMAL
;
481 format_commit_message(commit
, " %h: %m %s", &sb
, &ctx
);
482 fprintf(stderr
, "%s\n", sb
.buf
);
486 #define MERGE_WARNING(path, msg) \
487 warning("Failed to merge submodule %s (%s)", path, msg);
489 int merge_submodule(unsigned char result
[20], const char *path
,
490 const unsigned char base
[20], const unsigned char a
[20],
491 const unsigned char b
[20])
493 struct commit
*commit_base
, *commit_a
, *commit_b
;
495 struct object_array merges
;
499 /* store a in result in case we fail */
502 /* we can not handle deletion conflicts */
503 if (is_null_sha1(base
))
510 if (add_submodule_odb(path
)) {
511 MERGE_WARNING(path
, "not checked out");
515 if (!(commit_base
= lookup_commit_reference(base
)) ||
516 !(commit_a
= lookup_commit_reference(a
)) ||
517 !(commit_b
= lookup_commit_reference(b
))) {
518 MERGE_WARNING(path
, "commits not present");
522 /* check whether both changes are forward */
523 if (!in_merge_bases(commit_base
, &commit_a
, 1) ||
524 !in_merge_bases(commit_base
, &commit_b
, 1)) {
525 MERGE_WARNING(path
, "commits don't follow merge-base");
529 /* Case #1: a is contained in b or vice versa */
530 if (in_merge_bases(commit_a
, &commit_b
, 1)) {
534 if (in_merge_bases(commit_b
, &commit_a
, 1)) {
540 * Case #2: There are one or more merges that contain a and b in
541 * the submodule. If there is only one, then present it as a
542 * suggestion to the user, but leave it marked unmerged so the
543 * user needs to confirm the resolution.
546 /* find commit which merges them */
547 parent_count
= find_first_merges(&merges
, path
, commit_a
, commit_b
);
548 switch (parent_count
) {
550 MERGE_WARNING(path
, "merge following commits not found");
554 MERGE_WARNING(path
, "not fast-forward");
555 fprintf(stderr
, "Found a possible merge resolution "
556 "for the submodule:\n");
557 print_commit((struct commit
*) merges
.objects
[0].item
);
559 "If this is correct simply add it to the index "
562 " git update-index --cacheinfo 160000 %s \"%s\"\n\n"
563 "which will accept this suggestion.\n",
564 sha1_to_hex(merges
.objects
[0].item
->sha1
), path
);
568 MERGE_WARNING(path
, "multiple merges found");
569 for (i
= 0; i
< merges
.nr
; i
++)
570 print_commit((struct commit
*) merges
.objects
[i
].item
);
573 free(merges
.objects
);