Brandon Williams | e724197 | 2017-12-12 11:53:52 -0800 | [diff] [blame] | 1 | |
Johannes Schindelin | 752c0c2 | 2009-10-19 14:38:32 +0200 | [diff] [blame] | 2 | #include "cache.h" |
Brandon Williams | 69aba53 | 2017-06-22 11:43:45 -0700 | [diff] [blame] | 3 | #include "repository.h" |
Brandon Williams | b2141fc | 2017-06-14 11:07:36 -0700 | [diff] [blame] | 4 | #include "config.h" |
Heiko Voigt | 851e18c | 2015-08-17 17:21:59 -0700 | [diff] [blame] | 5 | #include "submodule-config.h" |
Johannes Schindelin | 752c0c2 | 2009-10-19 14:38:32 +0200 | [diff] [blame] | 6 | #include "submodule.h" |
| 7 | #include "dir.h" |
| 8 | #include "diff.h" |
| 9 | #include "commit.h" |
| 10 | #include "revision.h" |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 11 | #include "run-command.h" |
Jens Lehmann | c7e1a73 | 2010-03-04 22:20:33 +0100 | [diff] [blame] | 12 | #include "diffcore.h" |
Heiko Voigt | 68d03e4 | 2010-07-07 15:39:13 +0200 | [diff] [blame] | 13 | #include "refs.h" |
Jens Lehmann | aee9c7d | 2010-08-06 00:39:25 +0200 | [diff] [blame] | 14 | #include "string-list.h" |
Jeff King | 6859de4 | 2011-09-12 15:56:52 -0400 | [diff] [blame] | 15 | #include "sha1-array.h" |
Jeff King | c1189ca | 2011-09-13 17:57:57 -0400 | [diff] [blame] | 16 | #include "argv-array.h" |
Jens Lehmann | 5fee995 | 2013-07-30 21:50:34 +0200 | [diff] [blame] | 17 | #include "blob.h" |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 18 | #include "thread-utils.h" |
Jeff King | 4638728 | 2016-04-28 09:38:20 -0400 | [diff] [blame] | 19 | #include "quote.h" |
Brandon Williams | 06bf4ad | 2017-04-05 10:47:19 -0700 | [diff] [blame] | 20 | #include "remote.h" |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 21 | #include "worktree.h" |
Stefan Beller | 046b482 | 2017-05-31 17:30:47 -0700 | [diff] [blame] | 22 | #include "parse-options.h" |
Stefan Beller | 0d4a132 | 2018-03-23 18:20:56 +0100 | [diff] [blame] | 23 | #include "object-store.h" |
Derrick Stolee | 6404355 | 2018-07-20 16:33:04 +0000 | [diff] [blame] | 24 | #include "commit-reach.h" |
Jens Lehmann | aee9c7d | 2010-08-06 00:39:25 +0200 | [diff] [blame] | 25 | |
Stefan Beller | d7a3803 | 2017-05-26 12:10:12 -0700 | [diff] [blame] | 26 | static int config_update_recurse_submodules = RECURSE_SUBMODULES_OFF; |
Jeff King | 6859de4 | 2011-09-12 15:56:52 -0400 | [diff] [blame] | 27 | static int initialized_fetch_ref_tips; |
brian m. carlson | 910650d | 2017-03-31 01:40:00 +0000 | [diff] [blame] | 28 | static struct oid_array ref_tips_before_fetch; |
| 29 | static struct oid_array ref_tips_after_fetch; |
Jeff King | 6859de4 | 2011-09-12 15:56:52 -0400 | [diff] [blame] | 30 | |
Jens Lehmann | d4e98b5 | 2011-05-14 18:26:58 +0200 | [diff] [blame] | 31 | /* |
Brandon Williams | 34e2ba0 | 2017-08-02 12:49:21 -0700 | [diff] [blame] | 32 | * Check if the .gitmodules file is unmerged. Parsing of the .gitmodules file |
| 33 | * will be disabled because we can't guess what might be configured in |
| 34 | * .gitmodules unless the user resolves the conflict. |
Jens Lehmann | d4e98b5 | 2011-05-14 18:26:58 +0200 | [diff] [blame] | 35 | */ |
Brandon Williams | 34e2ba0 | 2017-08-02 12:49:21 -0700 | [diff] [blame] | 36 | int is_gitmodules_unmerged(const struct index_state *istate) |
| 37 | { |
| 38 | int pos = index_name_pos(istate, GITMODULES_FILE, strlen(GITMODULES_FILE)); |
| 39 | if (pos < 0) { /* .gitmodules not found or isn't merged */ |
| 40 | pos = -1 - pos; |
| 41 | if (istate->cache_nr > pos) { /* there is a .gitmodules */ |
| 42 | const struct cache_entry *ce = istate->cache[pos]; |
| 43 | if (ce_namelen(ce) == strlen(GITMODULES_FILE) && |
| 44 | !strcmp(ce->name, GITMODULES_FILE)) |
| 45 | return 1; |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | return 0; |
| 50 | } |
Johannes Schindelin | 752c0c2 | 2009-10-19 14:38:32 +0200 | [diff] [blame] | 51 | |
Jens Lehmann | 5fee995 | 2013-07-30 21:50:34 +0200 | [diff] [blame] | 52 | /* |
Antonio Ospite | b5c259f | 2018-10-05 15:05:59 +0200 | [diff] [blame] | 53 | * Check if the .gitmodules file is safe to write. |
| 54 | * |
| 55 | * Writing to the .gitmodules file requires that the file exists in the |
| 56 | * working tree or, if it doesn't, that a brand new .gitmodules file is going |
| 57 | * to be created (i.e. it's neither in the index nor in the current branch). |
| 58 | * |
| 59 | * It is not safe to write to .gitmodules if it's not in the working tree but |
| 60 | * it is in the index or in the current branch, because writing new values |
| 61 | * (and staging them) would blindly overwrite ALL the old content. |
| 62 | */ |
| 63 | int is_writing_gitmodules_ok(void) |
| 64 | { |
| 65 | struct object_id oid; |
| 66 | return file_exists(GITMODULES_FILE) || |
| 67 | (get_oid(GITMODULES_INDEX, &oid) < 0 && get_oid(GITMODULES_HEAD, &oid) < 0); |
| 68 | } |
| 69 | |
| 70 | /* |
Brandon Williams | 91b8348 | 2017-08-02 12:49:20 -0700 | [diff] [blame] | 71 | * Check if the .gitmodules file has unstaged modifications. This must be |
| 72 | * checked before allowing modifications to the .gitmodules file with the |
| 73 | * intention to stage them later, because when continuing we would stage the |
| 74 | * modifications the user didn't stage herself too. That might change in a |
| 75 | * future version when we learn to stage the changes we do ourselves without |
| 76 | * staging any previous modifications. |
Jens Lehmann | 5fee995 | 2013-07-30 21:50:34 +0200 | [diff] [blame] | 77 | */ |
Brandon Williams | 7da9aba | 2017-12-12 11:53:51 -0800 | [diff] [blame] | 78 | int is_staging_gitmodules_ok(struct index_state *istate) |
Jens Lehmann | 5fee995 | 2013-07-30 21:50:34 +0200 | [diff] [blame] | 79 | { |
Brandon Williams | 91b8348 | 2017-08-02 12:49:20 -0700 | [diff] [blame] | 80 | int pos = index_name_pos(istate, GITMODULES_FILE, strlen(GITMODULES_FILE)); |
| 81 | |
| 82 | if ((pos >= 0) && (pos < istate->cache_nr)) { |
| 83 | struct stat st; |
| 84 | if (lstat(GITMODULES_FILE, &st) == 0 && |
Ben Peart | 43f1180 | 2018-09-10 16:29:29 +0000 | [diff] [blame] | 85 | ie_match_stat(istate, istate->cache[pos], &st, 0) & DATA_CHANGED) |
Brandon Williams | 91b8348 | 2017-08-02 12:49:20 -0700 | [diff] [blame] | 86 | return 0; |
| 87 | } |
| 88 | |
| 89 | return 1; |
Jens Lehmann | 5fee995 | 2013-07-30 21:50:34 +0200 | [diff] [blame] | 90 | } |
| 91 | |
Nguyễn Thái Ngọc Duy | 2e2d404 | 2017-08-23 19:36:57 +0700 | [diff] [blame] | 92 | static int for_each_remote_ref_submodule(const char *submodule, |
| 93 | each_ref_fn fn, void *cb_data) |
| 94 | { |
| 95 | return refs_for_each_remote_ref(get_submodule_ref_store(submodule), |
| 96 | fn, cb_data); |
| 97 | } |
| 98 | |
Jens Lehmann | 0656781 | 2013-08-06 21:15:11 +0200 | [diff] [blame] | 99 | /* |
| 100 | * Try to update the "path" entry in the "submodule.<name>" section of the |
| 101 | * .gitmodules file. Return 0 only if a .gitmodules file was found, a section |
| 102 | * with the correct path=<oldpath> setting was found and we could update it. |
| 103 | */ |
| 104 | int update_path_in_gitmodules(const char *oldpath, const char *newpath) |
| 105 | { |
| 106 | struct strbuf entry = STRBUF_INIT; |
Heiko Voigt | 851e18c | 2015-08-17 17:21:59 -0700 | [diff] [blame] | 107 | const struct submodule *submodule; |
Antonio Ospite | 45f5ef3 | 2018-10-05 15:05:53 +0200 | [diff] [blame] | 108 | int ret; |
Jens Lehmann | 0656781 | 2013-08-06 21:15:11 +0200 | [diff] [blame] | 109 | |
Brandon Williams | 4c0eeaf | 2017-08-02 12:49:16 -0700 | [diff] [blame] | 110 | if (!file_exists(GITMODULES_FILE)) /* Do nothing without .gitmodules */ |
Jens Lehmann | 0656781 | 2013-08-06 21:15:11 +0200 | [diff] [blame] | 111 | return -1; |
| 112 | |
Nguyễn Thái Ngọc Duy | 68f08b4 | 2018-08-13 18:14:31 +0200 | [diff] [blame] | 113 | if (is_gitmodules_unmerged(the_repository->index)) |
Jens Lehmann | 0656781 | 2013-08-06 21:15:11 +0200 | [diff] [blame] | 114 | die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first")); |
| 115 | |
Stefan Beller | 3b8fb39 | 2018-03-28 15:35:29 -0700 | [diff] [blame] | 116 | submodule = submodule_from_path(the_repository, &null_oid, oldpath); |
Heiko Voigt | 851e18c | 2015-08-17 17:21:59 -0700 | [diff] [blame] | 117 | if (!submodule || !submodule->name) { |
Jens Lehmann | 0656781 | 2013-08-06 21:15:11 +0200 | [diff] [blame] | 118 | warning(_("Could not find section in .gitmodules where path=%s"), oldpath); |
| 119 | return -1; |
| 120 | } |
| 121 | strbuf_addstr(&entry, "submodule."); |
Heiko Voigt | 851e18c | 2015-08-17 17:21:59 -0700 | [diff] [blame] | 122 | strbuf_addstr(&entry, submodule->name); |
Jens Lehmann | 0656781 | 2013-08-06 21:15:11 +0200 | [diff] [blame] | 123 | strbuf_addstr(&entry, ".path"); |
Antonio Ospite | 45f5ef3 | 2018-10-05 15:05:53 +0200 | [diff] [blame] | 124 | ret = config_set_in_gitmodules_file_gently(entry.buf, newpath); |
Jens Lehmann | 0656781 | 2013-08-06 21:15:11 +0200 | [diff] [blame] | 125 | strbuf_release(&entry); |
Antonio Ospite | 45f5ef3 | 2018-10-05 15:05:53 +0200 | [diff] [blame] | 126 | return ret; |
Jens Lehmann | 0656781 | 2013-08-06 21:15:11 +0200 | [diff] [blame] | 127 | } |
| 128 | |
Jens Lehmann | 95c1641 | 2013-08-06 21:15:25 +0200 | [diff] [blame] | 129 | /* |
| 130 | * Try to remove the "submodule.<name>" section from .gitmodules where the given |
| 131 | * path is configured. Return 0 only if a .gitmodules file was found, a section |
| 132 | * with the correct path=<path> setting was found and we could remove it. |
| 133 | */ |
| 134 | int remove_path_from_gitmodules(const char *path) |
| 135 | { |
| 136 | struct strbuf sect = STRBUF_INIT; |
Heiko Voigt | 851e18c | 2015-08-17 17:21:59 -0700 | [diff] [blame] | 137 | const struct submodule *submodule; |
Jens Lehmann | 95c1641 | 2013-08-06 21:15:25 +0200 | [diff] [blame] | 138 | |
Brandon Williams | 4c0eeaf | 2017-08-02 12:49:16 -0700 | [diff] [blame] | 139 | if (!file_exists(GITMODULES_FILE)) /* Do nothing without .gitmodules */ |
Jens Lehmann | 95c1641 | 2013-08-06 21:15:25 +0200 | [diff] [blame] | 140 | return -1; |
| 141 | |
Nguyễn Thái Ngọc Duy | 68f08b4 | 2018-08-13 18:14:31 +0200 | [diff] [blame] | 142 | if (is_gitmodules_unmerged(the_repository->index)) |
Jens Lehmann | 95c1641 | 2013-08-06 21:15:25 +0200 | [diff] [blame] | 143 | die(_("Cannot change unmerged .gitmodules, resolve merge conflicts first")); |
| 144 | |
Stefan Beller | 3b8fb39 | 2018-03-28 15:35:29 -0700 | [diff] [blame] | 145 | submodule = submodule_from_path(the_repository, &null_oid, path); |
Heiko Voigt | 851e18c | 2015-08-17 17:21:59 -0700 | [diff] [blame] | 146 | if (!submodule || !submodule->name) { |
Jens Lehmann | 95c1641 | 2013-08-06 21:15:25 +0200 | [diff] [blame] | 147 | warning(_("Could not find section in .gitmodules where path=%s"), path); |
| 148 | return -1; |
| 149 | } |
| 150 | strbuf_addstr(§, "submodule."); |
Heiko Voigt | 851e18c | 2015-08-17 17:21:59 -0700 | [diff] [blame] | 151 | strbuf_addstr(§, submodule->name); |
Brandon Williams | 4c0eeaf | 2017-08-02 12:49:16 -0700 | [diff] [blame] | 152 | if (git_config_rename_section_in_file(GITMODULES_FILE, sect.buf, NULL) < 0) { |
Jens Lehmann | 95c1641 | 2013-08-06 21:15:25 +0200 | [diff] [blame] | 153 | /* Maybe the user already did that, don't error out here */ |
| 154 | warning(_("Could not remove .gitmodules entry for %s"), path); |
| 155 | strbuf_release(§); |
| 156 | return -1; |
| 157 | } |
| 158 | strbuf_release(§); |
| 159 | return 0; |
| 160 | } |
| 161 | |
Brandon Williams | 3b8317a | 2017-12-12 11:53:50 -0800 | [diff] [blame] | 162 | void stage_updated_gitmodules(struct index_state *istate) |
Jens Lehmann | 5fee995 | 2013-07-30 21:50:34 +0200 | [diff] [blame] | 163 | { |
Brandon Williams | 3b8317a | 2017-12-12 11:53:50 -0800 | [diff] [blame] | 164 | if (add_file_to_index(istate, GITMODULES_FILE, 0)) |
Jens Lehmann | 5fee995 | 2013-07-30 21:50:34 +0200 | [diff] [blame] | 165 | die(_("staging updated .gitmodules failed")); |
| 166 | } |
| 167 | |
Stefan Beller | 18cfc08 | 2018-05-15 13:00:28 -0700 | [diff] [blame] | 168 | /* TODO: remove this function, use repo_submodule_init instead. */ |
| 169 | int add_submodule_odb(const char *path) |
Johannes Schindelin | 752c0c2 | 2009-10-19 14:38:32 +0200 | [diff] [blame] | 170 | { |
| 171 | struct strbuf objects_directory = STRBUF_INIT; |
Jens Lehmann | de7a796 | 2010-01-31 17:43:49 +0100 | [diff] [blame] | 172 | int ret = 0; |
Johannes Schindelin | 752c0c2 | 2009-10-19 14:38:32 +0200 | [diff] [blame] | 173 | |
Jacob Keller | 99b43a6 | 2016-08-31 16:27:22 -0700 | [diff] [blame] | 174 | ret = strbuf_git_path_submodule(&objects_directory, path, "objects/"); |
| 175 | if (ret) |
| 176 | goto done; |
Jens Lehmann | de7a796 | 2010-01-31 17:43:49 +0100 | [diff] [blame] | 177 | if (!is_directory(objects_directory.buf)) { |
| 178 | ret = -1; |
| 179 | goto done; |
| 180 | } |
Jeff King | a5b34d2 | 2016-10-03 16:35:03 -0400 | [diff] [blame] | 181 | add_to_alternates_memory(objects_directory.buf); |
Jens Lehmann | de7a796 | 2010-01-31 17:43:49 +0100 | [diff] [blame] | 182 | done: |
| 183 | strbuf_release(&objects_directory); |
| 184 | return ret; |
Johannes Schindelin | 752c0c2 | 2009-10-19 14:38:32 +0200 | [diff] [blame] | 185 | } |
| 186 | |
Jens Lehmann | aee9c7d | 2010-08-06 00:39:25 +0200 | [diff] [blame] | 187 | void set_diffopt_flags_from_submodule_config(struct diff_options *diffopt, |
| 188 | const char *path) |
| 189 | { |
Stefan Beller | 3b8fb39 | 2018-03-28 15:35:29 -0700 | [diff] [blame] | 190 | const struct submodule *submodule = submodule_from_path(the_repository, |
| 191 | &null_oid, path); |
Heiko Voigt | 851e18c | 2015-08-17 17:21:59 -0700 | [diff] [blame] | 192 | if (submodule) { |
Brandon Williams | fdfa9e9 | 2017-08-03 11:19:52 -0700 | [diff] [blame] | 193 | const char *ignore; |
| 194 | char *key; |
| 195 | |
| 196 | key = xstrfmt("submodule.%s.ignore", submodule->name); |
| 197 | if (repo_config_get_string_const(the_repository, key, &ignore)) |
| 198 | ignore = submodule->ignore; |
| 199 | free(key); |
| 200 | |
| 201 | if (ignore) |
| 202 | handle_ignore_submodules_arg(diffopt, ignore); |
Nguyễn Thái Ngọc Duy | 68f08b4 | 2018-08-13 18:14:31 +0200 | [diff] [blame] | 203 | else if (is_gitmodules_unmerged(the_repository->index)) |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 204 | diffopt->flags.ignore_submodules = 1; |
Jens Lehmann | aee9c7d | 2010-08-06 00:39:25 +0200 | [diff] [blame] | 205 | } |
| 206 | } |
| 207 | |
Stefan Beller | 046b482 | 2017-05-31 17:30:47 -0700 | [diff] [blame] | 208 | /* Cheap function that only determines if we're interested in submodules at all */ |
| 209 | int git_default_submodule_config(const char *var, const char *value, void *cb) |
| 210 | { |
| 211 | if (!strcmp(var, "submodule.recurse")) { |
| 212 | int v = git_config_bool(var, value) ? |
| 213 | RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF; |
| 214 | config_update_recurse_submodules = v; |
| 215 | } |
| 216 | return 0; |
Stefan Beller | 1d789d0 | 2017-05-26 12:10:13 -0700 | [diff] [blame] | 217 | } |
| 218 | |
Stefan Beller | d7a3803 | 2017-05-26 12:10:12 -0700 | [diff] [blame] | 219 | int option_parse_recurse_submodules_worktree_updater(const struct option *opt, |
| 220 | const char *arg, int unset) |
| 221 | { |
| 222 | if (unset) { |
| 223 | config_update_recurse_submodules = RECURSE_SUBMODULES_OFF; |
| 224 | return 0; |
| 225 | } |
| 226 | if (arg) |
| 227 | config_update_recurse_submodules = |
| 228 | parse_update_recurse_submodules_arg(opt->long_name, |
| 229 | arg); |
| 230 | else |
| 231 | config_update_recurse_submodules = RECURSE_SUBMODULES_ON; |
| 232 | |
| 233 | return 0; |
| 234 | } |
| 235 | |
Brandon Williams | 5688c28 | 2016-12-16 11:03:16 -0800 | [diff] [blame] | 236 | /* |
Brandon Williams | f9f4256 | 2016-12-16 11:03:17 -0800 | [diff] [blame] | 237 | * Determine if a submodule has been initialized at a given 'path' |
| 238 | */ |
Brandon Williams | 627d934 | 2017-06-22 11:43:46 -0700 | [diff] [blame] | 239 | int is_submodule_active(struct repository *repo, const char *path) |
Brandon Williams | f9f4256 | 2016-12-16 11:03:17 -0800 | [diff] [blame] | 240 | { |
| 241 | int ret = 0; |
Brandon Williams | a086f92 | 2017-03-17 15:38:01 -0700 | [diff] [blame] | 242 | char *key = NULL; |
| 243 | char *value = NULL; |
| 244 | const struct string_list *sl; |
Brandon Williams | 627d934 | 2017-06-22 11:43:46 -0700 | [diff] [blame] | 245 | const struct submodule *module; |
| 246 | |
Stefan Beller | 0c89fdd | 2018-03-28 15:35:30 -0700 | [diff] [blame] | 247 | module = submodule_from_path(repo, &null_oid, path); |
Brandon Williams | f9f4256 | 2016-12-16 11:03:17 -0800 | [diff] [blame] | 248 | |
Brandon Williams | a086f92 | 2017-03-17 15:38:01 -0700 | [diff] [blame] | 249 | /* early return if there isn't a path->module mapping */ |
| 250 | if (!module) |
| 251 | return 0; |
Brandon Williams | f9f4256 | 2016-12-16 11:03:17 -0800 | [diff] [blame] | 252 | |
Brandon Williams | a086f92 | 2017-03-17 15:38:01 -0700 | [diff] [blame] | 253 | /* submodule.<name>.active is set */ |
| 254 | key = xstrfmt("submodule.%s.active", module->name); |
Brandon Williams | 627d934 | 2017-06-22 11:43:46 -0700 | [diff] [blame] | 255 | if (!repo_config_get_bool(repo, key, &ret)) { |
Brandon Williams | f9f4256 | 2016-12-16 11:03:17 -0800 | [diff] [blame] | 256 | free(key); |
Brandon Williams | a086f92 | 2017-03-17 15:38:01 -0700 | [diff] [blame] | 257 | return ret; |
| 258 | } |
| 259 | free(key); |
| 260 | |
| 261 | /* submodule.active is set */ |
Brandon Williams | 627d934 | 2017-06-22 11:43:46 -0700 | [diff] [blame] | 262 | sl = repo_config_get_value_multi(repo, "submodule.active"); |
Brandon Williams | a086f92 | 2017-03-17 15:38:01 -0700 | [diff] [blame] | 263 | if (sl) { |
| 264 | struct pathspec ps; |
| 265 | struct argv_array args = ARGV_ARRAY_INIT; |
| 266 | const struct string_list_item *item; |
| 267 | |
| 268 | for_each_string_list_item(item, sl) { |
| 269 | argv_array_push(&args, item->string); |
| 270 | } |
| 271 | |
| 272 | parse_pathspec(&ps, 0, 0, NULL, args.argv); |
Nguyễn Thái Ngọc Duy | 68f08b4 | 2018-08-13 18:14:31 +0200 | [diff] [blame] | 273 | ret = match_pathspec(repo->index, &ps, path, strlen(path), 0, NULL, 1); |
Brandon Williams | a086f92 | 2017-03-17 15:38:01 -0700 | [diff] [blame] | 274 | |
| 275 | argv_array_clear(&args); |
| 276 | clear_pathspec(&ps); |
| 277 | return ret; |
Brandon Williams | f9f4256 | 2016-12-16 11:03:17 -0800 | [diff] [blame] | 278 | } |
| 279 | |
Brandon Williams | a086f92 | 2017-03-17 15:38:01 -0700 | [diff] [blame] | 280 | /* fallback to checking if the URL is set */ |
| 281 | key = xstrfmt("submodule.%s.url", module->name); |
Brandon Williams | 627d934 | 2017-06-22 11:43:46 -0700 | [diff] [blame] | 282 | ret = !repo_config_get_string(repo, key, &value); |
Brandon Williams | a086f92 | 2017-03-17 15:38:01 -0700 | [diff] [blame] | 283 | |
| 284 | free(value); |
| 285 | free(key); |
Brandon Williams | f9f4256 | 2016-12-16 11:03:17 -0800 | [diff] [blame] | 286 | return ret; |
| 287 | } |
| 288 | |
Stefan Beller | 15cdc64 | 2017-03-14 14:46:31 -0700 | [diff] [blame] | 289 | int is_submodule_populated_gently(const char *path, int *return_error_code) |
Brandon Williams | 5688c28 | 2016-12-16 11:03:16 -0800 | [diff] [blame] | 290 | { |
| 291 | int ret = 0; |
| 292 | char *gitdir = xstrfmt("%s/.git", path); |
| 293 | |
Stefan Beller | 15cdc64 | 2017-03-14 14:46:31 -0700 | [diff] [blame] | 294 | if (resolve_gitdir_gently(gitdir, return_error_code)) |
Brandon Williams | 5688c28 | 2016-12-16 11:03:16 -0800 | [diff] [blame] | 295 | ret = 1; |
| 296 | |
| 297 | free(gitdir); |
| 298 | return ret; |
| 299 | } |
| 300 | |
Brandon Williams | bdab972 | 2017-05-09 12:17:59 -0700 | [diff] [blame] | 301 | /* |
| 302 | * Dies if the provided 'prefix' corresponds to an unpopulated submodule |
| 303 | */ |
| 304 | void die_in_unpopulated_submodule(const struct index_state *istate, |
| 305 | const char *prefix) |
| 306 | { |
| 307 | int i, prefixlen; |
| 308 | |
| 309 | if (!prefix) |
| 310 | return; |
| 311 | |
| 312 | prefixlen = strlen(prefix); |
| 313 | |
| 314 | for (i = 0; i < istate->cache_nr; i++) { |
| 315 | struct cache_entry *ce = istate->cache[i]; |
| 316 | int ce_len = ce_namelen(ce); |
| 317 | |
| 318 | if (!S_ISGITLINK(ce->ce_mode)) |
| 319 | continue; |
| 320 | if (prefixlen <= ce_len) |
| 321 | continue; |
| 322 | if (strncmp(ce->name, prefix, ce_len)) |
| 323 | continue; |
| 324 | if (prefix[ce_len] != '/') |
| 325 | continue; |
| 326 | |
| 327 | die(_("in unpopulated submodule '%s'"), ce->name); |
| 328 | } |
| 329 | } |
| 330 | |
Brandon Williams | c08397e | 2017-05-11 15:04:24 -0700 | [diff] [blame] | 331 | /* |
| 332 | * Dies if any paths in the provided pathspec descends into a submodule |
| 333 | */ |
| 334 | void die_path_inside_submodule(const struct index_state *istate, |
| 335 | const struct pathspec *ps) |
| 336 | { |
| 337 | int i, j; |
| 338 | |
| 339 | for (i = 0; i < istate->cache_nr; i++) { |
| 340 | struct cache_entry *ce = istate->cache[i]; |
| 341 | int ce_len = ce_namelen(ce); |
| 342 | |
| 343 | if (!S_ISGITLINK(ce->ce_mode)) |
| 344 | continue; |
| 345 | |
| 346 | for (j = 0; j < ps->nr ; j++) { |
| 347 | const struct pathspec_item *item = &ps->items[j]; |
| 348 | |
| 349 | if (item->len <= ce_len) |
| 350 | continue; |
| 351 | if (item->match[ce_len] != '/') |
| 352 | continue; |
| 353 | if (strncmp(ce->name, item->match, ce_len)) |
| 354 | continue; |
| 355 | if (item->len == ce_len + 1) |
| 356 | continue; |
| 357 | |
| 358 | die(_("Pathspec '%s' is in submodule '%.*s'"), |
| 359 | item->original, ce_len, ce->name); |
| 360 | } |
| 361 | } |
| 362 | } |
| 363 | |
Brandon Williams | ec6141a | 2017-08-03 11:19:50 -0700 | [diff] [blame] | 364 | enum submodule_update_type parse_submodule_update_type(const char *value) |
| 365 | { |
| 366 | if (!strcmp(value, "none")) |
| 367 | return SM_UPDATE_NONE; |
| 368 | else if (!strcmp(value, "checkout")) |
| 369 | return SM_UPDATE_CHECKOUT; |
| 370 | else if (!strcmp(value, "rebase")) |
| 371 | return SM_UPDATE_REBASE; |
| 372 | else if (!strcmp(value, "merge")) |
| 373 | return SM_UPDATE_MERGE; |
| 374 | else if (*value == '!') |
| 375 | return SM_UPDATE_COMMAND; |
| 376 | else |
| 377 | return SM_UPDATE_UNSPECIFIED; |
| 378 | } |
| 379 | |
Stefan Beller | ea2fa5a | 2016-02-29 18:07:11 -0800 | [diff] [blame] | 380 | int parse_submodule_update_strategy(const char *value, |
| 381 | struct submodule_update_strategy *dst) |
| 382 | { |
Brandon Williams | ec6141a | 2017-08-03 11:19:50 -0700 | [diff] [blame] | 383 | enum submodule_update_type type; |
| 384 | |
Stefan Beller | ea2fa5a | 2016-02-29 18:07:11 -0800 | [diff] [blame] | 385 | free((void*)dst->command); |
| 386 | dst->command = NULL; |
Brandon Williams | ec6141a | 2017-08-03 11:19:50 -0700 | [diff] [blame] | 387 | |
| 388 | type = parse_submodule_update_type(value); |
| 389 | if (type == SM_UPDATE_UNSPECIFIED) |
Stefan Beller | ea2fa5a | 2016-02-29 18:07:11 -0800 | [diff] [blame] | 390 | return -1; |
Brandon Williams | ec6141a | 2017-08-03 11:19:50 -0700 | [diff] [blame] | 391 | |
| 392 | dst->type = type; |
| 393 | if (type == SM_UPDATE_COMMAND) |
| 394 | dst->command = xstrdup(value + 1); |
| 395 | |
Stefan Beller | ea2fa5a | 2016-02-29 18:07:11 -0800 | [diff] [blame] | 396 | return 0; |
| 397 | } |
| 398 | |
Stefan Beller | 3604242 | 2016-04-15 17:50:13 -0700 | [diff] [blame] | 399 | const char *submodule_strategy_to_string(const struct submodule_update_strategy *s) |
| 400 | { |
| 401 | struct strbuf sb = STRBUF_INIT; |
| 402 | switch (s->type) { |
| 403 | case SM_UPDATE_CHECKOUT: |
| 404 | return "checkout"; |
| 405 | case SM_UPDATE_MERGE: |
| 406 | return "merge"; |
| 407 | case SM_UPDATE_REBASE: |
| 408 | return "rebase"; |
| 409 | case SM_UPDATE_NONE: |
| 410 | return "none"; |
| 411 | case SM_UPDATE_UNSPECIFIED: |
| 412 | return NULL; |
| 413 | case SM_UPDATE_COMMAND: |
| 414 | strbuf_addf(&sb, "!%s", s->command); |
| 415 | return strbuf_detach(&sb, NULL); |
| 416 | } |
| 417 | return NULL; |
| 418 | } |
| 419 | |
Jens Lehmann | 46a958b | 2010-06-25 16:56:47 +0200 | [diff] [blame] | 420 | void handle_ignore_submodules_arg(struct diff_options *diffopt, |
| 421 | const char *arg) |
| 422 | { |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 423 | diffopt->flags.ignore_submodules = 0; |
| 424 | diffopt->flags.ignore_untracked_in_submodules = 0; |
| 425 | diffopt->flags.ignore_dirty_submodules = 0; |
Johannes Schindelin | be4f2b4 | 2010-08-05 10:49:55 +0200 | [diff] [blame] | 426 | |
Jens Lehmann | 46a958b | 2010-06-25 16:56:47 +0200 | [diff] [blame] | 427 | if (!strcmp(arg, "all")) |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 428 | diffopt->flags.ignore_submodules = 1; |
Jens Lehmann | 46a958b | 2010-06-25 16:56:47 +0200 | [diff] [blame] | 429 | else if (!strcmp(arg, "untracked")) |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 430 | diffopt->flags.ignore_untracked_in_submodules = 1; |
Jens Lehmann | 46a958b | 2010-06-25 16:56:47 +0200 | [diff] [blame] | 431 | else if (!strcmp(arg, "dirty")) |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 432 | diffopt->flags.ignore_dirty_submodules = 1; |
Jens Lehmann | aee9c7d | 2010-08-06 00:39:25 +0200 | [diff] [blame] | 433 | else if (strcmp(arg, "none")) |
Jens Lehmann | 46a958b | 2010-06-25 16:56:47 +0200 | [diff] [blame] | 434 | die("bad --ignore-submodules argument: %s", arg); |
Nguyễn Thái Ngọc Duy | 5a59a23 | 2019-02-16 18:24:41 +0700 | [diff] [blame] | 435 | /* |
| 436 | * Please update _git_status() in git-completion.bash when you |
| 437 | * add new options |
| 438 | */ |
Jens Lehmann | 46a958b | 2010-06-25 16:56:47 +0200 | [diff] [blame] | 439 | } |
| 440 | |
Jonathan Nieder | 808a95d | 2011-03-16 02:14:11 -0500 | [diff] [blame] | 441 | static int prepare_submodule_summary(struct rev_info *rev, const char *path, |
| 442 | struct commit *left, struct commit *right, |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 443 | struct commit_list *merge_bases) |
Jonathan Nieder | 808a95d | 2011-03-16 02:14:11 -0500 | [diff] [blame] | 444 | { |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 445 | struct commit_list *list; |
Jonathan Nieder | 808a95d | 2011-03-16 02:14:11 -0500 | [diff] [blame] | 446 | |
Nguyễn Thái Ngọc Duy | 2abf350 | 2018-09-21 17:57:38 +0200 | [diff] [blame] | 447 | repo_init_revisions(the_repository, rev, NULL); |
Jonathan Nieder | 808a95d | 2011-03-16 02:14:11 -0500 | [diff] [blame] | 448 | setup_revisions(0, NULL, rev, NULL); |
| 449 | rev->left_right = 1; |
| 450 | rev->first_parent_only = 1; |
| 451 | left->object.flags |= SYMMETRIC_LEFT; |
| 452 | add_pending_object(rev, &left->object, path); |
| 453 | add_pending_object(rev, &right->object, path); |
Jonathan Nieder | 808a95d | 2011-03-16 02:14:11 -0500 | [diff] [blame] | 454 | for (list = merge_bases; list; list = list->next) { |
| 455 | list->item->object.flags |= UNINTERESTING; |
| 456 | add_pending_object(rev, &list->item->object, |
brian m. carlson | f2fd076 | 2015-11-10 02:22:28 +0000 | [diff] [blame] | 457 | oid_to_hex(&list->item->object.oid)); |
Jonathan Nieder | 808a95d | 2011-03-16 02:14:11 -0500 | [diff] [blame] | 458 | } |
| 459 | return prepare_revision_walk(rev); |
| 460 | } |
| 461 | |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 462 | static void print_submodule_summary(struct repository *r, struct rev_info *rev, struct diff_options *o) |
Jonathan Nieder | 808a95d | 2011-03-16 02:14:11 -0500 | [diff] [blame] | 463 | { |
| 464 | static const char format[] = " %m %s"; |
| 465 | struct strbuf sb = STRBUF_INIT; |
| 466 | struct commit *commit; |
| 467 | |
| 468 | while ((commit = get_revision(rev))) { |
| 469 | struct pretty_print_context ctx = {0}; |
| 470 | ctx.date_mode = rev->date_mode; |
Alexey Shumkin | ecaee80 | 2013-06-26 14:19:50 +0400 | [diff] [blame] | 471 | ctx.output_encoding = get_log_output_encoding(); |
Jonathan Nieder | 808a95d | 2011-03-16 02:14:11 -0500 | [diff] [blame] | 472 | strbuf_setlen(&sb, 0); |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 473 | repo_format_commit_message(r, commit, format, &sb, |
| 474 | &ctx); |
Jonathan Nieder | 808a95d | 2011-03-16 02:14:11 -0500 | [diff] [blame] | 475 | strbuf_addch(&sb, '\n'); |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 476 | if (commit->object.flags & SYMMETRIC_LEFT) |
| 477 | diff_emit_submodule_del(o, sb.buf); |
| 478 | else |
| 479 | diff_emit_submodule_add(o, sb.buf); |
Jonathan Nieder | 808a95d | 2011-03-16 02:14:11 -0500 | [diff] [blame] | 480 | } |
| 481 | strbuf_release(&sb); |
| 482 | } |
| 483 | |
Stefan Beller | 6cd5757 | 2017-03-14 14:46:35 -0700 | [diff] [blame] | 484 | static void prepare_submodule_repo_env_no_git_dir(struct argv_array *out) |
| 485 | { |
| 486 | const char * const *var; |
| 487 | |
| 488 | for (var = local_repo_env; *var; var++) { |
| 489 | if (strcmp(*var, CONFIG_DATA_ENVIRONMENT)) |
| 490 | argv_array_push(out, *var); |
| 491 | } |
| 492 | } |
| 493 | |
| 494 | void prepare_submodule_repo_env(struct argv_array *out) |
| 495 | { |
| 496 | prepare_submodule_repo_env_no_git_dir(out); |
| 497 | argv_array_pushf(out, "%s=%s", GIT_DIR_ENVIRONMENT, |
| 498 | DEFAULT_GIT_DIR_ENVIRONMENT); |
| 499 | } |
| 500 | |
Stefan Beller | a62387b | 2018-11-28 16:27:55 -0800 | [diff] [blame] | 501 | static void prepare_submodule_repo_env_in_gitdir(struct argv_array *out) |
| 502 | { |
| 503 | prepare_submodule_repo_env_no_git_dir(out); |
| 504 | argv_array_pushf(out, "%s=.", GIT_DIR_ENVIRONMENT); |
| 505 | } |
| 506 | |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 507 | /* |
| 508 | * Initialize a repository struct for a submodule based on the provided 'path'. |
| 509 | * |
| 510 | * Unlike repo_submodule_init, this tolerates submodules not present |
| 511 | * in .gitmodules. This function exists only to preserve historical behavior, |
| 512 | * |
| 513 | * Returns the repository struct on success, |
| 514 | * NULL when the submodule is not present. |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 515 | */ |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 516 | static struct repository *open_submodule(const char *path) |
| 517 | { |
| 518 | struct strbuf sb = STRBUF_INIT; |
| 519 | struct repository *out = xmalloc(sizeof(*out)); |
| 520 | |
| 521 | if (submodule_to_gitdir(&sb, path) || repo_init(out, sb.buf, NULL)) { |
| 522 | strbuf_release(&sb); |
| 523 | free(out); |
| 524 | return NULL; |
| 525 | } |
| 526 | |
| 527 | /* Mark it as a submodule */ |
| 528 | out->submodule_prefix = xstrdup(path); |
| 529 | |
| 530 | strbuf_release(&sb); |
| 531 | return out; |
| 532 | } |
| 533 | |
| 534 | /* |
| 535 | * Helper function to display the submodule header line prior to the full |
| 536 | * summary output. |
| 537 | * |
| 538 | * If it can locate the submodule git directory it will create a repository |
| 539 | * handle for the submodule and lookup both the left and right commits and |
| 540 | * put them into the left and right pointers. |
| 541 | */ |
| 542 | static void show_submodule_header(struct diff_options *o, |
| 543 | const char *path, |
Jacob Keller | 602a283 | 2016-08-31 16:27:23 -0700 | [diff] [blame] | 544 | struct object_id *one, struct object_id *two, |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 545 | unsigned dirty_submodule, |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 546 | struct repository *sub, |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 547 | struct commit **left, struct commit **right, |
| 548 | struct commit_list **merge_bases) |
Johannes Schindelin | 752c0c2 | 2009-10-19 14:38:32 +0200 | [diff] [blame] | 549 | { |
Johannes Schindelin | 752c0c2 | 2009-10-19 14:38:32 +0200 | [diff] [blame] | 550 | const char *message = NULL; |
| 551 | struct strbuf sb = STRBUF_INIT; |
Johannes Schindelin | 752c0c2 | 2009-10-19 14:38:32 +0200 | [diff] [blame] | 552 | int fast_forward = 0, fast_backward = 0; |
| 553 | |
Jens Lehmann | c7e1a73 | 2010-03-04 22:20:33 +0100 | [diff] [blame] | 554 | if (dirty_submodule & DIRTY_SUBMODULE_UNTRACKED) |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 555 | diff_emit_submodule_untracked(o, path); |
| 556 | |
Jens Lehmann | c7e1a73 | 2010-03-04 22:20:33 +0100 | [diff] [blame] | 557 | if (dirty_submodule & DIRTY_SUBMODULE_MODIFIED) |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 558 | diff_emit_submodule_modified(o, path); |
Jens Lehmann | c7e1a73 | 2010-03-04 22:20:33 +0100 | [diff] [blame] | 559 | |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 560 | if (is_null_oid(one)) |
| 561 | message = "(new submodule)"; |
| 562 | else if (is_null_oid(two)) |
| 563 | message = "(submodule deleted)"; |
| 564 | |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 565 | if (!sub) { |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 566 | if (!message) |
Stefan Beller | 2d94dd2 | 2017-09-26 11:27:56 -0700 | [diff] [blame] | 567 | message = "(commits not present)"; |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 568 | goto output_header; |
| 569 | } |
| 570 | |
| 571 | /* |
| 572 | * Attempt to lookup the commit references, and determine if this is |
| 573 | * a fast forward or fast backwards update. |
| 574 | */ |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 575 | *left = lookup_commit_reference(sub, one); |
| 576 | *right = lookup_commit_reference(sub, two); |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 577 | |
| 578 | /* |
| 579 | * Warn about missing commits in the submodule project, but only if |
| 580 | * they aren't null. |
| 581 | */ |
| 582 | if ((!is_null_oid(one) && !*left) || |
| 583 | (!is_null_oid(two) && !*right)) |
| 584 | message = "(commits not present)"; |
| 585 | |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 586 | *merge_bases = repo_get_merge_bases(sub, *left, *right); |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 587 | if (*merge_bases) { |
| 588 | if ((*merge_bases)->item == *left) |
| 589 | fast_forward = 1; |
| 590 | else if ((*merge_bases)->item == *right) |
| 591 | fast_backward = 1; |
| 592 | } |
| 593 | |
Jeff King | 4a7e27e | 2018-08-28 17:22:40 -0400 | [diff] [blame] | 594 | if (oideq(one, two)) { |
Jens Lehmann | c7e1a73 | 2010-03-04 22:20:33 +0100 | [diff] [blame] | 595 | strbuf_release(&sb); |
| 596 | return; |
| 597 | } |
| 598 | |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 599 | output_header: |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 600 | strbuf_addf(&sb, "Submodule %s ", path); |
brian m. carlson | 30e677e | 2018-03-12 02:27:28 +0000 | [diff] [blame] | 601 | strbuf_add_unique_abbrev(&sb, one, DEFAULT_ABBREV); |
René Scharfe | a94bb68 | 2016-10-08 17:38:47 +0200 | [diff] [blame] | 602 | strbuf_addstr(&sb, (fast_backward || fast_forward) ? ".." : "..."); |
brian m. carlson | 30e677e | 2018-03-12 02:27:28 +0000 | [diff] [blame] | 603 | strbuf_add_unique_abbrev(&sb, two, DEFAULT_ABBREV); |
Johannes Schindelin | 752c0c2 | 2009-10-19 14:38:32 +0200 | [diff] [blame] | 604 | if (message) |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 605 | strbuf_addf(&sb, " %s\n", message); |
Johannes Schindelin | 752c0c2 | 2009-10-19 14:38:32 +0200 | [diff] [blame] | 606 | else |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 607 | strbuf_addf(&sb, "%s:\n", fast_backward ? " (rewind)" : ""); |
| 608 | diff_emit_submodule_header(o, sb.buf); |
Johannes Schindelin | 752c0c2 | 2009-10-19 14:38:32 +0200 | [diff] [blame] | 609 | |
Johannes Schindelin | 752c0c2 | 2009-10-19 14:38:32 +0200 | [diff] [blame] | 610 | strbuf_release(&sb); |
| 611 | } |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 612 | |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 613 | void show_submodule_summary(struct diff_options *o, const char *path, |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 614 | struct object_id *one, struct object_id *two, |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 615 | unsigned dirty_submodule) |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 616 | { |
| 617 | struct rev_info rev; |
| 618 | struct commit *left = NULL, *right = NULL; |
| 619 | struct commit_list *merge_bases = NULL; |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 620 | struct repository *sub; |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 621 | |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 622 | sub = open_submodule(path); |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 623 | show_submodule_header(o, path, one, two, dirty_submodule, |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 624 | sub, &left, &right, &merge_bases); |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 625 | |
| 626 | /* |
| 627 | * If we don't have both a left and a right pointer, there is no |
| 628 | * reason to try and display a summary. The header line should contain |
| 629 | * all the information the user needs. |
| 630 | */ |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 631 | if (!left || !right || !sub) |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 632 | goto out; |
| 633 | |
| 634 | /* Treat revision walker failure the same as missing commits */ |
| 635 | if (prepare_submodule_summary(&rev, path, left, right, merge_bases)) { |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 636 | diff_emit_submodule_error(o, "(revision walker failed)\n"); |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 637 | goto out; |
| 638 | } |
| 639 | |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 640 | print_submodule_summary(sub, &rev, o); |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 641 | |
| 642 | out: |
| 643 | if (merge_bases) |
| 644 | free_commit_list(merge_bases); |
| 645 | clear_commit_marks(left, ~0); |
| 646 | clear_commit_marks(right, ~0); |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 647 | if (sub) { |
| 648 | repo_clear(sub); |
| 649 | free(sub); |
| 650 | } |
Jacob Keller | 8e6df65 | 2016-08-31 16:27:24 -0700 | [diff] [blame] | 651 | } |
| 652 | |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 653 | void show_submodule_inline_diff(struct diff_options *o, const char *path, |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 654 | struct object_id *one, struct object_id *two, |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 655 | unsigned dirty_submodule) |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 656 | { |
Brandon Williams | bc09991 | 2018-02-14 10:59:49 -0800 | [diff] [blame] | 657 | const struct object_id *old_oid = the_hash_algo->empty_tree, *new_oid = the_hash_algo->empty_tree; |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 658 | struct commit *left = NULL, *right = NULL; |
| 659 | struct commit_list *merge_bases = NULL; |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 660 | struct child_process cp = CHILD_PROCESS_INIT; |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 661 | struct strbuf sb = STRBUF_INIT; |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 662 | struct repository *sub; |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 663 | |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 664 | sub = open_submodule(path); |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 665 | show_submodule_header(o, path, one, two, dirty_submodule, |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 666 | sub, &left, &right, &merge_bases); |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 667 | |
| 668 | /* We need a valid left and right commit to display a difference */ |
| 669 | if (!(left || is_null_oid(one)) || |
| 670 | !(right || is_null_oid(two))) |
| 671 | goto done; |
| 672 | |
| 673 | if (left) |
Brandon Williams | bc09991 | 2018-02-14 10:59:49 -0800 | [diff] [blame] | 674 | old_oid = one; |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 675 | if (right) |
Brandon Williams | bc09991 | 2018-02-14 10:59:49 -0800 | [diff] [blame] | 676 | new_oid = two; |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 677 | |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 678 | cp.git_cmd = 1; |
| 679 | cp.dir = path; |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 680 | cp.out = -1; |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 681 | cp.no_stdin = 1; |
| 682 | |
| 683 | /* TODO: other options may need to be passed here. */ |
Stefan Beller | 5a52214 | 2017-05-04 14:43:55 -0700 | [diff] [blame] | 684 | argv_array_pushl(&cp.args, "diff", "--submodule=diff", NULL); |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 685 | argv_array_pushf(&cp.args, "--color=%s", want_color(o->use_color) ? |
| 686 | "always" : "never"); |
Stefan Beller | 5a52214 | 2017-05-04 14:43:55 -0700 | [diff] [blame] | 687 | |
Brandon Williams | 0d1e0e7 | 2017-10-31 11:19:11 -0700 | [diff] [blame] | 688 | if (o->flags.reverse_diff) { |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 689 | argv_array_pushf(&cp.args, "--src-prefix=%s%s/", |
| 690 | o->b_prefix, path); |
| 691 | argv_array_pushf(&cp.args, "--dst-prefix=%s%s/", |
| 692 | o->a_prefix, path); |
| 693 | } else { |
| 694 | argv_array_pushf(&cp.args, "--src-prefix=%s%s/", |
| 695 | o->a_prefix, path); |
| 696 | argv_array_pushf(&cp.args, "--dst-prefix=%s%s/", |
| 697 | o->b_prefix, path); |
| 698 | } |
Brandon Williams | bc09991 | 2018-02-14 10:59:49 -0800 | [diff] [blame] | 699 | argv_array_push(&cp.args, oid_to_hex(old_oid)); |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 700 | /* |
| 701 | * If the submodule has modified content, we will diff against the |
| 702 | * work tree, under the assumption that the user has asked for the |
| 703 | * diff format and wishes to actually see all differences even if they |
| 704 | * haven't yet been committed to the submodule yet. |
| 705 | */ |
| 706 | if (!(dirty_submodule & DIRTY_SUBMODULE_MODIFIED)) |
Brandon Williams | bc09991 | 2018-02-14 10:59:49 -0800 | [diff] [blame] | 707 | argv_array_push(&cp.args, oid_to_hex(new_oid)); |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 708 | |
Stefan Beller | 17b254c | 2017-03-31 16:17:32 -0700 | [diff] [blame] | 709 | prepare_submodule_repo_env(&cp.env_array); |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 710 | if (start_command(&cp)) |
| 711 | diff_emit_submodule_error(o, "(diff failed)\n"); |
| 712 | |
| 713 | while (strbuf_getwholeline_fd(&sb, cp.out, '\n') != EOF) |
| 714 | diff_emit_submodule_pipethrough(o, sb.buf, sb.len); |
| 715 | |
| 716 | if (finish_command(&cp)) |
| 717 | diff_emit_submodule_error(o, "(diff failed)\n"); |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 718 | |
| 719 | done: |
Stefan Beller | f359713 | 2017-06-29 17:07:00 -0700 | [diff] [blame] | 720 | strbuf_release(&sb); |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 721 | if (merge_bases) |
| 722 | free_commit_list(merge_bases); |
| 723 | if (left) |
| 724 | clear_commit_marks(left, ~0); |
| 725 | if (right) |
| 726 | clear_commit_marks(right, ~0); |
Stefan Beller | 605f0ec | 2018-12-14 16:09:37 -0800 | [diff] [blame] | 727 | if (sub) { |
| 728 | repo_clear(sub); |
| 729 | free(sub); |
| 730 | } |
Jacob Keller | fd47ae6 | 2016-08-31 16:27:25 -0700 | [diff] [blame] | 731 | } |
| 732 | |
Stefan Beller | 84f8925 | 2017-03-14 14:46:34 -0700 | [diff] [blame] | 733 | int should_update_submodules(void) |
| 734 | { |
| 735 | return config_update_recurse_submodules == RECURSE_SUBMODULES_ON; |
| 736 | } |
| 737 | |
| 738 | const struct submodule *submodule_from_ce(const struct cache_entry *ce) |
| 739 | { |
| 740 | if (!S_ISGITLINK(ce->ce_mode)) |
| 741 | return NULL; |
| 742 | |
| 743 | if (!should_update_submodules()) |
| 744 | return NULL; |
| 745 | |
Stefan Beller | 3b8fb39 | 2018-03-28 15:35:29 -0700 | [diff] [blame] | 746 | return submodule_from_path(the_repository, &null_oid, ce->name); |
Stefan Beller | 84f8925 | 2017-03-14 14:46:34 -0700 | [diff] [blame] | 747 | } |
| 748 | |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 749 | static struct oid_array *submodule_commits(struct string_list *submodules, |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 750 | const char *name) |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 751 | { |
| 752 | struct string_list_item *item; |
| 753 | |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 754 | item = string_list_insert(submodules, name); |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 755 | if (item->util) |
| 756 | return (struct oid_array *) item->util; |
| 757 | |
| 758 | /* NEEDSWORK: should we have oid_array_init()? */ |
| 759 | item->util = xcalloc(1, sizeof(struct oid_array)); |
| 760 | return (struct oid_array *) item->util; |
| 761 | } |
| 762 | |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 763 | struct collect_changed_submodules_cb_data { |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 764 | struct repository *repo; |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 765 | struct string_list *changed; |
| 766 | const struct object_id *commit_oid; |
| 767 | }; |
| 768 | |
| 769 | /* |
| 770 | * this would normally be two functions: default_name_from_path() and |
| 771 | * path_from_default_name(). Since the default name is the same as |
| 772 | * the submodule path we can get away with just one function which only |
| 773 | * checks whether there is a submodule in the working directory at that |
| 774 | * location. |
| 775 | */ |
| 776 | static const char *default_name_or_path(const char *path_or_name) |
| 777 | { |
| 778 | int error_code; |
| 779 | |
| 780 | if (!is_submodule_populated_gently(path_or_name, &error_code)) |
| 781 | return NULL; |
| 782 | |
| 783 | return path_or_name; |
| 784 | } |
| 785 | |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 786 | static void collect_changed_submodules_cb(struct diff_queue_struct *q, |
| 787 | struct diff_options *options, |
| 788 | void *data) |
| 789 | { |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 790 | struct collect_changed_submodules_cb_data *me = data; |
| 791 | struct string_list *changed = me->changed; |
| 792 | const struct object_id *commit_oid = me->commit_oid; |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 793 | int i; |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 794 | |
| 795 | for (i = 0; i < q->nr; i++) { |
| 796 | struct diff_filepair *p = q->queue[i]; |
| 797 | struct oid_array *commits; |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 798 | const struct submodule *submodule; |
| 799 | const char *name; |
| 800 | |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 801 | if (!S_ISGITLINK(p->two->mode)) |
| 802 | continue; |
| 803 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 804 | submodule = submodule_from_path(me->repo, |
Stefan Beller | 3b8fb39 | 2018-03-28 15:35:29 -0700 | [diff] [blame] | 805 | commit_oid, p->two->path); |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 806 | if (submodule) |
| 807 | name = submodule->name; |
| 808 | else { |
| 809 | name = default_name_or_path(p->two->path); |
| 810 | /* make sure name does not collide with existing one */ |
Stefan Beller | 5fc8475 | 2018-06-14 10:31:07 -0700 | [diff] [blame] | 811 | if (name) |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 812 | submodule = submodule_from_name(me->repo, |
Stefan Beller | 5fc8475 | 2018-06-14 10:31:07 -0700 | [diff] [blame] | 813 | commit_oid, name); |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 814 | if (submodule) { |
| 815 | warning("Submodule in commit %s at path: " |
| 816 | "'%s' collides with a submodule named " |
| 817 | "the same. Skipping it.", |
Stefan Beller | 5fc8475 | 2018-06-14 10:31:07 -0700 | [diff] [blame] | 818 | oid_to_hex(commit_oid), p->two->path); |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 819 | name = NULL; |
| 820 | } |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 821 | } |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 822 | |
| 823 | if (!name) |
| 824 | continue; |
| 825 | |
| 826 | commits = submodule_commits(changed, name); |
| 827 | oid_array_append(commits, &p->two->oid); |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 828 | } |
| 829 | } |
| 830 | |
| 831 | /* |
| 832 | * Collect the paths of submodules in 'changed' which have changed based on |
| 833 | * the revisions as specified in 'argv'. Each entry in 'changed' will also |
| 834 | * have a corresponding 'struct oid_array' (in the 'util' field) which lists |
| 835 | * what the submodule pointers were updated to during the change. |
| 836 | */ |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 837 | static void collect_changed_submodules(struct repository *r, |
Nguyễn Thái Ngọc Duy | 174d131 | 2018-09-21 17:57:35 +0200 | [diff] [blame] | 838 | struct string_list *changed, |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 839 | struct argv_array *argv) |
| 840 | { |
| 841 | struct rev_info rev; |
| 842 | const struct commit *commit; |
| 843 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 844 | repo_init_revisions(r, &rev, NULL); |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 845 | setup_revisions(argv->argc, argv->argv, &rev, NULL); |
| 846 | if (prepare_revision_walk(&rev)) |
| 847 | die("revision walk setup failed"); |
| 848 | |
| 849 | while ((commit = get_revision(&rev))) { |
| 850 | struct rev_info diff_rev; |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 851 | struct collect_changed_submodules_cb_data data; |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 852 | data.repo = r; |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 853 | data.changed = changed; |
| 854 | data.commit_oid = &commit->object.oid; |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 855 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 856 | repo_init_revisions(r, &diff_rev, NULL); |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 857 | diff_rev.diffopt.output_format |= DIFF_FORMAT_CALLBACK; |
| 858 | diff_rev.diffopt.format_callback = collect_changed_submodules_cb; |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 859 | diff_rev.diffopt.format_callback_data = &data; |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 860 | diff_tree_combined_merge(commit, 1, &diff_rev); |
| 861 | } |
| 862 | |
| 863 | reset_revision_walk(); |
| 864 | } |
| 865 | |
| 866 | static void free_submodules_oids(struct string_list *submodules) |
| 867 | { |
| 868 | struct string_list_item *item; |
| 869 | for_each_string_list_item(item, submodules) |
| 870 | oid_array_clear((struct oid_array *) item->util); |
| 871 | string_list_clear(submodules, 1); |
| 872 | } |
| 873 | |
Michael Haggerty | 7290ef5 | 2015-05-25 18:39:07 +0000 | [diff] [blame] | 874 | static int has_remote(const char *refname, const struct object_id *oid, |
| 875 | int flags, void *cb_data) |
Fredrik Gustafsson | d2b17b3 | 2011-08-20 00:08:47 +0200 | [diff] [blame] | 876 | { |
| 877 | return 1; |
| 878 | } |
| 879 | |
brian m. carlson | 1b7ba79 | 2017-03-31 01:39:59 +0000 | [diff] [blame] | 880 | static int append_oid_to_argv(const struct object_id *oid, void *data) |
Fredrik Gustafsson | d2b17b3 | 2011-08-20 00:08:47 +0200 | [diff] [blame] | 881 | { |
Heiko Voigt | 9cfa1c2 | 2016-11-16 16:11:05 +0100 | [diff] [blame] | 882 | struct argv_array *argv = data; |
brian m. carlson | 1b7ba79 | 2017-03-31 01:39:59 +0000 | [diff] [blame] | 883 | argv_array_push(argv, oid_to_hex(oid)); |
Heiko Voigt | 9cfa1c2 | 2016-11-16 16:11:05 +0100 | [diff] [blame] | 884 | return 0; |
| 885 | } |
| 886 | |
Stefan Beller | 3c96aa9 | 2017-09-12 10:30:27 -0700 | [diff] [blame] | 887 | struct has_commit_data { |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 888 | struct repository *repo; |
Stefan Beller | 3c96aa9 | 2017-09-12 10:30:27 -0700 | [diff] [blame] | 889 | int result; |
| 890 | const char *path; |
| 891 | }; |
| 892 | |
brian m. carlson | 1b7ba79 | 2017-03-31 01:39:59 +0000 | [diff] [blame] | 893 | static int check_has_commit(const struct object_id *oid, void *data) |
Fredrik Gustafsson | d2b17b3 | 2011-08-20 00:08:47 +0200 | [diff] [blame] | 894 | { |
Stefan Beller | 3c96aa9 | 2017-09-12 10:30:27 -0700 | [diff] [blame] | 895 | struct has_commit_data *cb = data; |
Heiko Voigt | 5b6607d | 2016-11-16 16:11:06 +0100 | [diff] [blame] | 896 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 897 | enum object_type type = oid_object_info(cb->repo, oid, NULL); |
Heiko Voigt | 5b6607d | 2016-11-16 16:11:06 +0100 | [diff] [blame] | 898 | |
Stefan Beller | 3c96aa9 | 2017-09-12 10:30:27 -0700 | [diff] [blame] | 899 | switch (type) { |
| 900 | case OBJ_COMMIT: |
| 901 | return 0; |
| 902 | case OBJ_BAD: |
| 903 | /* |
| 904 | * Object is missing or invalid. If invalid, an error message |
| 905 | * has already been printed. |
| 906 | */ |
| 907 | cb->result = 0; |
| 908 | return 0; |
| 909 | default: |
| 910 | die(_("submodule entry '%s' (%s) is a %s, not a commit"), |
Brandon Williams | debca9d | 2018-02-14 10:59:24 -0800 | [diff] [blame] | 911 | cb->path, oid_to_hex(oid), type_name(type)); |
Stefan Beller | 3c96aa9 | 2017-09-12 10:30:27 -0700 | [diff] [blame] | 912 | } |
Heiko Voigt | 5b6607d | 2016-11-16 16:11:06 +0100 | [diff] [blame] | 913 | } |
| 914 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 915 | static int submodule_has_commits(struct repository *r, |
| 916 | const char *path, |
| 917 | struct oid_array *commits) |
Heiko Voigt | 5b6607d | 2016-11-16 16:11:06 +0100 | [diff] [blame] | 918 | { |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 919 | struct has_commit_data has_commit = { r, 1, path }; |
Heiko Voigt | 5b6607d | 2016-11-16 16:11:06 +0100 | [diff] [blame] | 920 | |
Brandon Williams | 7c8d2b0 | 2017-05-01 18:02:38 -0700 | [diff] [blame] | 921 | /* |
Ville Skyttä | 6412757 | 2017-06-25 13:20:41 +0300 | [diff] [blame] | 922 | * Perform a cheap, but incorrect check for the existence of 'commits'. |
Brandon Williams | 7c8d2b0 | 2017-05-01 18:02:38 -0700 | [diff] [blame] | 923 | * This is done by adding the submodule's object store to the in-core |
Ville Skyttä | 6412757 | 2017-06-25 13:20:41 +0300 | [diff] [blame] | 924 | * object store, and then querying for each commit's existence. If we |
Brandon Williams | 7c8d2b0 | 2017-05-01 18:02:38 -0700 | [diff] [blame] | 925 | * do not have the commit object anywhere, there is no chance we have |
| 926 | * it in the object store of the correct submodule and have it |
| 927 | * reachable from a ref, so we can fail early without spawning rev-list |
| 928 | * which is expensive. |
| 929 | */ |
Heiko Voigt | 5b6607d | 2016-11-16 16:11:06 +0100 | [diff] [blame] | 930 | if (add_submodule_odb(path)) |
| 931 | return 0; |
| 932 | |
brian m. carlson | 910650d | 2017-03-31 01:40:00 +0000 | [diff] [blame] | 933 | oid_array_for_each_unique(commits, check_has_commit, &has_commit); |
Brandon Williams | 7c8d2b0 | 2017-05-01 18:02:38 -0700 | [diff] [blame] | 934 | |
Stefan Beller | 3c96aa9 | 2017-09-12 10:30:27 -0700 | [diff] [blame] | 935 | if (has_commit.result) { |
Brandon Williams | 7c8d2b0 | 2017-05-01 18:02:38 -0700 | [diff] [blame] | 936 | /* |
| 937 | * Even if the submodule is checked out and the commit is |
| 938 | * present, make sure it exists in the submodule's object store |
| 939 | * and that it is reachable from a ref. |
| 940 | */ |
| 941 | struct child_process cp = CHILD_PROCESS_INIT; |
| 942 | struct strbuf out = STRBUF_INIT; |
| 943 | |
| 944 | argv_array_pushl(&cp.args, "rev-list", "-n", "1", NULL); |
| 945 | oid_array_for_each_unique(commits, append_oid_to_argv, &cp.args); |
| 946 | argv_array_pushl(&cp.args, "--not", "--all", NULL); |
| 947 | |
| 948 | prepare_submodule_repo_env(&cp.env_array); |
| 949 | cp.git_cmd = 1; |
| 950 | cp.no_stdin = 1; |
| 951 | cp.dir = path; |
| 952 | |
| 953 | if (capture_command(&cp, &out, GIT_MAX_HEXSZ + 1) || out.len) |
Stefan Beller | 3c96aa9 | 2017-09-12 10:30:27 -0700 | [diff] [blame] | 954 | has_commit.result = 0; |
Brandon Williams | 7c8d2b0 | 2017-05-01 18:02:38 -0700 | [diff] [blame] | 955 | |
| 956 | strbuf_release(&out); |
| 957 | } |
| 958 | |
Stefan Beller | 3c96aa9 | 2017-09-12 10:30:27 -0700 | [diff] [blame] | 959 | return has_commit.result; |
Heiko Voigt | 5b6607d | 2016-11-16 16:11:06 +0100 | [diff] [blame] | 960 | } |
| 961 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 962 | static int submodule_needs_pushing(struct repository *r, |
| 963 | const char *path, |
| 964 | struct oid_array *commits) |
Heiko Voigt | 5b6607d | 2016-11-16 16:11:06 +0100 | [diff] [blame] | 965 | { |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 966 | if (!submodule_has_commits(r, path, commits)) |
Heiko Voigt | 250ab24 | 2016-11-16 16:11:07 +0100 | [diff] [blame] | 967 | /* |
| 968 | * NOTE: We do consider it safe to return "no" here. The |
| 969 | * correct answer would be "We do not know" instead of |
| 970 | * "No push needed", but it is quite hard to change |
| 971 | * the submodule pointer without having the submodule |
| 972 | * around. If a user did however change the submodules |
| 973 | * without having the submodule around, this indicates |
| 974 | * an expert who knows what they are doing or a |
| 975 | * maintainer integrating work from other people. In |
| 976 | * both cases it should be safe to skip this check. |
| 977 | */ |
Fredrik Gustafsson | d2b17b3 | 2011-08-20 00:08:47 +0200 | [diff] [blame] | 978 | return 0; |
| 979 | |
| 980 | if (for_each_remote_ref_submodule(path, has_remote, NULL) > 0) { |
René Scharfe | d318027 | 2014-08-19 21:09:35 +0200 | [diff] [blame] | 981 | struct child_process cp = CHILD_PROCESS_INIT; |
Fredrik Gustafsson | d2b17b3 | 2011-08-20 00:08:47 +0200 | [diff] [blame] | 982 | struct strbuf buf = STRBUF_INIT; |
| 983 | int needs_pushing = 0; |
| 984 | |
Heiko Voigt | 5b6607d | 2016-11-16 16:11:06 +0100 | [diff] [blame] | 985 | argv_array_push(&cp.args, "rev-list"); |
brian m. carlson | 910650d | 2017-03-31 01:40:00 +0000 | [diff] [blame] | 986 | oid_array_for_each_unique(commits, append_oid_to_argv, &cp.args); |
Heiko Voigt | 5b6607d | 2016-11-16 16:11:06 +0100 | [diff] [blame] | 987 | argv_array_pushl(&cp.args, "--not", "--remotes", "-n", "1" , NULL); |
| 988 | |
Jeff King | c12e865 | 2016-04-28 09:39:15 -0400 | [diff] [blame] | 989 | prepare_submodule_repo_env(&cp.env_array); |
Fredrik Gustafsson | d2b17b3 | 2011-08-20 00:08:47 +0200 | [diff] [blame] | 990 | cp.git_cmd = 1; |
| 991 | cp.no_stdin = 1; |
| 992 | cp.out = -1; |
| 993 | cp.dir = path; |
| 994 | if (start_command(&cp)) |
Heiko Voigt | 5b6607d | 2016-11-16 16:11:06 +0100 | [diff] [blame] | 995 | die("Could not run 'git rev-list <commits> --not --remotes -n 1' command in submodule %s", |
| 996 | path); |
brian m. carlson | db1ba2a | 2019-02-19 00:04:59 +0000 | [diff] [blame] | 997 | if (strbuf_read(&buf, cp.out, the_hash_algo->hexsz + 1)) |
Fredrik Gustafsson | d2b17b3 | 2011-08-20 00:08:47 +0200 | [diff] [blame] | 998 | needs_pushing = 1; |
| 999 | finish_command(&cp); |
| 1000 | close(cp.out); |
| 1001 | strbuf_release(&buf); |
| 1002 | return needs_pushing; |
| 1003 | } |
| 1004 | |
| 1005 | return 0; |
| 1006 | } |
| 1007 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 1008 | int find_unpushed_submodules(struct repository *r, |
Nguyễn Thái Ngọc Duy | 174d131 | 2018-09-21 17:57:35 +0200 | [diff] [blame] | 1009 | struct oid_array *commits, |
| 1010 | const char *remotes_name, |
| 1011 | struct string_list *needs_pushing) |
Fredrik Gustafsson | d2b17b3 | 2011-08-20 00:08:47 +0200 | [diff] [blame] | 1012 | { |
Heiko Voigt | 1473944 | 2016-11-16 16:11:04 +0100 | [diff] [blame] | 1013 | struct string_list submodules = STRING_LIST_INIT_DUP; |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 1014 | struct string_list_item *name; |
Heiko Voigt | 9cfa1c2 | 2016-11-16 16:11:05 +0100 | [diff] [blame] | 1015 | struct argv_array argv = ARGV_ARRAY_INIT; |
Heiko Voigt | a762e51 | 2012-03-29 09:21:23 +0200 | [diff] [blame] | 1016 | |
Heiko Voigt | 9cfa1c2 | 2016-11-16 16:11:05 +0100 | [diff] [blame] | 1017 | /* argv.argv[0] will be ignored by setup_revisions */ |
| 1018 | argv_array_push(&argv, "find_unpushed_submodules"); |
brian m. carlson | 910650d | 2017-03-31 01:40:00 +0000 | [diff] [blame] | 1019 | oid_array_for_each_unique(commits, append_oid_to_argv, &argv); |
Heiko Voigt | 9cfa1c2 | 2016-11-16 16:11:05 +0100 | [diff] [blame] | 1020 | argv_array_push(&argv, "--not"); |
| 1021 | argv_array_pushf(&argv, "--remotes=%s", remotes_name); |
| 1022 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 1023 | collect_changed_submodules(r, &submodules, &argv); |
Fredrik Gustafsson | d2b17b3 | 2011-08-20 00:08:47 +0200 | [diff] [blame] | 1024 | |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 1025 | for_each_string_list_item(name, &submodules) { |
| 1026 | struct oid_array *commits = name->util; |
| 1027 | const struct submodule *submodule; |
| 1028 | const char *path = NULL; |
| 1029 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 1030 | submodule = submodule_from_name(r, &null_oid, name->string); |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 1031 | if (submodule) |
| 1032 | path = submodule->path; |
| 1033 | else |
| 1034 | path = default_name_or_path(name->string); |
| 1035 | |
| 1036 | if (!path) |
| 1037 | continue; |
Heiko Voigt | 5b6607d | 2016-11-16 16:11:06 +0100 | [diff] [blame] | 1038 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 1039 | if (submodule_needs_pushing(r, path, commits)) |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 1040 | string_list_insert(needs_pushing, path); |
Heiko Voigt | 1473944 | 2016-11-16 16:11:04 +0100 | [diff] [blame] | 1041 | } |
Brandon Williams | 610b233 | 2017-04-28 16:53:58 -0700 | [diff] [blame] | 1042 | |
| 1043 | free_submodules_oids(&submodules); |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 1044 | argv_array_clear(&argv); |
Fredrik Gustafsson | d2b17b3 | 2011-08-20 00:08:47 +0200 | [diff] [blame] | 1045 | |
Heiko Voigt | a762e51 | 2012-03-29 09:21:23 +0200 | [diff] [blame] | 1046 | return needs_pushing->nr; |
Fredrik Gustafsson | d2b17b3 | 2011-08-20 00:08:47 +0200 | [diff] [blame] | 1047 | } |
| 1048 | |
Brandon Williams | 2a90556 | 2017-04-05 10:47:16 -0700 | [diff] [blame] | 1049 | static int push_submodule(const char *path, |
Brandon Williams | 06bf4ad | 2017-04-05 10:47:19 -0700 | [diff] [blame] | 1050 | const struct remote *remote, |
Brandon Williams | 60fba4b | 2018-05-16 15:58:23 -0700 | [diff] [blame] | 1051 | const struct refspec *rs, |
Brandon Williams | 2a90556 | 2017-04-05 10:47:16 -0700 | [diff] [blame] | 1052 | const struct string_list *push_options, |
| 1053 | int dry_run) |
Heiko Voigt | eb21c73 | 2012-03-29 09:21:24 +0200 | [diff] [blame] | 1054 | { |
Heiko Voigt | eb21c73 | 2012-03-29 09:21:24 +0200 | [diff] [blame] | 1055 | if (for_each_remote_ref_submodule(path, has_remote, NULL) > 0) { |
René Scharfe | d318027 | 2014-08-19 21:09:35 +0200 | [diff] [blame] | 1056 | struct child_process cp = CHILD_PROCESS_INIT; |
Brandon Williams | 0301c82 | 2016-11-17 10:46:04 -0800 | [diff] [blame] | 1057 | argv_array_push(&cp.args, "push"); |
| 1058 | if (dry_run) |
| 1059 | argv_array_push(&cp.args, "--dry-run"); |
Heiko Voigt | eb21c73 | 2012-03-29 09:21:24 +0200 | [diff] [blame] | 1060 | |
Brandon Williams | 2a90556 | 2017-04-05 10:47:16 -0700 | [diff] [blame] | 1061 | if (push_options && push_options->nr) { |
| 1062 | const struct string_list_item *item; |
| 1063 | for_each_string_list_item(item, push_options) |
| 1064 | argv_array_pushf(&cp.args, "--push-option=%s", |
| 1065 | item->string); |
| 1066 | } |
Brandon Williams | 06bf4ad | 2017-04-05 10:47:19 -0700 | [diff] [blame] | 1067 | |
| 1068 | if (remote->origin != REMOTE_UNCONFIGURED) { |
| 1069 | int i; |
| 1070 | argv_array_push(&cp.args, remote->name); |
Brandon Williams | 60fba4b | 2018-05-16 15:58:23 -0700 | [diff] [blame] | 1071 | for (i = 0; i < rs->raw_nr; i++) |
| 1072 | argv_array_push(&cp.args, rs->raw[i]); |
Brandon Williams | 06bf4ad | 2017-04-05 10:47:19 -0700 | [diff] [blame] | 1073 | } |
| 1074 | |
Jeff King | c12e865 | 2016-04-28 09:39:15 -0400 | [diff] [blame] | 1075 | prepare_submodule_repo_env(&cp.env_array); |
Heiko Voigt | eb21c73 | 2012-03-29 09:21:24 +0200 | [diff] [blame] | 1076 | cp.git_cmd = 1; |
| 1077 | cp.no_stdin = 1; |
| 1078 | cp.dir = path; |
| 1079 | if (run_command(&cp)) |
| 1080 | return 0; |
| 1081 | close(cp.out); |
| 1082 | } |
| 1083 | |
| 1084 | return 1; |
| 1085 | } |
| 1086 | |
Brandon Williams | 06bf4ad | 2017-04-05 10:47:19 -0700 | [diff] [blame] | 1087 | /* |
| 1088 | * Perform a check in the submodule to see if the remote and refspec work. |
| 1089 | * Die if the submodule can't be pushed. |
| 1090 | */ |
Brandon Williams | c7be720 | 2017-07-20 10:40:37 -0700 | [diff] [blame] | 1091 | static void submodule_push_check(const char *path, const char *head, |
| 1092 | const struct remote *remote, |
Brandon Williams | 60fba4b | 2018-05-16 15:58:23 -0700 | [diff] [blame] | 1093 | const struct refspec *rs) |
Brandon Williams | 06bf4ad | 2017-04-05 10:47:19 -0700 | [diff] [blame] | 1094 | { |
| 1095 | struct child_process cp = CHILD_PROCESS_INIT; |
| 1096 | int i; |
| 1097 | |
| 1098 | argv_array_push(&cp.args, "submodule--helper"); |
| 1099 | argv_array_push(&cp.args, "push-check"); |
Brandon Williams | c7be720 | 2017-07-20 10:40:37 -0700 | [diff] [blame] | 1100 | argv_array_push(&cp.args, head); |
Brandon Williams | 06bf4ad | 2017-04-05 10:47:19 -0700 | [diff] [blame] | 1101 | argv_array_push(&cp.args, remote->name); |
| 1102 | |
Brandon Williams | 60fba4b | 2018-05-16 15:58:23 -0700 | [diff] [blame] | 1103 | for (i = 0; i < rs->raw_nr; i++) |
| 1104 | argv_array_push(&cp.args, rs->raw[i]); |
Brandon Williams | 06bf4ad | 2017-04-05 10:47:19 -0700 | [diff] [blame] | 1105 | |
| 1106 | prepare_submodule_repo_env(&cp.env_array); |
| 1107 | cp.git_cmd = 1; |
| 1108 | cp.no_stdin = 1; |
| 1109 | cp.no_stdout = 1; |
| 1110 | cp.dir = path; |
| 1111 | |
| 1112 | /* |
| 1113 | * Simply indicate if 'submodule--helper push-check' failed. |
| 1114 | * More detailed error information will be provided by the |
| 1115 | * child process. |
| 1116 | */ |
| 1117 | if (run_command(&cp)) |
| 1118 | die("process for submodule '%s' failed", path); |
| 1119 | } |
| 1120 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 1121 | int push_unpushed_submodules(struct repository *r, |
Nguyễn Thái Ngọc Duy | 174d131 | 2018-09-21 17:57:35 +0200 | [diff] [blame] | 1122 | struct oid_array *commits, |
Brandon Williams | 06bf4ad | 2017-04-05 10:47:19 -0700 | [diff] [blame] | 1123 | const struct remote *remote, |
Brandon Williams | 60fba4b | 2018-05-16 15:58:23 -0700 | [diff] [blame] | 1124 | const struct refspec *rs, |
Brandon Williams | 2a90556 | 2017-04-05 10:47:16 -0700 | [diff] [blame] | 1125 | const struct string_list *push_options, |
Brandon Williams | 0301c82 | 2016-11-17 10:46:04 -0800 | [diff] [blame] | 1126 | int dry_run) |
Heiko Voigt | eb21c73 | 2012-03-29 09:21:24 +0200 | [diff] [blame] | 1127 | { |
| 1128 | int i, ret = 1; |
Tanay Abhra | f93d7c6 | 2014-07-18 02:19:00 -0700 | [diff] [blame] | 1129 | struct string_list needs_pushing = STRING_LIST_INIT_DUP; |
Heiko Voigt | eb21c73 | 2012-03-29 09:21:24 +0200 | [diff] [blame] | 1130 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 1131 | if (!find_unpushed_submodules(r, commits, |
Nguyễn Thái Ngọc Duy | 174d131 | 2018-09-21 17:57:35 +0200 | [diff] [blame] | 1132 | remote->name, &needs_pushing)) |
Heiko Voigt | eb21c73 | 2012-03-29 09:21:24 +0200 | [diff] [blame] | 1133 | return 1; |
| 1134 | |
Brandon Williams | 06bf4ad | 2017-04-05 10:47:19 -0700 | [diff] [blame] | 1135 | /* |
| 1136 | * Verify that the remote and refspec can be propagated to all |
| 1137 | * submodules. This check can be skipped if the remote and refspec |
| 1138 | * won't be propagated due to the remote being unconfigured (e.g. a URL |
| 1139 | * instead of a remote name). |
| 1140 | */ |
Brandon Williams | c7be720 | 2017-07-20 10:40:37 -0700 | [diff] [blame] | 1141 | if (remote->origin != REMOTE_UNCONFIGURED) { |
| 1142 | char *head; |
| 1143 | struct object_id head_oid; |
| 1144 | |
brian m. carlson | 0f2dc72 | 2017-10-15 22:06:55 +0000 | [diff] [blame] | 1145 | head = resolve_refdup("HEAD", 0, &head_oid, NULL); |
Brandon Williams | c7be720 | 2017-07-20 10:40:37 -0700 | [diff] [blame] | 1146 | if (!head) |
| 1147 | die(_("Failed to resolve HEAD as a valid ref.")); |
| 1148 | |
Brandon Williams | 06bf4ad | 2017-04-05 10:47:19 -0700 | [diff] [blame] | 1149 | for (i = 0; i < needs_pushing.nr; i++) |
| 1150 | submodule_push_check(needs_pushing.items[i].string, |
Brandon Williams | 60fba4b | 2018-05-16 15:58:23 -0700 | [diff] [blame] | 1151 | head, remote, rs); |
Brandon Williams | c7be720 | 2017-07-20 10:40:37 -0700 | [diff] [blame] | 1152 | free(head); |
| 1153 | } |
Brandon Williams | 06bf4ad | 2017-04-05 10:47:19 -0700 | [diff] [blame] | 1154 | |
| 1155 | /* Actually push the submodules */ |
Heiko Voigt | eb21c73 | 2012-03-29 09:21:24 +0200 | [diff] [blame] | 1156 | for (i = 0; i < needs_pushing.nr; i++) { |
| 1157 | const char *path = needs_pushing.items[i].string; |
| 1158 | fprintf(stderr, "Pushing submodule '%s'\n", path); |
Brandon Williams | 60fba4b | 2018-05-16 15:58:23 -0700 | [diff] [blame] | 1159 | if (!push_submodule(path, remote, rs, |
Brandon Williams | 06bf4ad | 2017-04-05 10:47:19 -0700 | [diff] [blame] | 1160 | push_options, dry_run)) { |
Heiko Voigt | eb21c73 | 2012-03-29 09:21:24 +0200 | [diff] [blame] | 1161 | fprintf(stderr, "Unable to push submodule '%s'\n", path); |
| 1162 | ret = 0; |
| 1163 | } |
| 1164 | } |
| 1165 | |
| 1166 | string_list_clear(&needs_pushing, 0); |
| 1167 | |
| 1168 | return ret; |
| 1169 | } |
| 1170 | |
Brandon Williams | 419fd78 | 2017-04-28 16:53:57 -0700 | [diff] [blame] | 1171 | static int append_oid_to_array(const char *ref, const struct object_id *oid, |
| 1172 | int flags, void *data) |
Jeff King | 6859de4 | 2011-09-12 15:56:52 -0400 | [diff] [blame] | 1173 | { |
Brandon Williams | 419fd78 | 2017-04-28 16:53:57 -0700 | [diff] [blame] | 1174 | struct oid_array *array = data; |
| 1175 | oid_array_append(array, oid); |
Jeff King | 6859de4 | 2011-09-12 15:56:52 -0400 | [diff] [blame] | 1176 | return 0; |
| 1177 | } |
| 1178 | |
brian m. carlson | 2eb80bc | 2017-03-26 16:01:35 +0000 | [diff] [blame] | 1179 | void check_for_new_submodule_commits(struct object_id *oid) |
Jens Lehmann | 88a2197 | 2011-03-06 23:10:46 +0100 | [diff] [blame] | 1180 | { |
Jeff King | 6859de4 | 2011-09-12 15:56:52 -0400 | [diff] [blame] | 1181 | if (!initialized_fetch_ref_tips) { |
Brandon Williams | 419fd78 | 2017-04-28 16:53:57 -0700 | [diff] [blame] | 1182 | for_each_ref(append_oid_to_array, &ref_tips_before_fetch); |
Jeff King | 6859de4 | 2011-09-12 15:56:52 -0400 | [diff] [blame] | 1183 | initialized_fetch_ref_tips = 1; |
| 1184 | } |
| 1185 | |
brian m. carlson | 910650d | 2017-03-31 01:40:00 +0000 | [diff] [blame] | 1186 | oid_array_append(&ref_tips_after_fetch, oid); |
Jeff King | 6859de4 | 2011-09-12 15:56:52 -0400 | [diff] [blame] | 1187 | } |
| 1188 | |
Stefan Beller | 16dd6fe | 2018-11-28 16:27:51 -0800 | [diff] [blame] | 1189 | static void calculate_changed_submodule_paths(struct repository *r, |
| 1190 | struct string_list *changed_submodule_names) |
Jeff King | 6859de4 | 2011-09-12 15:56:52 -0400 | [diff] [blame] | 1191 | { |
Jeff King | c1189ca | 2011-09-13 17:57:57 -0400 | [diff] [blame] | 1192 | struct argv_array argv = ARGV_ARRAY_INIT; |
Stefan Beller | bcd7337 | 2018-11-28 16:27:52 -0800 | [diff] [blame] | 1193 | struct string_list_item *name; |
Jens Lehmann | 88a2197 | 2011-03-06 23:10:46 +0100 | [diff] [blame] | 1194 | |
Jens Lehmann | 18322ba | 2011-09-09 20:22:03 +0200 | [diff] [blame] | 1195 | /* No need to check if there are no submodules configured */ |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 1196 | if (!submodule_from_path(r, NULL, NULL)) |
Jens Lehmann | 18322ba | 2011-09-09 20:22:03 +0200 | [diff] [blame] | 1197 | return; |
| 1198 | |
Jeff King | c1189ca | 2011-09-13 17:57:57 -0400 | [diff] [blame] | 1199 | argv_array_push(&argv, "--"); /* argv[0] program name */ |
brian m. carlson | 910650d | 2017-03-31 01:40:00 +0000 | [diff] [blame] | 1200 | oid_array_for_each_unique(&ref_tips_after_fetch, |
Brandon Williams | d1a8460 | 2017-04-28 16:53:59 -0700 | [diff] [blame] | 1201 | append_oid_to_argv, &argv); |
Jeff King | c1189ca | 2011-09-13 17:57:57 -0400 | [diff] [blame] | 1202 | argv_array_push(&argv, "--not"); |
brian m. carlson | 910650d | 2017-03-31 01:40:00 +0000 | [diff] [blame] | 1203 | oid_array_for_each_unique(&ref_tips_before_fetch, |
Brandon Williams | d1a8460 | 2017-04-28 16:53:59 -0700 | [diff] [blame] | 1204 | append_oid_to_argv, &argv); |
Jens Lehmann | 88a2197 | 2011-03-06 23:10:46 +0100 | [diff] [blame] | 1205 | |
| 1206 | /* |
| 1207 | * Collect all submodules (whether checked out or not) for which new |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 1208 | * commits have been recorded upstream in "changed_submodule_names". |
Jens Lehmann | 88a2197 | 2011-03-06 23:10:46 +0100 | [diff] [blame] | 1209 | */ |
Stefan Beller | bcd7337 | 2018-11-28 16:27:52 -0800 | [diff] [blame] | 1210 | collect_changed_submodules(r, changed_submodule_names, &argv); |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 1211 | |
Stefan Beller | bcd7337 | 2018-11-28 16:27:52 -0800 | [diff] [blame] | 1212 | for_each_string_list_item(name, changed_submodule_names) { |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 1213 | struct oid_array *commits = name->util; |
| 1214 | const struct submodule *submodule; |
| 1215 | const char *path = NULL; |
| 1216 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 1217 | submodule = submodule_from_name(r, &null_oid, name->string); |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 1218 | if (submodule) |
| 1219 | path = submodule->path; |
| 1220 | else |
| 1221 | path = default_name_or_path(name->string); |
| 1222 | |
| 1223 | if (!path) |
| 1224 | continue; |
Brandon Williams | aacc5c1 | 2017-05-01 18:02:39 -0700 | [diff] [blame] | 1225 | |
Stefan Beller | bcd7337 | 2018-11-28 16:27:52 -0800 | [diff] [blame] | 1226 | if (submodule_has_commits(r, path, commits)) { |
| 1227 | oid_array_clear(commits); |
| 1228 | *name->string = '\0'; |
| 1229 | } |
Jens Lehmann | 88a2197 | 2011-03-06 23:10:46 +0100 | [diff] [blame] | 1230 | } |
Jeff King | 6859de4 | 2011-09-12 15:56:52 -0400 | [diff] [blame] | 1231 | |
Stefan Beller | bcd7337 | 2018-11-28 16:27:52 -0800 | [diff] [blame] | 1232 | string_list_remove_empty_items(changed_submodule_names, 1); |
| 1233 | |
Jeff King | c1189ca | 2011-09-13 17:57:57 -0400 | [diff] [blame] | 1234 | argv_array_clear(&argv); |
brian m. carlson | 910650d | 2017-03-31 01:40:00 +0000 | [diff] [blame] | 1235 | oid_array_clear(&ref_tips_before_fetch); |
| 1236 | oid_array_clear(&ref_tips_after_fetch); |
Jeff King | 6859de4 | 2011-09-12 15:56:52 -0400 | [diff] [blame] | 1237 | initialized_fetch_ref_tips = 0; |
Jens Lehmann | 88a2197 | 2011-03-06 23:10:46 +0100 | [diff] [blame] | 1238 | } |
| 1239 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 1240 | int submodule_touches_in_range(struct repository *r, |
Nguyễn Thái Ngọc Duy | 174d131 | 2018-09-21 17:57:35 +0200 | [diff] [blame] | 1241 | struct object_id *excl_oid, |
Stefan Beller | a6d7eb2 | 2017-06-23 12:13:02 -0700 | [diff] [blame] | 1242 | struct object_id *incl_oid) |
| 1243 | { |
| 1244 | struct string_list subs = STRING_LIST_INIT_DUP; |
| 1245 | struct argv_array args = ARGV_ARRAY_INIT; |
| 1246 | int ret; |
| 1247 | |
Stefan Beller | a6d7eb2 | 2017-06-23 12:13:02 -0700 | [diff] [blame] | 1248 | /* No need to check if there are no submodules configured */ |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 1249 | if (!submodule_from_path(r, NULL, NULL)) |
Stefan Beller | a6d7eb2 | 2017-06-23 12:13:02 -0700 | [diff] [blame] | 1250 | return 0; |
| 1251 | |
| 1252 | argv_array_push(&args, "--"); /* args[0] program name */ |
| 1253 | argv_array_push(&args, oid_to_hex(incl_oid)); |
Jonathan Tan | 4d36f88 | 2018-05-24 13:47:29 -0700 | [diff] [blame] | 1254 | if (!is_null_oid(excl_oid)) { |
| 1255 | argv_array_push(&args, "--not"); |
| 1256 | argv_array_push(&args, oid_to_hex(excl_oid)); |
| 1257 | } |
Stefan Beller | a6d7eb2 | 2017-06-23 12:13:02 -0700 | [diff] [blame] | 1258 | |
Nguyễn Thái Ngọc Duy | 6245b98 | 2018-10-19 19:34:43 +0200 | [diff] [blame] | 1259 | collect_changed_submodules(r, &subs, &args); |
Stefan Beller | a6d7eb2 | 2017-06-23 12:13:02 -0700 | [diff] [blame] | 1260 | ret = subs.nr; |
| 1261 | |
| 1262 | argv_array_clear(&args); |
| 1263 | |
| 1264 | free_submodules_oids(&subs); |
| 1265 | return ret; |
| 1266 | } |
| 1267 | |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1268 | struct submodule_parallel_fetch { |
| 1269 | int count; |
| 1270 | struct argv_array args; |
Brandon Williams | e724197 | 2017-12-12 11:53:52 -0800 | [diff] [blame] | 1271 | struct repository *r; |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1272 | const char *prefix; |
| 1273 | int command_line_option; |
Brandon Williams | 8fa2915 | 2017-08-02 12:49:19 -0700 | [diff] [blame] | 1274 | int default_option; |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1275 | int quiet; |
| 1276 | int result; |
Stefan Beller | 16dd6fe | 2018-11-28 16:27:51 -0800 | [diff] [blame] | 1277 | |
| 1278 | struct string_list changed_submodule_names; |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1279 | |
| 1280 | /* Pending fetches by OIDs */ |
| 1281 | struct fetch_task **oid_fetch_tasks; |
| 1282 | int oid_fetch_tasks_nr, oid_fetch_tasks_alloc; |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1283 | }; |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1284 | #define SPF_INIT {0, ARGV_ARRAY_INIT, NULL, NULL, 0, 0, 0, 0, \ |
| 1285 | STRING_LIST_INIT_DUP, \ |
| 1286 | NULL, 0, 0} |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1287 | |
Heiko Voigt | 4b4aced | 2017-10-16 15:59:05 +0200 | [diff] [blame] | 1288 | static int get_fetch_recurse_config(const struct submodule *submodule, |
| 1289 | struct submodule_parallel_fetch *spf) |
| 1290 | { |
| 1291 | if (spf->command_line_option != RECURSE_SUBMODULES_DEFAULT) |
| 1292 | return spf->command_line_option; |
| 1293 | |
| 1294 | if (submodule) { |
| 1295 | char *key; |
| 1296 | const char *value; |
| 1297 | |
| 1298 | int fetch_recurse = submodule->fetch_recurse; |
| 1299 | key = xstrfmt("submodule.%s.fetchRecurseSubmodules", submodule->name); |
Brandon Williams | e724197 | 2017-12-12 11:53:52 -0800 | [diff] [blame] | 1300 | if (!repo_config_get_string_const(spf->r, key, &value)) { |
Heiko Voigt | 4b4aced | 2017-10-16 15:59:05 +0200 | [diff] [blame] | 1301 | fetch_recurse = parse_fetch_recurse_submodules_arg(key, value); |
| 1302 | } |
| 1303 | free(key); |
| 1304 | |
| 1305 | if (fetch_recurse != RECURSE_SUBMODULES_NONE) |
| 1306 | /* local config overrules everything except commandline */ |
| 1307 | return fetch_recurse; |
| 1308 | } |
| 1309 | |
| 1310 | return spf->default_option; |
| 1311 | } |
| 1312 | |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1313 | /* |
| 1314 | * Fetch in progress (if callback data) or |
| 1315 | * pending (if in oid_fetch_tasks in struct submodule_parallel_fetch) |
| 1316 | */ |
| 1317 | struct fetch_task { |
| 1318 | struct repository *repo; |
| 1319 | const struct submodule *sub; |
| 1320 | unsigned free_sub : 1; /* Do we need to free the submodule? */ |
| 1321 | |
| 1322 | struct oid_array *commits; /* Ensure these commits are fetched */ |
| 1323 | }; |
| 1324 | |
| 1325 | /** |
| 1326 | * When a submodule is not defined in .gitmodules, we cannot access it |
| 1327 | * via the regular submodule-config. Create a fake submodule, which we can |
| 1328 | * work on. |
| 1329 | */ |
| 1330 | static const struct submodule *get_non_gitmodules_submodule(const char *path) |
| 1331 | { |
| 1332 | struct submodule *ret = NULL; |
| 1333 | const char *name = default_name_or_path(path); |
| 1334 | |
| 1335 | if (!name) |
| 1336 | return NULL; |
| 1337 | |
| 1338 | ret = xmalloc(sizeof(*ret)); |
| 1339 | memset(ret, 0, sizeof(*ret)); |
| 1340 | ret->path = name; |
| 1341 | ret->name = name; |
| 1342 | |
| 1343 | return (const struct submodule *) ret; |
| 1344 | } |
| 1345 | |
| 1346 | static struct fetch_task *fetch_task_create(struct repository *r, |
| 1347 | const char *path) |
| 1348 | { |
| 1349 | struct fetch_task *task = xmalloc(sizeof(*task)); |
| 1350 | memset(task, 0, sizeof(*task)); |
| 1351 | |
| 1352 | task->sub = submodule_from_path(r, &null_oid, path); |
| 1353 | if (!task->sub) { |
| 1354 | /* |
| 1355 | * No entry in .gitmodules? Technically not a submodule, |
| 1356 | * but historically we supported repositories that happen to be |
| 1357 | * in-place where a gitlink is. Keep supporting them. |
| 1358 | */ |
| 1359 | task->sub = get_non_gitmodules_submodule(path); |
| 1360 | if (!task->sub) { |
| 1361 | free(task); |
| 1362 | return NULL; |
| 1363 | } |
| 1364 | |
| 1365 | task->free_sub = 1; |
| 1366 | } |
| 1367 | |
| 1368 | return task; |
| 1369 | } |
| 1370 | |
| 1371 | static void fetch_task_release(struct fetch_task *p) |
| 1372 | { |
| 1373 | if (p->free_sub) |
| 1374 | free((void*)p->sub); |
| 1375 | p->free_sub = 0; |
| 1376 | p->sub = NULL; |
| 1377 | |
| 1378 | if (p->repo) |
| 1379 | repo_clear(p->repo); |
| 1380 | FREE_AND_NULL(p->repo); |
| 1381 | } |
| 1382 | |
Stefan Beller | 26f80cc | 2018-11-28 16:27:54 -0800 | [diff] [blame] | 1383 | static struct repository *get_submodule_repo_for(struct repository *r, |
| 1384 | const struct submodule *sub) |
| 1385 | { |
| 1386 | struct repository *ret = xmalloc(sizeof(*ret)); |
| 1387 | |
| 1388 | if (repo_submodule_init(ret, r, sub)) { |
| 1389 | /* |
| 1390 | * No entry in .gitmodules? Technically not a submodule, |
| 1391 | * but historically we supported repositories that happen to be |
| 1392 | * in-place where a gitlink is. Keep supporting them. |
| 1393 | */ |
| 1394 | struct strbuf gitdir = STRBUF_INIT; |
| 1395 | strbuf_repo_worktree_path(&gitdir, r, "%s/.git", sub->path); |
| 1396 | if (repo_init(ret, gitdir.buf, NULL)) { |
| 1397 | strbuf_release(&gitdir); |
| 1398 | free(ret); |
| 1399 | return NULL; |
| 1400 | } |
| 1401 | strbuf_release(&gitdir); |
| 1402 | } |
| 1403 | |
| 1404 | return ret; |
| 1405 | } |
| 1406 | |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1407 | static int get_next_submodule(struct child_process *cp, |
| 1408 | struct strbuf *err, void *data, void **task_cb) |
Jens Lehmann | 7dce19d | 2010-11-12 13:54:52 +0100 | [diff] [blame] | 1409 | { |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1410 | struct submodule_parallel_fetch *spf = data; |
Jens Lehmann | 7dce19d | 2010-11-12 13:54:52 +0100 | [diff] [blame] | 1411 | |
Brandon Williams | e724197 | 2017-12-12 11:53:52 -0800 | [diff] [blame] | 1412 | for (; spf->count < spf->r->index->cache_nr; spf->count++) { |
Brandon Williams | e724197 | 2017-12-12 11:53:52 -0800 | [diff] [blame] | 1413 | const struct cache_entry *ce = spf->r->index->cache[spf->count]; |
Stefan Beller | 26f80cc | 2018-11-28 16:27:54 -0800 | [diff] [blame] | 1414 | const char *default_argv; |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1415 | struct fetch_task *task; |
Jens Lehmann | 7dce19d | 2010-11-12 13:54:52 +0100 | [diff] [blame] | 1416 | |
| 1417 | if (!S_ISGITLINK(ce->ce_mode)) |
| 1418 | continue; |
| 1419 | |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1420 | task = fetch_task_create(spf->r, ce->name); |
| 1421 | if (!task) |
| 1422 | continue; |
Brandon Williams | 492c6c4 | 2017-08-03 11:19:51 -0700 | [diff] [blame] | 1423 | |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1424 | switch (get_fetch_recurse_config(task->sub, spf)) |
Heiko Voigt | 4b4aced | 2017-10-16 15:59:05 +0200 | [diff] [blame] | 1425 | { |
| 1426 | default: |
| 1427 | case RECURSE_SUBMODULES_DEFAULT: |
| 1428 | case RECURSE_SUBMODULES_ON_DEMAND: |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1429 | if (!task->sub || |
Stefan Beller | 08a297b | 2018-11-28 16:27:50 -0800 | [diff] [blame] | 1430 | !string_list_lookup( |
Stefan Beller | 16dd6fe | 2018-11-28 16:27:51 -0800 | [diff] [blame] | 1431 | &spf->changed_submodule_names, |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1432 | task->sub->name)) |
Jens Lehmann | 8f0700d | 2011-03-06 23:11:21 +0100 | [diff] [blame] | 1433 | continue; |
| 1434 | default_argv = "on-demand"; |
Heiko Voigt | 4b4aced | 2017-10-16 15:59:05 +0200 | [diff] [blame] | 1435 | break; |
| 1436 | case RECURSE_SUBMODULES_ON: |
| 1437 | default_argv = "yes"; |
| 1438 | break; |
| 1439 | case RECURSE_SUBMODULES_OFF: |
| 1440 | continue; |
Jens Lehmann | be254a0 | 2010-11-11 00:55:02 +0100 | [diff] [blame] | 1441 | } |
| 1442 | |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1443 | task->repo = get_submodule_repo_for(spf->r, task->sub); |
| 1444 | if (task->repo) { |
| 1445 | struct strbuf submodule_prefix = STRBUF_INIT; |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1446 | child_process_init(cp); |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1447 | cp->dir = task->repo->gitdir; |
Stefan Beller | a62387b | 2018-11-28 16:27:55 -0800 | [diff] [blame] | 1448 | prepare_submodule_repo_env_in_gitdir(&cp->env_array); |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1449 | cp->git_cmd = 1; |
| 1450 | if (!spf->quiet) |
| 1451 | strbuf_addf(err, "Fetching submodule %s%s\n", |
| 1452 | spf->prefix, ce->name); |
| 1453 | argv_array_init(&cp->args); |
| 1454 | argv_array_pushv(&cp->args, spf->args.argv); |
| 1455 | argv_array_push(&cp->args, default_argv); |
| 1456 | argv_array_push(&cp->args, "--submodule-prefix"); |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1457 | |
| 1458 | strbuf_addf(&submodule_prefix, "%s%s/", |
| 1459 | spf->prefix, |
| 1460 | task->sub->path); |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1461 | argv_array_push(&cp->args, submodule_prefix.buf); |
Stefan Beller | 26f80cc | 2018-11-28 16:27:54 -0800 | [diff] [blame] | 1462 | |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1463 | spf->count++; |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1464 | *task_cb = task; |
| 1465 | |
| 1466 | strbuf_release(&submodule_prefix); |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1467 | return 1; |
Stefan Beller | 26f80cc | 2018-11-28 16:27:54 -0800 | [diff] [blame] | 1468 | } else { |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1469 | |
| 1470 | fetch_task_release(task); |
| 1471 | free(task); |
| 1472 | |
Stefan Beller | 26f80cc | 2018-11-28 16:27:54 -0800 | [diff] [blame] | 1473 | /* |
| 1474 | * An empty directory is normal, |
| 1475 | * the submodule is not initialized |
| 1476 | */ |
| 1477 | if (S_ISGITLINK(ce->ce_mode) && |
| 1478 | !is_empty_dir(ce->name)) { |
| 1479 | spf->result = 1; |
| 1480 | strbuf_addf(err, |
| 1481 | _("Could not access submodule '%s'"), |
| 1482 | ce->name); |
| 1483 | } |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1484 | } |
Jens Lehmann | 7dce19d | 2010-11-12 13:54:52 +0100 | [diff] [blame] | 1485 | } |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1486 | |
| 1487 | if (spf->oid_fetch_tasks_nr) { |
| 1488 | struct fetch_task *task = |
| 1489 | spf->oid_fetch_tasks[spf->oid_fetch_tasks_nr - 1]; |
| 1490 | struct strbuf submodule_prefix = STRBUF_INIT; |
| 1491 | spf->oid_fetch_tasks_nr--; |
| 1492 | |
| 1493 | strbuf_addf(&submodule_prefix, "%s%s/", |
| 1494 | spf->prefix, task->sub->path); |
| 1495 | |
| 1496 | child_process_init(cp); |
| 1497 | prepare_submodule_repo_env_in_gitdir(&cp->env_array); |
| 1498 | cp->git_cmd = 1; |
| 1499 | cp->dir = task->repo->gitdir; |
| 1500 | |
| 1501 | argv_array_init(&cp->args); |
| 1502 | argv_array_pushv(&cp->args, spf->args.argv); |
| 1503 | argv_array_push(&cp->args, "on-demand"); |
| 1504 | argv_array_push(&cp->args, "--submodule-prefix"); |
| 1505 | argv_array_push(&cp->args, submodule_prefix.buf); |
| 1506 | |
| 1507 | /* NEEDSWORK: have get_default_remote from submodule--helper */ |
| 1508 | argv_array_push(&cp->args, "origin"); |
| 1509 | oid_array_for_each_unique(task->commits, |
| 1510 | append_oid_to_argv, &cp->args); |
| 1511 | |
| 1512 | *task_cb = task; |
| 1513 | strbuf_release(&submodule_prefix); |
| 1514 | return 1; |
| 1515 | } |
| 1516 | |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1517 | return 0; |
| 1518 | } |
| 1519 | |
Stefan Beller | 2a73b3d | 2016-02-29 13:57:06 -0800 | [diff] [blame] | 1520 | static int fetch_start_failure(struct strbuf *err, |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1521 | void *cb, void *task_cb) |
| 1522 | { |
| 1523 | struct submodule_parallel_fetch *spf = cb; |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1524 | struct fetch_task *task = task_cb; |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1525 | |
| 1526 | spf->result = 1; |
| 1527 | |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1528 | fetch_task_release(task); |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1529 | return 0; |
| 1530 | } |
| 1531 | |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1532 | static int commit_missing_in_sub(const struct object_id *oid, void *data) |
| 1533 | { |
| 1534 | struct repository *subrepo = data; |
| 1535 | |
| 1536 | enum object_type type = oid_object_info(subrepo, oid, NULL); |
| 1537 | |
| 1538 | return type != OBJ_COMMIT; |
| 1539 | } |
| 1540 | |
Stefan Beller | 2a73b3d | 2016-02-29 13:57:06 -0800 | [diff] [blame] | 1541 | static int fetch_finish(int retvalue, struct strbuf *err, |
| 1542 | void *cb, void *task_cb) |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1543 | { |
| 1544 | struct submodule_parallel_fetch *spf = cb; |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1545 | struct fetch_task *task = task_cb; |
| 1546 | |
| 1547 | struct string_list_item *it; |
| 1548 | struct oid_array *commits; |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1549 | |
| 1550 | if (retvalue) |
Jonathan Tan | bd5e567 | 2019-03-13 10:57:38 -0700 | [diff] [blame] | 1551 | /* |
| 1552 | * NEEDSWORK: This indicates that the overall fetch |
| 1553 | * failed, even though there may be a subsequent fetch |
| 1554 | * by commit hash that might work. It may be a good |
| 1555 | * idea to not indicate failure in this case, and only |
| 1556 | * indicate failure if the subsequent fetch fails. |
| 1557 | */ |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1558 | spf->result = 1; |
| 1559 | |
Stefan Beller | be76c21 | 2018-12-06 13:26:55 -0800 | [diff] [blame] | 1560 | if (!task || !task->sub) |
| 1561 | BUG("callback cookie bogus"); |
| 1562 | |
| 1563 | /* Is this the second time we process this submodule? */ |
| 1564 | if (task->commits) |
| 1565 | goto out; |
| 1566 | |
| 1567 | it = string_list_lookup(&spf->changed_submodule_names, task->sub->name); |
| 1568 | if (!it) |
| 1569 | /* Could be an unchanged submodule, not contained in the list */ |
| 1570 | goto out; |
| 1571 | |
| 1572 | commits = it->util; |
| 1573 | oid_array_filter(commits, |
| 1574 | commit_missing_in_sub, |
| 1575 | task->repo); |
| 1576 | |
| 1577 | /* Are there commits we want, but do not exist? */ |
| 1578 | if (commits->nr) { |
| 1579 | task->commits = commits; |
| 1580 | ALLOC_GROW(spf->oid_fetch_tasks, |
| 1581 | spf->oid_fetch_tasks_nr + 1, |
| 1582 | spf->oid_fetch_tasks_alloc); |
| 1583 | spf->oid_fetch_tasks[spf->oid_fetch_tasks_nr] = task; |
| 1584 | spf->oid_fetch_tasks_nr++; |
| 1585 | return 0; |
| 1586 | } |
| 1587 | |
| 1588 | out: |
| 1589 | fetch_task_release(task); |
| 1590 | |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1591 | return 0; |
| 1592 | } |
| 1593 | |
Brandon Williams | e724197 | 2017-12-12 11:53:52 -0800 | [diff] [blame] | 1594 | int fetch_populated_submodules(struct repository *r, |
| 1595 | const struct argv_array *options, |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1596 | const char *prefix, int command_line_option, |
Brandon Williams | 8fa2915 | 2017-08-02 12:49:19 -0700 | [diff] [blame] | 1597 | int default_option, |
Stefan Beller | 62104ba | 2015-12-15 16:04:12 -0800 | [diff] [blame] | 1598 | int quiet, int max_parallel_jobs) |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1599 | { |
| 1600 | int i; |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1601 | struct submodule_parallel_fetch spf = SPF_INIT; |
| 1602 | |
Brandon Williams | e724197 | 2017-12-12 11:53:52 -0800 | [diff] [blame] | 1603 | spf.r = r; |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1604 | spf.command_line_option = command_line_option; |
Brandon Williams | 8fa2915 | 2017-08-02 12:49:19 -0700 | [diff] [blame] | 1605 | spf.default_option = default_option; |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1606 | spf.quiet = quiet; |
| 1607 | spf.prefix = prefix; |
| 1608 | |
Brandon Williams | e724197 | 2017-12-12 11:53:52 -0800 | [diff] [blame] | 1609 | if (!r->worktree) |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1610 | goto out; |
| 1611 | |
Brandon Williams | e724197 | 2017-12-12 11:53:52 -0800 | [diff] [blame] | 1612 | if (repo_read_index(r) < 0) |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1613 | die("index file corrupt"); |
| 1614 | |
| 1615 | argv_array_push(&spf.args, "fetch"); |
| 1616 | for (i = 0; i < options->argc; i++) |
| 1617 | argv_array_push(&spf.args, options->argv[i]); |
| 1618 | argv_array_push(&spf.args, "--recurse-submodules-default"); |
| 1619 | /* default value, "--submodule-prefix" and its value are added later */ |
| 1620 | |
Stefan Beller | 16dd6fe | 2018-11-28 16:27:51 -0800 | [diff] [blame] | 1621 | calculate_changed_submodule_paths(r, &spf.changed_submodule_names); |
| 1622 | string_list_sort(&spf.changed_submodule_names); |
Jeff Hostetler | ee4512e | 2019-02-22 14:25:01 -0800 | [diff] [blame] | 1623 | run_processes_parallel_tr2(max_parallel_jobs, |
| 1624 | get_next_submodule, |
| 1625 | fetch_start_failure, |
| 1626 | fetch_finish, |
| 1627 | &spf, |
| 1628 | "submodule", "parallel/fetch"); |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1629 | |
| 1630 | argv_array_clear(&spf.args); |
Jens Lehmann | 88a2197 | 2011-03-06 23:10:46 +0100 | [diff] [blame] | 1631 | out: |
Stefan Beller | bcd7337 | 2018-11-28 16:27:52 -0800 | [diff] [blame] | 1632 | free_submodules_oids(&spf.changed_submodule_names); |
Stefan Beller | fe85ee6 | 2015-12-15 16:04:11 -0800 | [diff] [blame] | 1633 | return spf.result; |
Jens Lehmann | 7dce19d | 2010-11-12 13:54:52 +0100 | [diff] [blame] | 1634 | } |
| 1635 | |
Jens Lehmann | 3bfc450 | 2010-03-13 23:00:27 +0100 | [diff] [blame] | 1636 | unsigned is_submodule_modified(const char *path, int ignore_untracked) |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 1637 | { |
René Scharfe | d318027 | 2014-08-19 21:09:35 +0200 | [diff] [blame] | 1638 | struct child_process cp = CHILD_PROCESS_INIT; |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 1639 | struct strbuf buf = STRBUF_INIT; |
Stefan Beller | af6865a | 2017-03-24 17:36:06 -0700 | [diff] [blame] | 1640 | FILE *fp; |
Jens Lehmann | c7e1a73 | 2010-03-04 22:20:33 +0100 | [diff] [blame] | 1641 | unsigned dirty_submodule = 0; |
Jens Lehmann | eee49b6 | 2010-04-10 19:01:12 +0200 | [diff] [blame] | 1642 | const char *git_dir; |
Stefan Beller | af6865a | 2017-03-24 17:36:06 -0700 | [diff] [blame] | 1643 | int ignore_cp_exit_code = 0; |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 1644 | |
Jens Lehmann | eee49b6 | 2010-04-10 19:01:12 +0200 | [diff] [blame] | 1645 | strbuf_addf(&buf, "%s/.git", path); |
Junio C Hamano | 13d6ec9 | 2011-08-22 14:04:56 -0700 | [diff] [blame] | 1646 | git_dir = read_gitfile(buf.buf); |
Jens Lehmann | eee49b6 | 2010-04-10 19:01:12 +0200 | [diff] [blame] | 1647 | if (!git_dir) |
| 1648 | git_dir = buf.buf; |
Stefan Beller | 5c896f7 | 2017-03-24 17:36:08 -0700 | [diff] [blame] | 1649 | if (!is_git_directory(git_dir)) { |
| 1650 | if (is_directory(git_dir)) |
| 1651 | die(_("'%s' not recognized as a git repository"), git_dir); |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 1652 | strbuf_release(&buf); |
| 1653 | /* The submodule is not checked out, so it is not modified */ |
| 1654 | return 0; |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 1655 | } |
| 1656 | strbuf_reset(&buf); |
| 1657 | |
Stefan Beller | fcecf0b | 2017-03-24 17:36:07 -0700 | [diff] [blame] | 1658 | argv_array_pushl(&cp.args, "status", "--porcelain=2", NULL); |
Jens Lehmann | 3bfc450 | 2010-03-13 23:00:27 +0100 | [diff] [blame] | 1659 | if (ignore_untracked) |
Stefan Beller | d0d7fed | 2017-03-24 17:36:04 -0700 | [diff] [blame] | 1660 | argv_array_push(&cp.args, "-uno"); |
Jens Lehmann | 3bfc450 | 2010-03-13 23:00:27 +0100 | [diff] [blame] | 1661 | |
Jeff King | c12e865 | 2016-04-28 09:39:15 -0400 | [diff] [blame] | 1662 | prepare_submodule_repo_env(&cp.env_array); |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 1663 | cp.git_cmd = 1; |
| 1664 | cp.no_stdin = 1; |
| 1665 | cp.out = -1; |
Jens Lehmann | eee49b6 | 2010-04-10 19:01:12 +0200 | [diff] [blame] | 1666 | cp.dir = path; |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 1667 | if (start_command(&cp)) |
Stefan Beller | fcecf0b | 2017-03-24 17:36:07 -0700 | [diff] [blame] | 1668 | die("Could not run 'git status --porcelain=2' in submodule %s", path); |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 1669 | |
Stefan Beller | af6865a | 2017-03-24 17:36:06 -0700 | [diff] [blame] | 1670 | fp = xfdopen(cp.out, "r"); |
| 1671 | while (strbuf_getwholeline(&buf, fp, '\n') != EOF) { |
Stefan Beller | fcecf0b | 2017-03-24 17:36:07 -0700 | [diff] [blame] | 1672 | /* regular untracked files */ |
| 1673 | if (buf.buf[0] == '?') |
Jens Lehmann | c7e1a73 | 2010-03-04 22:20:33 +0100 | [diff] [blame] | 1674 | dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED; |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 1675 | |
Stefan Beller | 40069d6 | 2017-03-29 15:26:16 -0700 | [diff] [blame] | 1676 | if (buf.buf[0] == 'u' || |
| 1677 | buf.buf[0] == '1' || |
| 1678 | buf.buf[0] == '2') { |
| 1679 | /* T = line type, XY = status, SSSS = submodule state */ |
| 1680 | if (buf.len < strlen("T XY SSSS")) |
Johannes Schindelin | 033abf9 | 2018-05-02 11:38:39 +0200 | [diff] [blame] | 1681 | BUG("invalid status --porcelain=2 line %s", |
Stefan Beller | 40069d6 | 2017-03-29 15:26:16 -0700 | [diff] [blame] | 1682 | buf.buf); |
| 1683 | |
| 1684 | if (buf.buf[5] == 'S' && buf.buf[8] == 'U') |
| 1685 | /* nested untracked file */ |
| 1686 | dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED; |
| 1687 | |
| 1688 | if (buf.buf[0] == 'u' || |
| 1689 | buf.buf[0] == '2' || |
| 1690 | memcmp(buf.buf + 5, "S..U", 4)) |
| 1691 | /* other change */ |
| 1692 | dirty_submodule |= DIRTY_SUBMODULE_MODIFIED; |
| 1693 | } |
Stefan Beller | 64f9a94 | 2017-03-24 17:36:05 -0700 | [diff] [blame] | 1694 | |
| 1695 | if ((dirty_submodule & DIRTY_SUBMODULE_MODIFIED) && |
| 1696 | ((dirty_submodule & DIRTY_SUBMODULE_UNTRACKED) || |
Stefan Beller | af6865a | 2017-03-24 17:36:06 -0700 | [diff] [blame] | 1697 | ignore_untracked)) { |
| 1698 | /* |
| 1699 | * We're not interested in any further information from |
| 1700 | * the child any more, neither output nor its exit code. |
| 1701 | */ |
| 1702 | ignore_cp_exit_code = 1; |
Stefan Beller | 64f9a94 | 2017-03-24 17:36:05 -0700 | [diff] [blame] | 1703 | break; |
Stefan Beller | af6865a | 2017-03-24 17:36:06 -0700 | [diff] [blame] | 1704 | } |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 1705 | } |
Stefan Beller | af6865a | 2017-03-24 17:36:06 -0700 | [diff] [blame] | 1706 | fclose(fp); |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 1707 | |
Stefan Beller | af6865a | 2017-03-24 17:36:06 -0700 | [diff] [blame] | 1708 | if (finish_command(&cp) && !ignore_cp_exit_code) |
Stefan Beller | fcecf0b | 2017-03-24 17:36:07 -0700 | [diff] [blame] | 1709 | die("'git status --porcelain=2' failed in submodule %s", path); |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 1710 | |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 1711 | strbuf_release(&buf); |
Jens Lehmann | c7e1a73 | 2010-03-04 22:20:33 +0100 | [diff] [blame] | 1712 | return dirty_submodule; |
Jens Lehmann | ee6fc51 | 2010-01-16 18:42:24 +0100 | [diff] [blame] | 1713 | } |
Heiko Voigt | 68d03e4 | 2010-07-07 15:39:13 +0200 | [diff] [blame] | 1714 | |
Jens Lehmann | 293ab15 | 2012-09-26 20:21:13 +0200 | [diff] [blame] | 1715 | int submodule_uses_gitfile(const char *path) |
| 1716 | { |
René Scharfe | d318027 | 2014-08-19 21:09:35 +0200 | [diff] [blame] | 1717 | struct child_process cp = CHILD_PROCESS_INIT; |
Jens Lehmann | 293ab15 | 2012-09-26 20:21:13 +0200 | [diff] [blame] | 1718 | const char *argv[] = { |
| 1719 | "submodule", |
| 1720 | "foreach", |
| 1721 | "--quiet", |
| 1722 | "--recursive", |
| 1723 | "test -f .git", |
| 1724 | NULL, |
| 1725 | }; |
| 1726 | struct strbuf buf = STRBUF_INIT; |
| 1727 | const char *git_dir; |
| 1728 | |
| 1729 | strbuf_addf(&buf, "%s/.git", path); |
| 1730 | git_dir = read_gitfile(buf.buf); |
| 1731 | if (!git_dir) { |
| 1732 | strbuf_release(&buf); |
| 1733 | return 0; |
| 1734 | } |
| 1735 | strbuf_release(&buf); |
| 1736 | |
| 1737 | /* Now test that all nested submodules use a gitfile too */ |
Jens Lehmann | 293ab15 | 2012-09-26 20:21:13 +0200 | [diff] [blame] | 1738 | cp.argv = argv; |
Jeff King | c12e865 | 2016-04-28 09:39:15 -0400 | [diff] [blame] | 1739 | prepare_submodule_repo_env(&cp.env_array); |
Jens Lehmann | 293ab15 | 2012-09-26 20:21:13 +0200 | [diff] [blame] | 1740 | cp.git_cmd = 1; |
| 1741 | cp.no_stdin = 1; |
| 1742 | cp.no_stderr = 1; |
| 1743 | cp.no_stdout = 1; |
| 1744 | cp.dir = path; |
| 1745 | if (run_command(&cp)) |
| 1746 | return 0; |
| 1747 | |
| 1748 | return 1; |
| 1749 | } |
| 1750 | |
Stefan Beller | 83b7696 | 2016-12-20 15:20:11 -0800 | [diff] [blame] | 1751 | /* |
| 1752 | * Check if it is a bad idea to remove a submodule, i.e. if we'd lose data |
| 1753 | * when doing so. |
| 1754 | * |
| 1755 | * Return 1 if we'd lose data, return 0 if the removal is fine, |
| 1756 | * and negative values for errors. |
| 1757 | */ |
| 1758 | int bad_to_remove_submodule(const char *path, unsigned flags) |
Jens Lehmann | 293ab15 | 2012-09-26 20:21:13 +0200 | [diff] [blame] | 1759 | { |
Jens Lehmann | 293ab15 | 2012-09-26 20:21:13 +0200 | [diff] [blame] | 1760 | ssize_t len; |
René Scharfe | d318027 | 2014-08-19 21:09:35 +0200 | [diff] [blame] | 1761 | struct child_process cp = CHILD_PROCESS_INIT; |
Jens Lehmann | 293ab15 | 2012-09-26 20:21:13 +0200 | [diff] [blame] | 1762 | struct strbuf buf = STRBUF_INIT; |
Stefan Beller | 83b7696 | 2016-12-20 15:20:11 -0800 | [diff] [blame] | 1763 | int ret = 0; |
Jens Lehmann | 293ab15 | 2012-09-26 20:21:13 +0200 | [diff] [blame] | 1764 | |
René Scharfe | dbe44fa | 2015-05-19 23:44:23 +0200 | [diff] [blame] | 1765 | if (!file_exists(path) || is_empty_dir(path)) |
Jens Lehmann | 293ab15 | 2012-09-26 20:21:13 +0200 | [diff] [blame] | 1766 | return 0; |
| 1767 | |
Stefan Beller | 83b7696 | 2016-12-20 15:20:11 -0800 | [diff] [blame] | 1768 | if (!submodule_uses_gitfile(path)) |
| 1769 | return 1; |
| 1770 | |
| 1771 | argv_array_pushl(&cp.args, "status", "--porcelain", |
Stefan Beller | 5a1c824 | 2016-12-20 15:20:10 -0800 | [diff] [blame] | 1772 | "--ignore-submodules=none", NULL); |
Stefan Beller | 83b7696 | 2016-12-20 15:20:11 -0800 | [diff] [blame] | 1773 | |
| 1774 | if (flags & SUBMODULE_REMOVAL_IGNORE_UNTRACKED) |
| 1775 | argv_array_push(&cp.args, "-uno"); |
| 1776 | else |
| 1777 | argv_array_push(&cp.args, "-uall"); |
| 1778 | |
| 1779 | if (!(flags & SUBMODULE_REMOVAL_IGNORE_IGNORED_UNTRACKED)) |
| 1780 | argv_array_push(&cp.args, "--ignored"); |
| 1781 | |
Jeff King | c12e865 | 2016-04-28 09:39:15 -0400 | [diff] [blame] | 1782 | prepare_submodule_repo_env(&cp.env_array); |
Jens Lehmann | 293ab15 | 2012-09-26 20:21:13 +0200 | [diff] [blame] | 1783 | cp.git_cmd = 1; |
| 1784 | cp.no_stdin = 1; |
| 1785 | cp.out = -1; |
| 1786 | cp.dir = path; |
Stefan Beller | 83b7696 | 2016-12-20 15:20:11 -0800 | [diff] [blame] | 1787 | if (start_command(&cp)) { |
| 1788 | if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR) |
Ralf Thielow | 35ad44c | 2017-04-13 18:40:45 +0200 | [diff] [blame] | 1789 | die(_("could not start 'git status' in submodule '%s'"), |
Stefan Beller | 83b7696 | 2016-12-20 15:20:11 -0800 | [diff] [blame] | 1790 | path); |
| 1791 | ret = -1; |
| 1792 | goto out; |
| 1793 | } |
Jens Lehmann | 293ab15 | 2012-09-26 20:21:13 +0200 | [diff] [blame] | 1794 | |
| 1795 | len = strbuf_read(&buf, cp.out, 1024); |
| 1796 | if (len > 2) |
Stefan Beller | 83b7696 | 2016-12-20 15:20:11 -0800 | [diff] [blame] | 1797 | ret = 1; |
Jens Lehmann | 293ab15 | 2012-09-26 20:21:13 +0200 | [diff] [blame] | 1798 | close(cp.out); |
| 1799 | |
Stefan Beller | 83b7696 | 2016-12-20 15:20:11 -0800 | [diff] [blame] | 1800 | if (finish_command(&cp)) { |
| 1801 | if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR) |
Ralf Thielow | 35ad44c | 2017-04-13 18:40:45 +0200 | [diff] [blame] | 1802 | die(_("could not run 'git status' in submodule '%s'"), |
Stefan Beller | 83b7696 | 2016-12-20 15:20:11 -0800 | [diff] [blame] | 1803 | path); |
| 1804 | ret = -1; |
| 1805 | } |
| 1806 | out: |
Jens Lehmann | 293ab15 | 2012-09-26 20:21:13 +0200 | [diff] [blame] | 1807 | strbuf_release(&buf); |
Stefan Beller | 83b7696 | 2016-12-20 15:20:11 -0800 | [diff] [blame] | 1808 | return ret; |
Jens Lehmann | 293ab15 | 2012-09-26 20:21:13 +0200 | [diff] [blame] | 1809 | } |
| 1810 | |
Stefan Beller | 898c2e6 | 2018-12-14 15:59:43 -0800 | [diff] [blame] | 1811 | void submodule_unset_core_worktree(const struct submodule *sub) |
| 1812 | { |
| 1813 | char *config_path = xstrfmt("%s/modules/%s/config", |
| 1814 | get_git_common_dir(), sub->name); |
| 1815 | |
| 1816 | if (git_config_set_in_file_gently(config_path, "core.worktree", NULL)) |
| 1817 | warning(_("Could not unset core.worktree setting in submodule '%s'"), |
| 1818 | sub->path); |
| 1819 | |
| 1820 | free(config_path); |
| 1821 | } |
| 1822 | |
Stefan Beller | 202275b | 2017-03-14 14:46:36 -0700 | [diff] [blame] | 1823 | static const char *get_super_prefix_or_empty(void) |
| 1824 | { |
| 1825 | const char *s = get_super_prefix(); |
| 1826 | if (!s) |
| 1827 | s = ""; |
| 1828 | return s; |
| 1829 | } |
| 1830 | |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1831 | static int submodule_has_dirty_index(const struct submodule *sub) |
| 1832 | { |
| 1833 | struct child_process cp = CHILD_PROCESS_INIT; |
| 1834 | |
Stefan Beller | da27bc8 | 2017-05-02 12:32:13 -0700 | [diff] [blame] | 1835 | prepare_submodule_repo_env(&cp.env_array); |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1836 | |
| 1837 | cp.git_cmd = 1; |
| 1838 | argv_array_pushl(&cp.args, "diff-index", "--quiet", |
| 1839 | "--cached", "HEAD", NULL); |
| 1840 | cp.no_stdin = 1; |
| 1841 | cp.no_stdout = 1; |
| 1842 | cp.dir = sub->path; |
| 1843 | if (start_command(&cp)) |
| 1844 | die("could not recurse into submodule '%s'", sub->path); |
| 1845 | |
| 1846 | return finish_command(&cp); |
| 1847 | } |
| 1848 | |
| 1849 | static void submodule_reset_index(const char *path) |
| 1850 | { |
| 1851 | struct child_process cp = CHILD_PROCESS_INIT; |
Stefan Beller | da27bc8 | 2017-05-02 12:32:13 -0700 | [diff] [blame] | 1852 | prepare_submodule_repo_env(&cp.env_array); |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1853 | |
| 1854 | cp.git_cmd = 1; |
| 1855 | cp.no_stdin = 1; |
| 1856 | cp.dir = path; |
| 1857 | |
| 1858 | argv_array_pushf(&cp.args, "--super-prefix=%s%s/", |
| 1859 | get_super_prefix_or_empty(), path); |
| 1860 | argv_array_pushl(&cp.args, "read-tree", "-u", "--reset", NULL); |
| 1861 | |
brian m. carlson | 939b89a | 2018-05-02 00:25:59 +0000 | [diff] [blame] | 1862 | argv_array_push(&cp.args, empty_tree_oid_hex()); |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1863 | |
| 1864 | if (run_command(&cp)) |
| 1865 | die("could not reset submodule index"); |
| 1866 | } |
| 1867 | |
| 1868 | /** |
| 1869 | * Moves a submodule at a given path from a given head to another new head. |
| 1870 | * For edge cases (a submodule coming into existence or removing a submodule) |
| 1871 | * pass NULL for old or new respectively. |
| 1872 | */ |
| 1873 | int submodule_move_head(const char *path, |
Brandon Williams | bc09991 | 2018-02-14 10:59:49 -0800 | [diff] [blame] | 1874 | const char *old_head, |
| 1875 | const char *new_head, |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1876 | unsigned flags) |
| 1877 | { |
| 1878 | int ret = 0; |
| 1879 | struct child_process cp = CHILD_PROCESS_INIT; |
| 1880 | const struct submodule *sub; |
Stefan Beller | f2d4899 | 2017-04-18 14:37:24 -0700 | [diff] [blame] | 1881 | int *error_code_ptr, error_code; |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1882 | |
Brandon Williams | 627d934 | 2017-06-22 11:43:46 -0700 | [diff] [blame] | 1883 | if (!is_submodule_active(the_repository, path)) |
Stefan Beller | 823bab0 | 2017-04-18 14:37:23 -0700 | [diff] [blame] | 1884 | return 0; |
| 1885 | |
Stefan Beller | f2d4899 | 2017-04-18 14:37:24 -0700 | [diff] [blame] | 1886 | if (flags & SUBMODULE_MOVE_HEAD_FORCE) |
| 1887 | /* |
| 1888 | * Pass non NULL pointer to is_submodule_populated_gently |
| 1889 | * to prevent die()-ing. We'll use connect_work_tree_and_git_dir |
| 1890 | * to fixup the submodule in the force case later. |
| 1891 | */ |
| 1892 | error_code_ptr = &error_code; |
| 1893 | else |
| 1894 | error_code_ptr = NULL; |
| 1895 | |
Brandon Williams | bc09991 | 2018-02-14 10:59:49 -0800 | [diff] [blame] | 1896 | if (old_head && !is_submodule_populated_gently(path, error_code_ptr)) |
Stefan Beller | f2d4899 | 2017-04-18 14:37:24 -0700 | [diff] [blame] | 1897 | return 0; |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1898 | |
Stefan Beller | 3b8fb39 | 2018-03-28 15:35:29 -0700 | [diff] [blame] | 1899 | sub = submodule_from_path(the_repository, &null_oid, path); |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1900 | |
| 1901 | if (!sub) |
Johannes Schindelin | 033abf9 | 2018-05-02 11:38:39 +0200 | [diff] [blame] | 1902 | BUG("could not get submodule information for '%s'", path); |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1903 | |
Brandon Williams | bc09991 | 2018-02-14 10:59:49 -0800 | [diff] [blame] | 1904 | if (old_head && !(flags & SUBMODULE_MOVE_HEAD_FORCE)) { |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1905 | /* Check if the submodule has a dirty index. */ |
| 1906 | if (submodule_has_dirty_index(sub)) |
| 1907 | return error(_("submodule '%s' has dirty index"), path); |
| 1908 | } |
| 1909 | |
| 1910 | if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) { |
Brandon Williams | bc09991 | 2018-02-14 10:59:49 -0800 | [diff] [blame] | 1911 | if (old_head) { |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1912 | if (!submodule_uses_gitfile(path)) |
Jeff King | cf7a901 | 2019-05-09 17:27:31 -0400 | [diff] [blame] | 1913 | absorb_git_dir_into_superproject(path, |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1914 | ABSORB_GITDIR_RECURSE_SUBMODULES); |
| 1915 | } else { |
Stefan Beller | f2d4899 | 2017-04-18 14:37:24 -0700 | [diff] [blame] | 1916 | char *gitdir = xstrfmt("%s/modules/%s", |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1917 | get_git_common_dir(), sub->name); |
Stefan Beller | da62f78 | 2018-03-28 15:35:31 -0700 | [diff] [blame] | 1918 | connect_work_tree_and_git_dir(path, gitdir, 0); |
Stefan Beller | f2d4899 | 2017-04-18 14:37:24 -0700 | [diff] [blame] | 1919 | free(gitdir); |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1920 | |
| 1921 | /* make sure the index is clean as well */ |
| 1922 | submodule_reset_index(path); |
| 1923 | } |
Stefan Beller | f2d4899 | 2017-04-18 14:37:24 -0700 | [diff] [blame] | 1924 | |
Brandon Williams | bc09991 | 2018-02-14 10:59:49 -0800 | [diff] [blame] | 1925 | if (old_head && (flags & SUBMODULE_MOVE_HEAD_FORCE)) { |
Stefan Beller | f2d4899 | 2017-04-18 14:37:24 -0700 | [diff] [blame] | 1926 | char *gitdir = xstrfmt("%s/modules/%s", |
| 1927 | get_git_common_dir(), sub->name); |
Stefan Beller | da62f78 | 2018-03-28 15:35:31 -0700 | [diff] [blame] | 1928 | connect_work_tree_and_git_dir(path, gitdir, 1); |
Stefan Beller | f2d4899 | 2017-04-18 14:37:24 -0700 | [diff] [blame] | 1929 | free(gitdir); |
| 1930 | } |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1931 | } |
| 1932 | |
Stefan Beller | da27bc8 | 2017-05-02 12:32:13 -0700 | [diff] [blame] | 1933 | prepare_submodule_repo_env(&cp.env_array); |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1934 | |
| 1935 | cp.git_cmd = 1; |
| 1936 | cp.no_stdin = 1; |
| 1937 | cp.dir = path; |
| 1938 | |
| 1939 | argv_array_pushf(&cp.args, "--super-prefix=%s%s/", |
| 1940 | get_super_prefix_or_empty(), path); |
Stefan Beller | 218c883 | 2017-05-02 12:32:14 -0700 | [diff] [blame] | 1941 | argv_array_pushl(&cp.args, "read-tree", "--recurse-submodules", NULL); |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1942 | |
| 1943 | if (flags & SUBMODULE_MOVE_HEAD_DRY_RUN) |
| 1944 | argv_array_push(&cp.args, "-n"); |
| 1945 | else |
| 1946 | argv_array_push(&cp.args, "-u"); |
| 1947 | |
| 1948 | if (flags & SUBMODULE_MOVE_HEAD_FORCE) |
| 1949 | argv_array_push(&cp.args, "--reset"); |
| 1950 | else |
| 1951 | argv_array_push(&cp.args, "-m"); |
| 1952 | |
Stefan Beller | 7dcc1f4 | 2018-01-05 12:03:04 -0800 | [diff] [blame] | 1953 | if (!(flags & SUBMODULE_MOVE_HEAD_FORCE)) |
brian m. carlson | 939b89a | 2018-05-02 00:25:59 +0000 | [diff] [blame] | 1954 | argv_array_push(&cp.args, old_head ? old_head : empty_tree_oid_hex()); |
Stefan Beller | 7dcc1f4 | 2018-01-05 12:03:04 -0800 | [diff] [blame] | 1955 | |
brian m. carlson | 939b89a | 2018-05-02 00:25:59 +0000 | [diff] [blame] | 1956 | argv_array_push(&cp.args, new_head ? new_head : empty_tree_oid_hex()); |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1957 | |
| 1958 | if (run_command(&cp)) { |
Stefan Beller | ba95d4e | 2018-06-20 15:32:53 -0700 | [diff] [blame] | 1959 | ret = error(_("Submodule '%s' could not be updated."), path); |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1960 | goto out; |
| 1961 | } |
| 1962 | |
| 1963 | if (!(flags & SUBMODULE_MOVE_HEAD_DRY_RUN)) { |
Brandon Williams | bc09991 | 2018-02-14 10:59:49 -0800 | [diff] [blame] | 1964 | if (new_head) { |
Stefan Beller | a17062c | 2017-05-02 12:32:12 -0700 | [diff] [blame] | 1965 | child_process_init(&cp); |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1966 | /* also set the HEAD accordingly */ |
Stefan Beller | a17062c | 2017-05-02 12:32:12 -0700 | [diff] [blame] | 1967 | cp.git_cmd = 1; |
| 1968 | cp.no_stdin = 1; |
| 1969 | cp.dir = path; |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1970 | |
Stefan Beller | 218c883 | 2017-05-02 12:32:14 -0700 | [diff] [blame] | 1971 | prepare_submodule_repo_env(&cp.env_array); |
Stefan Beller | 3ef2538 | 2017-07-24 10:36:01 -0700 | [diff] [blame] | 1972 | argv_array_pushl(&cp.args, "update-ref", "HEAD", |
Brandon Williams | bc09991 | 2018-02-14 10:59:49 -0800 | [diff] [blame] | 1973 | "--no-deref", new_head, NULL); |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1974 | |
Stefan Beller | a17062c | 2017-05-02 12:32:12 -0700 | [diff] [blame] | 1975 | if (run_command(&cp)) { |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1976 | ret = -1; |
| 1977 | goto out; |
| 1978 | } |
| 1979 | } else { |
| 1980 | struct strbuf sb = STRBUF_INIT; |
| 1981 | |
| 1982 | strbuf_addf(&sb, "%s/.git", path); |
| 1983 | unlink_or_warn(sb.buf); |
| 1984 | strbuf_release(&sb); |
| 1985 | |
| 1986 | if (is_empty_dir(path)) |
| 1987 | rmdir_or_warn(path); |
Stefan Beller | 898c2e6 | 2018-12-14 15:59:43 -0800 | [diff] [blame] | 1988 | |
| 1989 | submodule_unset_core_worktree(sub); |
Stefan Beller | 6e3c159 | 2017-03-14 14:46:37 -0700 | [diff] [blame] | 1990 | } |
| 1991 | } |
| 1992 | out: |
| 1993 | return ret; |
| 1994 | } |
| 1995 | |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 1996 | /* |
| 1997 | * Embeds a single submodules git directory into the superprojects git dir, |
| 1998 | * non recursively. |
| 1999 | */ |
Jeff King | cf7a901 | 2019-05-09 17:27:31 -0400 | [diff] [blame] | 2000 | static void relocate_single_git_dir_into_superproject(const char *path) |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2001 | { |
| 2002 | char *old_git_dir = NULL, *real_old_git_dir = NULL, *real_new_git_dir = NULL; |
| 2003 | const char *new_git_dir; |
| 2004 | const struct submodule *sub; |
| 2005 | |
| 2006 | if (submodule_uses_worktrees(path)) |
| 2007 | die(_("relocate_gitdir for submodule '%s' with " |
| 2008 | "more than one worktree not supported"), path); |
| 2009 | |
| 2010 | old_git_dir = xstrfmt("%s/.git", path); |
| 2011 | if (read_gitfile(old_git_dir)) |
| 2012 | /* If it is an actual gitfile, it doesn't need migration. */ |
| 2013 | return; |
| 2014 | |
Johannes Schindelin | ce83ead | 2017-03-08 16:43:40 +0100 | [diff] [blame] | 2015 | real_old_git_dir = real_pathdup(old_git_dir, 1); |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2016 | |
Stefan Beller | 3b8fb39 | 2018-03-28 15:35:29 -0700 | [diff] [blame] | 2017 | sub = submodule_from_path(the_repository, &null_oid, path); |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2018 | if (!sub) |
| 2019 | die(_("could not lookup name for submodule '%s'"), path); |
| 2020 | |
| 2021 | new_git_dir = git_path("modules/%s", sub->name); |
| 2022 | if (safe_create_leading_directories_const(new_git_dir) < 0) |
| 2023 | die(_("could not create directory '%s'"), new_git_dir); |
Johannes Schindelin | ce83ead | 2017-03-08 16:43:40 +0100 | [diff] [blame] | 2024 | real_new_git_dir = real_pathdup(new_git_dir, 1); |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2025 | |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2026 | fprintf(stderr, _("Migrating git directory of '%s%s' from\n'%s' to\n'%s'\n"), |
Stefan Beller | 202275b | 2017-03-14 14:46:36 -0700 | [diff] [blame] | 2027 | get_super_prefix_or_empty(), path, |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2028 | real_old_git_dir, real_new_git_dir); |
| 2029 | |
| 2030 | relocate_gitdir(path, real_old_git_dir, real_new_git_dir); |
| 2031 | |
| 2032 | free(old_git_dir); |
| 2033 | free(real_old_git_dir); |
| 2034 | free(real_new_git_dir); |
| 2035 | } |
| 2036 | |
| 2037 | /* |
| 2038 | * Migrate the git directory of the submodule given by path from |
| 2039 | * having its git directory within the working tree to the git dir nested |
| 2040 | * in its superprojects git dir under modules/. |
| 2041 | */ |
Jeff King | cf7a901 | 2019-05-09 17:27:31 -0400 | [diff] [blame] | 2042 | void absorb_git_dir_into_superproject(const char *path, |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2043 | unsigned flags) |
| 2044 | { |
Stefan Beller | ec9629b | 2017-01-25 15:04:50 -0800 | [diff] [blame] | 2045 | int err_code; |
| 2046 | const char *sub_git_dir; |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2047 | struct strbuf gitdir = STRBUF_INIT; |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2048 | strbuf_addf(&gitdir, "%s/.git", path); |
Stefan Beller | ec9629b | 2017-01-25 15:04:50 -0800 | [diff] [blame] | 2049 | sub_git_dir = resolve_gitdir_gently(gitdir.buf, &err_code); |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2050 | |
| 2051 | /* Not populated? */ |
Stefan Beller | ec9629b | 2017-01-25 15:04:50 -0800 | [diff] [blame] | 2052 | if (!sub_git_dir) { |
Stefan Beller | ec9629b | 2017-01-25 15:04:50 -0800 | [diff] [blame] | 2053 | const struct submodule *sub; |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2054 | |
Stefan Beller | ec9629b | 2017-01-25 15:04:50 -0800 | [diff] [blame] | 2055 | if (err_code == READ_GITFILE_ERR_STAT_FAILED) { |
| 2056 | /* unpopulated as expected */ |
| 2057 | strbuf_release(&gitdir); |
| 2058 | return; |
| 2059 | } |
| 2060 | |
| 2061 | if (err_code != READ_GITFILE_ERR_NOT_A_REPO) |
| 2062 | /* We don't know what broke here. */ |
| 2063 | read_gitfile_error_die(err_code, path, NULL); |
| 2064 | |
| 2065 | /* |
| 2066 | * Maybe populated, but no git directory was found? |
| 2067 | * This can happen if the superproject is a submodule |
| 2068 | * itself and was just absorbed. The absorption of the |
| 2069 | * superproject did not rewrite the git file links yet, |
| 2070 | * fix it now. |
| 2071 | */ |
Stefan Beller | 3b8fb39 | 2018-03-28 15:35:29 -0700 | [diff] [blame] | 2072 | sub = submodule_from_path(the_repository, &null_oid, path); |
Stefan Beller | ec9629b | 2017-01-25 15:04:50 -0800 | [diff] [blame] | 2073 | if (!sub) |
| 2074 | die(_("could not lookup name for submodule '%s'"), path); |
Stefan Beller | 365444a | 2017-03-14 14:46:24 -0700 | [diff] [blame] | 2075 | connect_work_tree_and_git_dir(path, |
Stefan Beller | da62f78 | 2018-03-28 15:35:31 -0700 | [diff] [blame] | 2076 | git_path("modules/%s", sub->name), 0); |
Stefan Beller | ec9629b | 2017-01-25 15:04:50 -0800 | [diff] [blame] | 2077 | } else { |
| 2078 | /* Is it already absorbed into the superprojects git dir? */ |
Johannes Schindelin | ce83ead | 2017-03-08 16:43:40 +0100 | [diff] [blame] | 2079 | char *real_sub_git_dir = real_pathdup(sub_git_dir, 1); |
| 2080 | char *real_common_git_dir = real_pathdup(get_git_common_dir(), 1); |
Stefan Beller | ec9629b | 2017-01-25 15:04:50 -0800 | [diff] [blame] | 2081 | |
| 2082 | if (!starts_with(real_sub_git_dir, real_common_git_dir)) |
Jeff King | cf7a901 | 2019-05-09 17:27:31 -0400 | [diff] [blame] | 2083 | relocate_single_git_dir_into_superproject(path); |
Stefan Beller | ec9629b | 2017-01-25 15:04:50 -0800 | [diff] [blame] | 2084 | |
| 2085 | free(real_sub_git_dir); |
| 2086 | free(real_common_git_dir); |
| 2087 | } |
| 2088 | strbuf_release(&gitdir); |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2089 | |
| 2090 | if (flags & ABSORB_GITDIR_RECURSE_SUBMODULES) { |
| 2091 | struct child_process cp = CHILD_PROCESS_INIT; |
| 2092 | struct strbuf sb = STRBUF_INIT; |
| 2093 | |
| 2094 | if (flags & ~ABSORB_GITDIR_RECURSE_SUBMODULES) |
Johannes Schindelin | 033abf9 | 2018-05-02 11:38:39 +0200 | [diff] [blame] | 2095 | BUG("we don't know how to pass the flags down?"); |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2096 | |
Stefan Beller | 202275b | 2017-03-14 14:46:36 -0700 | [diff] [blame] | 2097 | strbuf_addstr(&sb, get_super_prefix_or_empty()); |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2098 | strbuf_addstr(&sb, path); |
| 2099 | strbuf_addch(&sb, '/'); |
| 2100 | |
| 2101 | cp.dir = path; |
| 2102 | cp.git_cmd = 1; |
| 2103 | cp.no_stdin = 1; |
| 2104 | argv_array_pushl(&cp.args, "--super-prefix", sb.buf, |
| 2105 | "submodule--helper", |
| 2106 | "absorb-git-dirs", NULL); |
| 2107 | prepare_submodule_repo_env(&cp.env_array); |
| 2108 | if (run_command(&cp)) |
| 2109 | die(_("could not recurse into submodule '%s'"), path); |
| 2110 | |
| 2111 | strbuf_release(&sb); |
| 2112 | } |
Stefan Beller | f6f8586 | 2016-12-12 11:04:35 -0800 | [diff] [blame] | 2113 | } |
Stefan Beller | bf0231c | 2017-03-08 15:07:42 -0800 | [diff] [blame] | 2114 | |
| 2115 | const char *get_superproject_working_tree(void) |
| 2116 | { |
| 2117 | struct child_process cp = CHILD_PROCESS_INIT; |
| 2118 | struct strbuf sb = STRBUF_INIT; |
| 2119 | const char *one_up = real_path_if_valid("../"); |
| 2120 | const char *cwd = xgetcwd(); |
| 2121 | const char *ret = NULL; |
| 2122 | const char *subpath; |
| 2123 | int code; |
| 2124 | ssize_t len; |
| 2125 | |
| 2126 | if (!is_inside_work_tree()) |
| 2127 | /* |
| 2128 | * FIXME: |
| 2129 | * We might have a superproject, but it is harder |
| 2130 | * to determine. |
| 2131 | */ |
| 2132 | return NULL; |
| 2133 | |
| 2134 | if (!one_up) |
| 2135 | return NULL; |
| 2136 | |
| 2137 | subpath = relative_path(cwd, one_up, &sb); |
| 2138 | |
| 2139 | prepare_submodule_repo_env(&cp.env_array); |
| 2140 | argv_array_pop(&cp.env_array); |
| 2141 | |
| 2142 | argv_array_pushl(&cp.args, "--literal-pathspecs", "-C", "..", |
| 2143 | "ls-files", "-z", "--stage", "--full-name", "--", |
| 2144 | subpath, NULL); |
| 2145 | strbuf_reset(&sb); |
| 2146 | |
| 2147 | cp.no_stdin = 1; |
| 2148 | cp.no_stderr = 1; |
| 2149 | cp.out = -1; |
| 2150 | cp.git_cmd = 1; |
| 2151 | |
| 2152 | if (start_command(&cp)) |
| 2153 | die(_("could not start ls-files in ..")); |
| 2154 | |
| 2155 | len = strbuf_read(&sb, cp.out, PATH_MAX); |
| 2156 | close(cp.out); |
| 2157 | |
| 2158 | if (starts_with(sb.buf, "160000")) { |
| 2159 | int super_sub_len; |
| 2160 | int cwd_len = strlen(cwd); |
| 2161 | char *super_sub, *super_wt; |
| 2162 | |
| 2163 | /* |
| 2164 | * There is a superproject having this repo as a submodule. |
| 2165 | * The format is <mode> SP <hash> SP <stage> TAB <full name> \0, |
| 2166 | * We're only interested in the name after the tab. |
| 2167 | */ |
| 2168 | super_sub = strchr(sb.buf, '\t') + 1; |
Sam McKelvie | c5cbb27 | 2018-09-27 11:10:54 -0700 | [diff] [blame] | 2169 | super_sub_len = strlen(super_sub); |
Stefan Beller | bf0231c | 2017-03-08 15:07:42 -0800 | [diff] [blame] | 2170 | |
| 2171 | if (super_sub_len > cwd_len || |
| 2172 | strcmp(&cwd[cwd_len - super_sub_len], super_sub)) |
Johannes Schindelin | c3c3486 | 2018-05-02 11:38:41 +0200 | [diff] [blame] | 2173 | BUG("returned path string doesn't match cwd?"); |
Stefan Beller | bf0231c | 2017-03-08 15:07:42 -0800 | [diff] [blame] | 2174 | |
| 2175 | super_wt = xstrdup(cwd); |
| 2176 | super_wt[cwd_len - super_sub_len] = '\0'; |
| 2177 | |
| 2178 | ret = real_path(super_wt); |
| 2179 | free(super_wt); |
| 2180 | } |
| 2181 | strbuf_release(&sb); |
| 2182 | |
| 2183 | code = finish_command(&cp); |
| 2184 | |
| 2185 | if (code == 128) |
| 2186 | /* '../' is not a git repository */ |
| 2187 | return NULL; |
| 2188 | if (code == 0 && len == 0) |
| 2189 | /* There is an unrelated git repository at '../' */ |
| 2190 | return NULL; |
| 2191 | if (code) |
| 2192 | die(_("ls-tree returned unexpected return code %d"), code); |
| 2193 | |
| 2194 | return ret; |
| 2195 | } |
Nguyễn Thái Ngọc Duy | bbbb7de | 2017-03-26 09:42:30 +0700 | [diff] [blame] | 2196 | |
Han-Wen Nienhuys | 3ce0854 | 2017-09-25 17:59:26 +0200 | [diff] [blame] | 2197 | /* |
| 2198 | * Put the gitdir for a submodule (given relative to the main |
| 2199 | * repository worktree) into `buf`, or return -1 on error. |
| 2200 | */ |
Nguyễn Thái Ngọc Duy | bbbb7de | 2017-03-26 09:42:30 +0700 | [diff] [blame] | 2201 | int submodule_to_gitdir(struct strbuf *buf, const char *submodule) |
| 2202 | { |
| 2203 | const struct submodule *sub; |
| 2204 | const char *git_dir; |
| 2205 | int ret = 0; |
| 2206 | |
| 2207 | strbuf_reset(buf); |
| 2208 | strbuf_addstr(buf, submodule); |
| 2209 | strbuf_complete(buf, '/'); |
| 2210 | strbuf_addstr(buf, ".git"); |
| 2211 | |
| 2212 | git_dir = read_gitfile(buf->buf); |
| 2213 | if (git_dir) { |
| 2214 | strbuf_reset(buf); |
| 2215 | strbuf_addstr(buf, git_dir); |
| 2216 | } |
| 2217 | if (!is_git_directory(buf->buf)) { |
Stefan Beller | 3b8fb39 | 2018-03-28 15:35:29 -0700 | [diff] [blame] | 2218 | sub = submodule_from_path(the_repository, &null_oid, submodule); |
Nguyễn Thái Ngọc Duy | bbbb7de | 2017-03-26 09:42:30 +0700 | [diff] [blame] | 2219 | if (!sub) { |
| 2220 | ret = -1; |
| 2221 | goto cleanup; |
| 2222 | } |
| 2223 | strbuf_reset(buf); |
| 2224 | strbuf_git_path(buf, "%s/%s", "modules", sub->name); |
| 2225 | } |
| 2226 | |
| 2227 | cleanup: |
| 2228 | return ret; |
| 2229 | } |