submodule-config: convert structures to object_id
[git] / submodule-config.h
1 #ifndef SUBMODULE_CONFIG_CACHE_H
2 #define SUBMODULE_CONFIG_CACHE_H
3
4 #include "cache.h"
5 #include "hashmap.h"
6 #include "submodule.h"
7 #include "strbuf.h"
8
9 /*
10  * Submodule entry containing the information about a certain submodule
11  * in a certain revision.
12  */
13 struct submodule {
14         const char *path;
15         const char *name;
16         const char *url;
17         int fetch_recurse;
18         const char *ignore;
19         const char *branch;
20         struct submodule_update_strategy update_strategy;
21         /* the object id of the responsible .gitmodules file */
22         struct object_id gitmodules_oid;
23         int recommend_shallow;
24 };
25
26 #define SUBMODULE_INIT { NULL, NULL, NULL, RECURSE_SUBMODULES_NONE, \
27         NULL, NULL, SUBMODULE_UPDATE_STRATEGY_INIT, { { 0 } }, -1 };
28
29 struct submodule_cache;
30 struct repository;
31
32 extern void submodule_cache_free(struct submodule_cache *cache);
33
34 extern int parse_submodule_fetchjobs(const char *var, const char *value);
35 extern int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);
36 struct option;
37 extern int option_fetch_parse_recurse_submodules(const struct option *opt,
38                                                  const char *arg, int unset);
39 extern int parse_update_recurse_submodules_arg(const char *opt, const char *arg);
40 extern int parse_push_recurse_submodules_arg(const char *opt, const char *arg);
41 extern void repo_read_gitmodules(struct repository *repo);
42 extern void gitmodules_config_oid(const struct object_id *commit_oid);
43 extern const struct submodule *submodule_from_name(
44                 const struct object_id *commit_or_tree, const char *name);
45 extern const struct submodule *submodule_from_path(
46                 const struct object_id *commit_or_tree, const char *path);
47 extern const struct submodule *submodule_from_cache(struct repository *repo,
48                                                     const struct object_id *treeish_name,
49                                                     const char *key);
50 extern void submodule_free(void);
51
52 #endif /* SUBMODULE_CONFIG_H */