blob: a5503a5d177e90e009be9240bfddd68c9ead475b [file] [log] [blame]
Heiko Voigt959b5452015-08-17 17:21:57 -07001#ifndef SUBMODULE_CONFIG_CACHE_H
2#define SUBMODULE_CONFIG_CACHE_H
3
4#include "hashmap.h"
Stefan Bellerea2fa5a2016-02-29 18:07:11 -08005#include "submodule.h"
Heiko Voigt959b5452015-08-17 17:21:57 -07006#include "strbuf.h"
7
8/*
9 * Submodule entry containing the information about a certain submodule
10 * in a certain revision.
11 */
12struct submodule {
13 const char *path;
14 const char *name;
15 const char *url;
16 int fetch_recurse;
17 const char *ignore;
Stefan Bellerb5944f32016-07-28 17:44:07 -070018 const char *branch;
Stefan Bellerea2fa5a2016-02-29 18:07:11 -080019 struct submodule_update_strategy update_strategy;
Heiko Voigt959b5452015-08-17 17:21:57 -070020 /* the sha1 blob id of the responsible .gitmodules file */
21 unsigned char gitmodules_sha1[20];
Stefan Beller37f52e92016-05-26 14:59:42 -070022 int recommend_shallow;
Heiko Voigt959b5452015-08-17 17:21:57 -070023};
24
Heiko Voigtc68f8372017-10-16 15:58:27 +020025#define SUBMODULE_INIT { NULL, NULL, NULL, RECURSE_SUBMODULES_NONE, \
26 NULL, NULL, SUBMODULE_UPDATE_STRATEGY_INIT, {0}, -1 };
27
Brandon Williamsbf12fcd2017-06-22 11:43:44 -070028struct submodule_cache;
29struct repository;
30
31extern void submodule_cache_free(struct submodule_cache *cache);
32
Brandon Williamsf20e7c12017-08-02 12:49:18 -070033extern int parse_submodule_fetchjobs(const char *var, const char *value);
Stefan Bellerd601fd02017-03-14 14:46:32 -070034extern int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);
Stefan Beller886dc152017-06-23 12:13:00 -070035struct option;
36extern int option_fetch_parse_recurse_submodules(const struct option *opt,
37 const char *arg, int unset);
Stefan Bellerd601fd02017-03-14 14:46:32 -070038extern int parse_update_recurse_submodules_arg(const char *opt, const char *arg);
39extern int parse_push_recurse_submodules_arg(const char *opt, const char *arg);
Brandon Williams1b796ac2017-08-03 11:19:57 -070040extern void repo_read_gitmodules(struct repository *repo);
41extern void gitmodules_config_oid(const struct object_id *commit_oid);
Stefan Bellerd601fd02017-03-14 14:46:32 -070042extern const struct submodule *submodule_from_name(
brian m. carlsoncd73de42017-07-13 23:49:20 +000043 const struct object_id *commit_or_tree, const char *name);
Stefan Bellerd601fd02017-03-14 14:46:32 -070044extern const struct submodule *submodule_from_path(
brian m. carlsoncd73de42017-07-13 23:49:20 +000045 const struct object_id *commit_or_tree, const char *path);
Brandon Williamsbf12fcd2017-06-22 11:43:44 -070046extern const struct submodule *submodule_from_cache(struct repository *repo,
brian m. carlsoncd73de42017-07-13 23:49:20 +000047 const struct object_id *treeish_name,
Brandon Williamsbf12fcd2017-06-22 11:43:44 -070048 const char *key);
Stefan Bellerd601fd02017-03-14 14:46:32 -070049extern void submodule_free(void);
Heiko Voigt959b5452015-08-17 17:21:57 -070050
51#endif /* SUBMODULE_CONFIG_H */