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 | |
| 10 | /* |
| 11 | * Submodule entry containing the information about a certain submodule |
| 12 | * in a certain revision. |
| 13 | */ |
| 14 | struct submodule { |
| 15 | const char *path; |
| 16 | const char *name; |
| 17 | const char *url; |
| 18 | int fetch_recurse; |
| 19 | const char *ignore; |
Stefan Beller | b5944f3 | 2016-07-28 17:44:07 -0700 | [diff] [blame] | 20 | const char *branch; |
Stefan Beller | ea2fa5a | 2016-02-29 18:07:11 -0800 | [diff] [blame] | 21 | struct submodule_update_strategy update_strategy; |
brian m. carlson | 34caab0 | 2018-05-02 00:25:42 +0000 | [diff] [blame] | 22 | /* the object id of the responsible .gitmodules file */ |
| 23 | struct object_id gitmodules_oid; |
Stefan Beller | 37f52e9 | 2016-05-26 14:59:42 -0700 | [diff] [blame] | 24 | int recommend_shallow; |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 25 | }; |
| 26 | |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 27 | #define SUBMODULE_INIT { NULL, NULL, NULL, RECURSE_SUBMODULES_NONE, \ |
brian m. carlson | 34caab0 | 2018-05-02 00:25:42 +0000 | [diff] [blame] | 28 | NULL, NULL, SUBMODULE_UPDATE_STRATEGY_INIT, { { 0 } }, -1 }; |
Heiko Voigt | c68f837 | 2017-10-16 15:58:27 +0200 | [diff] [blame] | 29 | |
Brandon Williams | bf12fcd | 2017-06-22 11:43:44 -0700 | [diff] [blame] | 30 | struct submodule_cache; |
| 31 | struct repository; |
| 32 | |
| 33 | extern void submodule_cache_free(struct submodule_cache *cache); |
| 34 | |
Brandon Williams | f20e7c1 | 2017-08-02 12:49:18 -0700 | [diff] [blame] | 35 | extern int parse_submodule_fetchjobs(const char *var, const char *value); |
Stefan Beller | d601fd0 | 2017-03-14 14:46:32 -0700 | [diff] [blame] | 36 | extern int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg); |
Stefan Beller | 886dc15 | 2017-06-23 12:13:00 -0700 | [diff] [blame] | 37 | struct option; |
| 38 | extern int option_fetch_parse_recurse_submodules(const struct option *opt, |
| 39 | const char *arg, int unset); |
Stefan Beller | d601fd0 | 2017-03-14 14:46:32 -0700 | [diff] [blame] | 40 | extern int parse_update_recurse_submodules_arg(const char *opt, const char *arg); |
| 41 | extern int parse_push_recurse_submodules_arg(const char *opt, const char *arg); |
Brandon Williams | 1b796ac | 2017-08-03 11:19:57 -0700 | [diff] [blame] | 42 | extern void repo_read_gitmodules(struct repository *repo); |
| 43 | extern void gitmodules_config_oid(const struct object_id *commit_oid); |
Stefan Beller | 3b8fb39 | 2018-03-28 15:35:29 -0700 | [diff] [blame] | 44 | const struct submodule *submodule_from_name(struct repository *r, |
| 45 | const struct object_id *commit_or_tree, |
| 46 | const char *name); |
| 47 | const struct submodule *submodule_from_path(struct repository *r, |
| 48 | const struct object_id *commit_or_tree, |
| 49 | const char *path); |
Stefan Beller | f793b89 | 2018-03-28 15:35:28 -0700 | [diff] [blame] | 50 | void submodule_free(struct repository *r); |
Antonio Ospite | bcbc780 | 2018-10-05 15:05:52 +0200 | [diff] [blame] | 51 | int print_config_from_gitmodules(struct repository *repo, const char *key); |
Antonio Ospite | 45f5ef3 | 2018-10-05 15:05:53 +0200 | [diff] [blame] | 52 | 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] | 53 | |
Jeff King | 0383bbb | 2018-04-30 03:25:25 -0400 | [diff] [blame] | 54 | /* |
| 55 | * Returns 0 if the name is syntactically acceptable as a submodule "name" |
| 56 | * (e.g., that may be found in the subsection of a .gitmodules file) and -1 |
| 57 | * otherwise. |
| 58 | */ |
| 59 | int check_submodule_name(const char *name); |
| 60 | |
Antonio Ospite | ad13637 | 2018-06-26 12:47:05 +0200 | [diff] [blame] | 61 | /* |
Antonio Ospite | 588929d | 2018-06-26 12:47:08 +0200 | [diff] [blame] | 62 | * Note: these helper functions exist solely to maintain backward |
| 63 | * compatibility with 'fetch' and 'update_clone' storing configuration in |
| 64 | * '.gitmodules'. |
Antonio Ospite | ad13637 | 2018-06-26 12:47:05 +0200 | [diff] [blame] | 65 | * |
Antonio Ospite | 588929d | 2018-06-26 12:47:08 +0200 | [diff] [blame] | 66 | * New helpers to retrieve arbitrary configuration from the '.gitmodules' file |
| 67 | * should NOT be added. |
Antonio Ospite | ad13637 | 2018-06-26 12:47:05 +0200 | [diff] [blame] | 68 | */ |
Antonio Ospite | 71a6953 | 2018-06-26 12:47:06 +0200 | [diff] [blame] | 69 | extern void fetch_config_from_gitmodules(int *max_children, int *recurse_submodules); |
Antonio Ospite | 0574499 | 2018-06-26 12:47:07 +0200 | [diff] [blame] | 70 | extern void update_clone_config_from_gitmodules(int *max_jobs); |
Antonio Ospite | 71a6953 | 2018-06-26 12:47:06 +0200 | [diff] [blame] | 71 | |
Heiko Voigt | 959b545 | 2015-08-17 17:21:57 -0700 | [diff] [blame] | 72 | #endif /* SUBMODULE_CONFIG_H */ |