Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 1 | #ifndef SUBMODULE_CONFIG_CACHE_H |
| 2 | #define SUBMODULE_CONFIG_CACHE_H |
| 3 | |
brian m. carlson | 34caab0 | 2018-05-02 00:25:42 +0000 | [diff] [blame] | 4 | #include "cache.h" |
Antonio Ospite | ad13637 | 2018-06-26 12:47:05 +0200 | [diff] [blame] | 5 | #include "config.h" |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 6 | #include "hashmap.h" |
Stefan Beller | ea2fa5a | 2016-02-29 18:07:11 -0800 | [diff] [blame] | 7 | #include "submodule.h" |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 8 | #include "strbuf.h" |
Glen Choo | 961b130 | 2022-01-28 16:04:45 -0800 | [diff] [blame] | 9 | #include "tree-walk.h" |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 10 | |
Heba Waly | d95a77d | 2019-11-17 21:04:58 +0000 | [diff] [blame] | 11 | /** |
| 12 | * The submodule config cache API allows to read submodule |
| 13 | * configurations/information from specified revisions. Internally |
| 14 | * information is lazily read into a cache that is used to avoid |
| 15 | * unnecessary parsing of the same .gitmodules files. Lookups can be done by |
| 16 | * submodule path or name. |
| 17 | * |
| 18 | * Usage |
| 19 | * ----- |
| 20 | * |
| 21 | * The caller can look up information about submodules by using the |
| 22 | * `submodule_from_path()` or `submodule_from_name()` functions. They return |
| 23 | * a `struct submodule` which contains the values. The API automatically |
| 24 | * initializes and allocates the needed infrastructure on-demand. If the |
| 25 | * caller does only want to lookup values from revisions the initialization |
| 26 | * can be skipped. |
| 27 | * |
| 28 | * If the internal cache might grow too big or when the caller is done with |
| 29 | * the API, all internally cached values can be freed with submodule_free(). |
| 30 | * |
| 31 | */ |
| 32 | |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 33 | /* |
| 34 | * Submodule entry containing the information about a certain submodule |
Heba Waly | d95a77d | 2019-11-17 21:04:58 +0000 | [diff] [blame] | 35 | * in a certain revision. It is returned by the lookup functions. |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 36 | */ |
| 37 | struct submodule { |
| 38 | const char *path; |
| 39 | const char *name; |
| 40 | const char *url; |
Philippe Blain | 465b30a | 2022-04-04 17:10:11 +0000 | [diff] [blame] | 41 | enum submodule_recurse_mode fetch_recurse; |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 42 | const char *ignore; |
Stefan Beller | b5944f3 | 2016-07-28 17:44:07 -0700 | [diff] [blame] | 43 | const char *branch; |
Stefan Beller | ea2fa5a | 2016-02-29 18:07:11 -0800 | [diff] [blame] | 44 | struct submodule_update_strategy update_strategy; |
brian m. carlson | 34caab0 | 2018-05-02 00:25:42 +0000 | [diff] [blame] | 45 | /* the object id of the responsible .gitmodules file */ |
| 46 | struct object_id gitmodules_oid; |
Stefan Beller | 37f52e9 | 2016-05-26 14:59:42 -0700 | [diff] [blame] | 47 | int recommend_shallow; |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 48 | }; |
Brandon Williams | bf12fcd | 2017-06-22 11:43:44 -0700 | [diff] [blame] | 49 | struct submodule_cache; |
| 50 | struct repository; |
| 51 | |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 52 | void submodule_cache_free(struct submodule_cache *cache); |
Brandon Williams | bf12fcd | 2017-06-22 11:43:44 -0700 | [diff] [blame] | 53 | |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 54 | int parse_submodule_fetchjobs(const char *var, const char *value); |
| 55 | int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg); |
Stefan Beller | 886dc15 | 2017-06-23 12:13:00 -0700 | [diff] [blame] | 56 | struct option; |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 57 | int option_fetch_parse_recurse_submodules(const struct option *opt, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 58 | const char *arg, int unset); |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 59 | int parse_update_recurse_submodules_arg(const char *opt, const char *arg); |
| 60 | int parse_push_recurse_submodules_arg(const char *opt, const char *arg); |
Matheus Tavares | d799242 | 2020-01-15 23:39:55 -0300 | [diff] [blame] | 61 | void repo_read_gitmodules(struct repository *repo, int skip_if_read); |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 62 | void gitmodules_config_oid(const struct object_id *commit_oid); |
Heba Waly | d95a77d | 2019-11-17 21:04:58 +0000 | [diff] [blame] | 63 | |
| 64 | /** |
| 65 | * Same as submodule_from_path but lookup by name. |
| 66 | */ |
Stefan Beller | 3b8fb39 | 2018-03-28 15:35:29 -0700 | [diff] [blame] | 67 | const struct submodule *submodule_from_name(struct repository *r, |
| 68 | const struct object_id *commit_or_tree, |
| 69 | const char *name); |
Heba Waly | d95a77d | 2019-11-17 21:04:58 +0000 | [diff] [blame] | 70 | |
| 71 | /** |
| 72 | * Given a tree-ish in the superproject and a path, return the submodule that |
| 73 | * is bound at the path in the named tree. |
| 74 | */ |
Stefan Beller | 3b8fb39 | 2018-03-28 15:35:29 -0700 | [diff] [blame] | 75 | const struct submodule *submodule_from_path(struct repository *r, |
| 76 | const struct object_id *commit_or_tree, |
| 77 | const char *path); |
Heba Waly | d95a77d | 2019-11-17 21:04:58 +0000 | [diff] [blame] | 78 | |
| 79 | /** |
| 80 | * Use these to free the internally cached values. |
| 81 | */ |
Stefan Beller | f793b89 | 2018-03-28 15:35:28 -0700 | [diff] [blame] | 82 | void submodule_free(struct repository *r); |
Heba Waly | d95a77d | 2019-11-17 21:04:58 +0000 | [diff] [blame] | 83 | |
Antonio Ospite | bcbc780 | 2018-10-05 15:05:52 +0200 | [diff] [blame] | 84 | int print_config_from_gitmodules(struct repository *repo, const char *key); |
Antonio Ospite | 45f5ef3 | 2018-10-05 15:05:53 +0200 | [diff] [blame] | 85 | int config_set_in_gitmodules_file_gently(const char *key, const char *value); |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 86 | |
Jeff King | 0383bbb | 2018-04-30 03:25:25 -0400 | [diff] [blame] | 87 | /* |
| 88 | * Returns 0 if the name is syntactically acceptable as a submodule "name" |
| 89 | * (e.g., that may be found in the subsection of a .gitmodules file) and -1 |
| 90 | * otherwise. |
| 91 | */ |
| 92 | int check_submodule_name(const char *name); |
| 93 | |
Antonio Ospite | ad13637 | 2018-06-26 12:47:05 +0200 | [diff] [blame] | 94 | /* |
Antonio Ospite | 588929d | 2018-06-26 12:47:08 +0200 | [diff] [blame] | 95 | * Note: these helper functions exist solely to maintain backward |
| 96 | * compatibility with 'fetch' and 'update_clone' storing configuration in |
| 97 | * '.gitmodules'. |
Antonio Ospite | ad13637 | 2018-06-26 12:47:05 +0200 | [diff] [blame] | 98 | * |
Antonio Ospite | 588929d | 2018-06-26 12:47:08 +0200 | [diff] [blame] | 99 | * New helpers to retrieve arbitrary configuration from the '.gitmodules' file |
| 100 | * should NOT be added. |
Antonio Ospite | ad13637 | 2018-06-26 12:47:05 +0200 | [diff] [blame] | 101 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 102 | void fetch_config_from_gitmodules(int *max_children, int *recurse_submodules); |
| 103 | void update_clone_config_from_gitmodules(int *max_jobs); |
Antonio Ospite | 71a6953 | 2018-06-26 12:47:06 +0200 | [diff] [blame] | 104 | |
Glen Choo | 961b130 | 2022-01-28 16:04:45 -0800 | [diff] [blame] | 105 | /* |
| 106 | * Submodule entry that contains relevant information about a |
| 107 | * submodule in a tree. |
| 108 | */ |
| 109 | struct submodule_tree_entry { |
| 110 | /* The submodule's tree entry. */ |
| 111 | struct name_entry *name_entry; |
| 112 | /* |
| 113 | * A struct repository corresponding to the submodule. May be |
| 114 | * NULL if the submodule has not been updated. |
| 115 | */ |
| 116 | struct repository *repo; |
| 117 | /* |
| 118 | * A struct submodule containing the submodule config in the |
| 119 | * tree's .gitmodules. |
| 120 | */ |
| 121 | const struct submodule *submodule; |
| 122 | }; |
| 123 | |
| 124 | struct submodule_entry_list { |
| 125 | struct submodule_tree_entry *entries; |
| 126 | int entry_nr; |
| 127 | int entry_alloc; |
| 128 | }; |
| 129 | |
| 130 | /** |
| 131 | * Given a treeish, return all submodules in the tree and its subtrees, |
| 132 | * but excluding nested submodules. Callers that require nested |
| 133 | * submodules are expected to recurse into the submodules themselves. |
| 134 | */ |
| 135 | void submodules_of_tree(struct repository *r, |
| 136 | const struct object_id *treeish_name, |
| 137 | struct submodule_entry_list *ret); |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 138 | #endif /* SUBMODULE_CONFIG_H */ |