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" |
| 9 | |
Heba Waly | d95a77d | 2019-11-17 21:04:58 +0000 | [diff] [blame] | 10 | /** |
| 11 | * The submodule config cache API allows to read submodule |
| 12 | * configurations/information from specified revisions. Internally |
| 13 | * information is lazily read into a cache that is used to avoid |
| 14 | * unnecessary parsing of the same .gitmodules files. Lookups can be done by |
| 15 | * submodule path or name. |
| 16 | * |
| 17 | * Usage |
| 18 | * ----- |
| 19 | * |
| 20 | * The caller can look up information about submodules by using the |
| 21 | * `submodule_from_path()` or `submodule_from_name()` functions. They return |
| 22 | * a `struct submodule` which contains the values. The API automatically |
| 23 | * initializes and allocates the needed infrastructure on-demand. If the |
| 24 | * caller does only want to lookup values from revisions the initialization |
| 25 | * can be skipped. |
| 26 | * |
| 27 | * If the internal cache might grow too big or when the caller is done with |
| 28 | * the API, all internally cached values can be freed with submodule_free(). |
| 29 | * |
| 30 | */ |
| 31 | |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 32 | /* |
| 33 | * Submodule entry containing the information about a certain submodule |
Heba Waly | d95a77d | 2019-11-17 21:04:58 +0000 | [diff] [blame] | 34 | * in a certain revision. It is returned by the lookup functions. |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 35 | */ |
| 36 | struct submodule { |
| 37 | const char *path; |
| 38 | const char *name; |
| 39 | const char *url; |
| 40 | int fetch_recurse; |
| 41 | const char *ignore; |
Stefan Beller | b5944f3 | 2016-07-28 17:44:07 -0700 | [diff] [blame] | 42 | const char *branch; |
Stefan Beller | ea2fa5a | 2016-02-29 18:07:11 -0800 | [diff] [blame] | 43 | struct submodule_update_strategy update_strategy; |
brian m. carlson | 34caab0 | 2018-05-02 00:25:42 +0000 | [diff] [blame] | 44 | /* the object id of the responsible .gitmodules file */ |
| 45 | struct object_id gitmodules_oid; |
Stefan Beller | 37f52e9 | 2016-05-26 14:59:42 -0700 | [diff] [blame] | 46 | int recommend_shallow; |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 47 | }; |
| 48 | |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 49 | #define SUBMODULE_INIT { NULL, NULL, NULL, RECURSE_SUBMODULES_NONE, \ |
brian m. carlson | 34caab0 | 2018-05-02 00:25:42 +0000 | [diff] [blame] | 50 | NULL, NULL, SUBMODULE_UPDATE_STRATEGY_INIT, { { 0 } }, -1 }; |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 51 | |
Brandon Williams | bf12fcd | 2017-06-22 11:43:44 -0700 | [diff] [blame] | 52 | struct submodule_cache; |
| 53 | struct repository; |
| 54 | |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 55 | void submodule_cache_free(struct submodule_cache *cache); |
Brandon Williams | bf12fcd | 2017-06-22 11:43:44 -0700 | [diff] [blame] | 56 | |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 57 | int parse_submodule_fetchjobs(const char *var, const char *value); |
| 58 | int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg); |
Stefan Beller | 886dc15 | 2017-06-23 12:13:00 -0700 | [diff] [blame] | 59 | struct option; |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 60 | int option_fetch_parse_recurse_submodules(const struct option *opt, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 61 | const char *arg, int unset); |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 62 | int parse_update_recurse_submodules_arg(const char *opt, const char *arg); |
| 63 | int parse_push_recurse_submodules_arg(const char *opt, const char *arg); |
Matheus Tavares | d799242 | 2020-01-15 23:39:55 -0300 | [diff] [blame] | 64 | void repo_read_gitmodules(struct repository *repo, int skip_if_read); |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 65 | void gitmodules_config_oid(const struct object_id *commit_oid); |
Heba Waly | d95a77d | 2019-11-17 21:04:58 +0000 | [diff] [blame] | 66 | |
| 67 | /** |
| 68 | * Same as submodule_from_path but lookup by name. |
| 69 | */ |
Stefan Beller | 3b8fb39 | 2018-03-28 15:35:29 -0700 | [diff] [blame] | 70 | const struct submodule *submodule_from_name(struct repository *r, |
| 71 | const struct object_id *commit_or_tree, |
| 72 | const char *name); |
Heba Waly | d95a77d | 2019-11-17 21:04:58 +0000 | [diff] [blame] | 73 | |
| 74 | /** |
| 75 | * Given a tree-ish in the superproject and a path, return the submodule that |
| 76 | * is bound at the path in the named tree. |
| 77 | */ |
Stefan Beller | 3b8fb39 | 2018-03-28 15:35:29 -0700 | [diff] [blame] | 78 | const struct submodule *submodule_from_path(struct repository *r, |
| 79 | const struct object_id *commit_or_tree, |
| 80 | const char *path); |
Heba Waly | d95a77d | 2019-11-17 21:04:58 +0000 | [diff] [blame] | 81 | |
| 82 | /** |
| 83 | * Use these to free the internally cached values. |
| 84 | */ |
Stefan Beller | f793b89 | 2018-03-28 15:35:28 -0700 | [diff] [blame] | 85 | void submodule_free(struct repository *r); |
Heba Waly | d95a77d | 2019-11-17 21:04:58 +0000 | [diff] [blame] | 86 | |
Antonio Ospite | bcbc780 | 2018-10-05 15:05:52 +0200 | [diff] [blame] | 87 | int print_config_from_gitmodules(struct repository *repo, const char *key); |
Antonio Ospite | 45f5ef3 | 2018-10-05 15:05:53 +0200 | [diff] [blame] | 88 | 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] | 89 | |
Jeff King | 0383bbb | 2018-04-30 03:25:25 -0400 | [diff] [blame] | 90 | /* |
| 91 | * Returns 0 if the name is syntactically acceptable as a submodule "name" |
| 92 | * (e.g., that may be found in the subsection of a .gitmodules file) and -1 |
| 93 | * otherwise. |
| 94 | */ |
| 95 | int check_submodule_name(const char *name); |
| 96 | |
Antonio Ospite | ad13637 | 2018-06-26 12:47:05 +0200 | [diff] [blame] | 97 | /* |
Antonio Ospite | 588929d | 2018-06-26 12:47:08 +0200 | [diff] [blame] | 98 | * Note: these helper functions exist solely to maintain backward |
| 99 | * compatibility with 'fetch' and 'update_clone' storing configuration in |
| 100 | * '.gitmodules'. |
Antonio Ospite | ad13637 | 2018-06-26 12:47:05 +0200 | [diff] [blame] | 101 | * |
Antonio Ospite | 588929d | 2018-06-26 12:47:08 +0200 | [diff] [blame] | 102 | * New helpers to retrieve arbitrary configuration from the '.gitmodules' file |
| 103 | * should NOT be added. |
Antonio Ospite | ad13637 | 2018-06-26 12:47:05 +0200 | [diff] [blame] | 104 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 105 | void fetch_config_from_gitmodules(int *max_children, int *recurse_submodules); |
| 106 | void update_clone_config_from_gitmodules(int *max_jobs); |
Antonio Ospite | 71a6953 | 2018-06-26 12:47:06 +0200 | [diff] [blame] | 107 | |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 108 | #endif /* SUBMODULE_CONFIG_H */ |