| Brandon Williams | 359efef | 2017-06-22 18:43:32 | [diff] [blame] | 1 | #ifndef REPOSITORY_H |
| 2 | #define REPOSITORY_H |
| 3 | |
| Brandon Williams | 3b25622 | 2017-06-22 18:43:42 | [diff] [blame] | 4 | struct config_set; |
| Jeff Hostetler | 1e0ea5c | 2022-03-25 18:02:46 | [diff] [blame] | 5 | struct fsmonitor_settings; |
| brian m. carlson | 78a6766 | 2017-11-12 21:28:53 | [diff] [blame] | 6 | struct git_hash_algo; |
| Stefan Beller | 90c6215 | 2018-03-23 17:20:55 | [diff] [blame] | 7 | struct index_state; |
| Nguyễn Thái Ngọc Duy | 3a95f31 | 2019-01-12 02:13:24 | [diff] [blame] | 8 | struct lock_file; |
| Nguyễn Thái Ngọc Duy | e1ff0a3 | 2019-01-12 02:13:26 | [diff] [blame] | 9 | struct pathspec; |
| Stefan Beller | 90c6215 | 2018-03-23 17:20:55 | [diff] [blame] | 10 | struct raw_object_store; |
| 11 | struct submodule_cache; |
| Jonathan Tan | ef7dc2e | 2021-06-17 17:13:23 | [diff] [blame] | 12 | struct promisor_remote_config; |
| Glen Choo | fd3cb05 | 2021-11-18 00:53:22 | [diff] [blame] | 13 | struct remote_state; |
| Brandon Williams | 3b25622 | 2017-06-22 18:43:42 | [diff] [blame] | 14 | |
| Derrick Stolee | ad0fb65 | 2019-08-13 18:37:46 | [diff] [blame] | 15 | enum untracked_cache_setting { |
| Ævar Arnfjörð Bjarmason | 3050b6d | 2021-09-21 13:13:02 | [diff] [blame] | 16 | UNTRACKED_CACHE_KEEP, |
| 17 | UNTRACKED_CACHE_REMOVE, |
| 18 | UNTRACKED_CACHE_WRITE, |
| Derrick Stolee | ad0fb65 | 2019-08-13 18:37:46 | [diff] [blame] | 19 | }; |
| 20 | |
| Derrick Stolee | aaf633c | 2019-08-13 18:37:48 | [diff] [blame] | 21 | enum fetch_negotiation_setting { |
| Elijah Newren | 714edc6 | 2022-02-02 03:42:40 | [diff] [blame] | 22 | FETCH_NEGOTIATION_CONSECUTIVE, |
| Ævar Arnfjörð Bjarmason | 3050b6d | 2021-09-21 13:13:02 | [diff] [blame] | 23 | FETCH_NEGOTIATION_SKIPPING, |
| 24 | FETCH_NEGOTIATION_NOOP, |
| Derrick Stolee | aaf633c | 2019-08-13 18:37:48 | [diff] [blame] | 25 | }; |
| 26 | |
| Patrick Steinhardt | 57db2a0 | 2024-02-07 07:20:31 | [diff] [blame] | 27 | #define REF_STORAGE_FORMAT_UNKNOWN 0 |
| 28 | #define REF_STORAGE_FORMAT_FILES 1 |
| 29 | #define REF_STORAGE_FORMAT_REFTABLE 2 |
| Patrick Steinhardt | 0fcc285 | 2023-12-29 07:26:34 | [diff] [blame] | 30 | |
| Derrick Stolee | 7211b9e | 2019-08-13 18:37:43 | [diff] [blame] | 31 | struct repo_settings { |
| 32 | int initialized; |
| 33 | |
| 34 | int core_commit_graph; |
| Taylor Blau | a92d852 | 2022-07-14 21:43:06 | [diff] [blame] | 35 | int commit_graph_generation_version; |
| Taylor Blau | b66d847 | 2020-09-09 15:23:10 | [diff] [blame] | 36 | int commit_graph_read_changed_paths; |
| Derrick Stolee | 7211b9e | 2019-08-13 18:37:43 | [diff] [blame] | 37 | int gc_write_commit_graph; |
| Derrick Stolee | 50f26bd | 2019-09-03 02:22:02 | [diff] [blame] | 38 | int fetch_write_commit_graph; |
| Ævar Arnfjörð Bjarmason | c21919f | 2021-09-21 13:13:03 | [diff] [blame] | 39 | int command_requires_full_index; |
| 40 | int sparse_index; |
| Taylor Blau | dbcf611 | 2023-04-12 22:20:30 | [diff] [blame] | 41 | int pack_read_reverse_index; |
| Taylor Blau | b0afdce | 2023-05-08 17:38:12 | [diff] [blame] | 42 | int pack_use_bitmap_boundary_traversal; |
| Taylor Blau | 23c1e71 | 2024-02-05 22:50:23 | [diff] [blame] | 43 | int pack_use_multi_pack_reuse; |
| Derrick Stolee | 7211b9e | 2019-08-13 18:37:43 | [diff] [blame] | 44 | |
| Derrick Stolee | 9c7d1b0 | 2023-06-06 13:24:37 | [diff] [blame] | 45 | /* |
| 46 | * Does this repository have core.useReplaceRefs=true (on by |
| 47 | * default)? This provides a repository-scoped version of this |
| 48 | * config, though it could be disabled process-wide via some Git |
| 49 | * builtins or the --no-replace-objects option. See |
| 50 | * replace_refs_enabled() for more details. |
| 51 | */ |
| 52 | int read_replace_refs; |
| 53 | |
| Jeff Hostetler | 1e0ea5c | 2022-03-25 18:02:46 | [diff] [blame] | 54 | struct fsmonitor_settings *fsmonitor; /* lazily loaded */ |
| 55 | |
| Derrick Stolee | 7211b9e | 2019-08-13 18:37:43 | [diff] [blame] | 56 | int index_version; |
| Derrick Stolee | 17194b1 | 2023-01-06 16:31:56 | [diff] [blame] | 57 | int index_skip_hash; |
| Derrick Stolee | ad0fb65 | 2019-08-13 18:37:46 | [diff] [blame] | 58 | enum untracked_cache_setting core_untracked_cache; |
| Derrick Stolee | 7211b9e | 2019-08-13 18:37:43 | [diff] [blame] | 59 | |
| 60 | int pack_use_sparse; |
| Derrick Stolee | aaf633c | 2019-08-13 18:37:48 | [diff] [blame] | 61 | enum fetch_negotiation_setting fetch_negotiation_algorithm; |
| Derrick Stolee | 18e449f | 2020-09-25 12:33:34 | [diff] [blame] | 62 | |
| 63 | int core_multi_pack_index; |
| Derrick Stolee | 7211b9e | 2019-08-13 18:37:43 | [diff] [blame] | 64 | }; |
| 65 | |
| Ævar Arnfjörð Bjarmason | 759f340 | 2022-03-04 18:32:17 | [diff] [blame] | 66 | struct repo_path_cache { |
| 67 | char *squash_msg; |
| 68 | char *merge_msg; |
| 69 | char *merge_rr; |
| 70 | char *merge_mode; |
| 71 | char *merge_head; |
| Ævar Arnfjörð Bjarmason | 759f340 | 2022-03-04 18:32:17 | [diff] [blame] | 72 | char *fetch_head; |
| 73 | char *shallow; |
| 74 | }; |
| 75 | |
| Brandon Williams | 359efef | 2017-06-22 18:43:32 | [diff] [blame] | 76 | struct repository { |
| 77 | /* Environment */ |
| 78 | /* |
| 79 | * Path to the git directory. |
| 80 | * Cannot be NULL after initialization. |
| 81 | */ |
| 82 | char *gitdir; |
| 83 | |
| 84 | /* |
| 85 | * Path to the common git directory. |
| 86 | * Cannot be NULL after initialization. |
| 87 | */ |
| 88 | char *commondir; |
| 89 | |
| 90 | /* |
| Stefan Beller | 90c6215 | 2018-03-23 17:20:55 | [diff] [blame] | 91 | * Holds any information related to accessing the raw object content. |
| Brandon Williams | 359efef | 2017-06-22 18:43:32 | [diff] [blame] | 92 | */ |
| Stefan Beller | 90c6215 | 2018-03-23 17:20:55 | [diff] [blame] | 93 | struct raw_object_store *objects; |
| Nguyễn Thái Ngọc Duy | 7bc0dca | 2018-03-03 11:35:57 | [diff] [blame] | 94 | |
| Stefan Beller | 99bf115 | 2018-05-08 19:37:24 | [diff] [blame] | 95 | /* |
| 96 | * All objects in this repository that have been parsed. This structure |
| 97 | * owns all objects it references, so users of "struct object *" |
| 98 | * generally do not need to free them; instead, when a repository is no |
| 99 | * longer used, call parsed_object_pool_clear() on this structure, which |
| 100 | * is called by the repositories repo_clear on its desconstruction. |
| 101 | */ |
| 102 | struct parsed_object_pool *parsed_objects; |
| 103 | |
| Jeff King | 0220461 | 2020-04-10 03:04:11 | [diff] [blame] | 104 | /* |
| 105 | * The store in which the refs are held. This should generally only be |
| 106 | * accessed via get_main_ref_store(), as that will lazily initialize |
| 107 | * the ref object. |
| 108 | */ |
| 109 | struct ref_store *refs_private; |
| Stefan Beller | 64a7416 | 2018-04-12 00:21:14 | [diff] [blame] | 110 | |
| Brandon Williams | 359efef | 2017-06-22 18:43:32 | [diff] [blame] | 111 | /* |
| Stefan Beller | 102de88 | 2018-05-17 22:51:51 | [diff] [blame] | 112 | * Contains path to often used file names. |
| 113 | */ |
| Ævar Arnfjörð Bjarmason | 759f340 | 2022-03-04 18:32:17 | [diff] [blame] | 114 | struct repo_path_cache cached_paths; |
| Stefan Beller | 102de88 | 2018-05-17 22:51:51 | [diff] [blame] | 115 | |
| 116 | /* |
| Brandon Williams | 359efef | 2017-06-22 18:43:32 | [diff] [blame] | 117 | * Path to the repository's graft file. |
| 118 | * Cannot be NULL after initialization. |
| 119 | */ |
| 120 | char *graft_file; |
| 121 | |
| 122 | /* |
| 123 | * Path to the current worktree's index file. |
| 124 | * Cannot be NULL after initialization. |
| 125 | */ |
| 126 | char *index_file; |
| 127 | |
| 128 | /* |
| 129 | * Path to the working directory. |
| 130 | * A NULL value indicates that there is no working directory. |
| 131 | */ |
| 132 | char *worktree; |
| 133 | |
| Brandon Williams | 96dc883 | 2017-06-22 18:43:47 | [diff] [blame] | 134 | /* |
| 135 | * Path from the root of the top-level superproject down to this |
| 136 | * repository. This is only non-NULL if the repository is initialized |
| 137 | * as a submodule of another repository. |
| 138 | */ |
| 139 | char *submodule_prefix; |
| 140 | |
| Derrick Stolee | 7211b9e | 2019-08-13 18:37:43 | [diff] [blame] | 141 | struct repo_settings settings; |
| 142 | |
| Brandon Williams | 3b25622 | 2017-06-22 18:43:42 | [diff] [blame] | 143 | /* Subsystems */ |
| 144 | /* |
| 145 | * Repository's config which contains key-value pairs from the usual |
| 146 | * set of config files (i.e. repo specific .git/config, user wide |
| 147 | * ~/.gitconfig, XDG config file and the global /etc/gitconfig) |
| 148 | */ |
| 149 | struct config_set *config; |
| 150 | |
| Brandon Williams | bf12fcd | 2017-06-22 18:43:44 | [diff] [blame] | 151 | /* Repository's submodule config as defined by '.gitmodules' */ |
| 152 | struct submodule_cache *submodule_cache; |
| 153 | |
| Brandon Williams | 639e30b | 2017-06-22 18:43:43 | [diff] [blame] | 154 | /* |
| 155 | * Repository's in-memory index. |
| 156 | * 'repo_read_index()' can be used to populate 'index'. |
| 157 | */ |
| 158 | struct index_state *index; |
| 159 | |
| Glen Choo | fd3cb05 | 2021-11-18 00:53:22 | [diff] [blame] | 160 | /* Repository's remotes and associated structures. */ |
| 161 | struct remote_state *remote_state; |
| 162 | |
| brian m. carlson | 78a6766 | 2017-11-12 21:28:53 | [diff] [blame] | 163 | /* Repository's current hash algorithm, as serialized on disk. */ |
| 164 | const struct git_hash_algo *hash_algo; |
| 165 | |
| Eric W. Biederman | 15a1ca1 | 2023-10-02 02:40:08 | [diff] [blame] | 166 | /* Repository's compatibility hash algorithm. */ |
| 167 | const struct git_hash_algo *compat_hash_algo; |
| 168 | |
| Patrick Steinhardt | 173761e | 2023-12-29 07:26:39 | [diff] [blame] | 169 | /* Repository's reference storage format, as serialized on disk. */ |
| 170 | unsigned int ref_storage_format; |
| 171 | |
| Jeff Hostetler | ee4512e | 2019-02-22 22:25:01 | [diff] [blame] | 172 | /* A unique-id for tracing purposes. */ |
| 173 | int trace2_repo_id; |
| 174 | |
| Jeff King | 6abada1 | 2019-09-12 14:44:45 | [diff] [blame] | 175 | /* True if commit-graph has been disabled within this process. */ |
| 176 | int commit_graph_disabled; |
| 177 | |
| Jonathan Tan | ebaf3bc | 2021-06-17 17:13:22 | [diff] [blame] | 178 | /* Configurations related to promisor remotes. */ |
| 179 | char *repository_format_partial_clone; |
| Jonathan Tan | ef7dc2e | 2021-06-17 17:13:23 | [diff] [blame] | 180 | struct promisor_remote_config *promisor_remote_config; |
| Jonathan Tan | ebaf3bc | 2021-06-17 17:13:22 | [diff] [blame] | 181 | |
| Brandon Williams | 359efef | 2017-06-22 18:43:32 | [diff] [blame] | 182 | /* Configurations */ |
| Victoria Dye | 3867f6d | 2023-05-26 01:33:00 | [diff] [blame] | 183 | int repository_format_worktree_config; |
| Brandon Williams | 359efef | 2017-06-22 18:43:32 | [diff] [blame] | 184 | |
| 185 | /* Indicate if a repository has a different 'commondir' from 'gitdir' */ |
| 186 | unsigned different_commondir:1; |
| 187 | }; |
| 188 | |
| 189 | extern struct repository *the_repository; |
| Elijah Newren | bc47f16 | 2023-05-16 06:33:55 | [diff] [blame] | 190 | #ifdef USE_THE_INDEX_VARIABLE |
| 191 | extern struct index_state the_index; |
| 192 | #endif |
| Brandon Williams | 359efef | 2017-06-22 18:43:32 | [diff] [blame] | 193 | |
| Nguyễn Thái Ngọc Duy | 00a3da2 | 2018-03-23 15:55:23 | [diff] [blame] | 194 | /* |
| 195 | * Define a custom repository layout. Any field can be NULL, which |
| 196 | * will default back to the path according to the default layout. |
| 197 | */ |
| Nguyễn Thái Ngọc Duy | 357a03e | 2018-03-03 11:35:55 | [diff] [blame] | 198 | struct set_gitdir_args { |
| 199 | const char *commondir; |
| 200 | const char *object_dir; |
| 201 | const char *graft_file; |
| 202 | const char *index_file; |
| Nguyễn Thái Ngọc Duy | 7bc0dca | 2018-03-03 11:35:57 | [diff] [blame] | 203 | const char *alternate_db; |
| Neeraj Singh | ecd81df | 2021-12-06 22:05:05 | [diff] [blame] | 204 | int disable_ref_updates; |
| Nguyễn Thái Ngọc Duy | 357a03e | 2018-03-03 11:35:55 | [diff] [blame] | 205 | }; |
| 206 | |
| Nguyễn Thái Ngọc Duy | c2ec417 | 2018-06-30 09:20:29 | [diff] [blame] | 207 | void repo_set_gitdir(struct repository *repo, const char *root, |
| 208 | const struct set_gitdir_args *extra_args); |
| 209 | void repo_set_worktree(struct repository *repo, const char *path); |
| 210 | void repo_set_hash_algo(struct repository *repo, int algo); |
| Eric W. Biederman | 15a1ca1 | 2023-10-02 02:40:08 | [diff] [blame] | 211 | void repo_set_compat_hash_algo(struct repository *repo, int compat_algo); |
| Patrick Steinhardt | 173761e | 2023-12-29 07:26:39 | [diff] [blame] | 212 | void repo_set_ref_storage_format(struct repository *repo, unsigned int format); |
| Nguyễn Thái Ngọc Duy | c2ec417 | 2018-06-30 09:20:29 | [diff] [blame] | 213 | void initialize_the_repository(void); |
| Ævar Arnfjörð Bjarmason | 1e8697b | 2022-08-31 23:18:12 | [diff] [blame] | 214 | RESULT_MUST_BE_USED |
| Nguyễn Thái Ngọc Duy | c2ec417 | 2018-06-30 09:20:29 | [diff] [blame] | 215 | int repo_init(struct repository *r, const char *gitdir, const char *worktree); |
| Stefan Beller | d5498e0 | 2018-11-29 00:27:53 | [diff] [blame] | 216 | |
| 217 | /* |
| Jonathan Tan | 8eb8dcf | 2021-09-09 18:47:28 | [diff] [blame] | 218 | * Initialize the repository 'subrepo' as the submodule at the given path. If |
| 219 | * the submodule's gitdir cannot be found at <path>/.git, this function calls |
| 220 | * submodule_from_path() to try to find it. treeish_name is only used if |
| 221 | * submodule_from_path() needs to be called; see its documentation for more |
| 222 | * information. |
| 223 | * Return 0 upon success and a non-zero value upon failure. |
| Stefan Beller | d5498e0 | 2018-11-29 00:27:53 | [diff] [blame] | 224 | */ |
| Jonathan Tan | 8eb8dcf | 2021-09-09 18:47:28 | [diff] [blame] | 225 | struct object_id; |
| Ævar Arnfjörð Bjarmason | 1e8697b | 2022-08-31 23:18:12 | [diff] [blame] | 226 | RESULT_MUST_BE_USED |
| Stefan Beller | d5498e0 | 2018-11-29 00:27:53 | [diff] [blame] | 227 | int repo_submodule_init(struct repository *subrepo, |
| Nguyễn Thái Ngọc Duy | c2ec417 | 2018-06-30 09:20:29 | [diff] [blame] | 228 | struct repository *superproject, |
| Jonathan Tan | 8eb8dcf | 2021-09-09 18:47:28 | [diff] [blame] | 229 | const char *path, |
| 230 | const struct object_id *treeish_name); |
| Nguyễn Thái Ngọc Duy | c2ec417 | 2018-06-30 09:20:29 | [diff] [blame] | 231 | void repo_clear(struct repository *repo); |
| Brandon Williams | 359efef | 2017-06-22 18:43:32 | [diff] [blame] | 232 | |
| Brandon Williams | 3f13877 | 2017-07-18 19:05:18 | [diff] [blame] | 233 | /* |
| 234 | * Populates the repository's index from its index_file, an index struct will |
| 235 | * be allocated if needed. |
| 236 | * |
| 237 | * Return the number of index entries in the populated index or a value less |
| Elijah Newren | 15beaaa | 2019-11-05 17:07:23 | [diff] [blame] | 238 | * than zero if an error occurred. If the repository's index has already been |
| Brandon Williams | 3f13877 | 2017-07-18 19:05:18 | [diff] [blame] | 239 | * populated then the number of entries will simply be returned. |
| 240 | */ |
| Nguyễn Thái Ngọc Duy | c2ec417 | 2018-06-30 09:20:29 | [diff] [blame] | 241 | int repo_read_index(struct repository *repo); |
| Nguyễn Thái Ngọc Duy | 3a95f31 | 2019-01-12 02:13:24 | [diff] [blame] | 242 | int repo_hold_locked_index(struct repository *repo, |
| 243 | struct lock_file *lf, |
| 244 | int flags); |
| Brandon Williams | 639e30b | 2017-06-22 18:43:43 | [diff] [blame] | 245 | |
| Nguyễn Thái Ngọc Duy | e1ff0a3 | 2019-01-12 02:13:26 | [diff] [blame] | 246 | int repo_read_index_unmerged(struct repository *); |
| Nguyễn Thái Ngọc Duy | 1b0d968 | 2019-01-12 02:13:27 | [diff] [blame] | 247 | /* |
| 248 | * Opportunistically update the index but do not complain if we can't. |
| 249 | * The lockfile is always committed or rolled back. |
| 250 | */ |
| 251 | void repo_update_index_if_able(struct repository *, struct lock_file *); |
| 252 | |
| Derrick Stolee | 7211b9e | 2019-08-13 18:37:43 | [diff] [blame] | 253 | void prepare_repo_settings(struct repository *r); |
| Brandon Williams | 639e30b | 2017-06-22 18:43:43 | [diff] [blame] | 254 | |
| Xin Li | 16af5f1 | 2020-06-05 09:10:01 | [diff] [blame] | 255 | /* |
| 256 | * Return 1 if upgrade repository format to target_version succeeded, |
| 257 | * 0 if no upgrade is necessary, and -1 when upgrade is not possible. |
| 258 | */ |
| 259 | int upgrade_repository_format(int target_version); |
| 260 | |
| Brandon Williams | 359efef | 2017-06-22 18:43:32 | [diff] [blame] | 261 | #endif /* REPOSITORY_H */ |