treewide: remove unnecessary includes from header files
[git.git] / submodule-config.h
blobe8164cca3e459ea0adad9f17cad825208d3ea8d7
1 #ifndef SUBMODULE_CONFIG_CACHE_H
2 #define SUBMODULE_CONFIG_CACHE_H
4 #include "config.h"
5 #include "submodule.h"
6 #include "strbuf.h"
7 #include "tree-walk.h"
9 /**
10 * The submodule config cache API allows to read submodule
11 * configurations/information from specified revisions. Internally
12 * information is lazily read into a cache that is used to avoid
13 * unnecessary parsing of the same .gitmodules files. Lookups can be done by
14 * submodule path or name.
16 * Usage
17 * -----
19 * The caller can look up information about submodules by using the
20 * `submodule_from_path()` or `submodule_from_name()` functions. They return
21 * a `struct submodule` which contains the values. The API automatically
22 * initializes and allocates the needed infrastructure on-demand. If the
23 * caller does only want to lookup values from revisions the initialization
24 * can be skipped.
26 * If the internal cache might grow too big or when the caller is done with
27 * the API, all internally cached values can be freed with submodule_free().
32 * Submodule entry containing the information about a certain submodule
33 * in a certain revision. It is returned by the lookup functions.
35 struct submodule {
36 const char *path;
37 const char *name;
38 const char *url;
39 enum submodule_recurse_mode fetch_recurse;
40 const char *ignore;
41 const char *branch;
42 struct submodule_update_strategy update_strategy;
43 /* the object id of the responsible .gitmodules file */
44 struct object_id gitmodules_oid;
45 int recommend_shallow;
47 struct submodule_cache;
48 struct repository;
50 void submodule_cache_free(struct submodule_cache *cache);
52 int parse_submodule_fetchjobs(const char *var, const char *value,
53 const struct key_value_info *kvi);
54 int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);
55 struct option;
56 int option_fetch_parse_recurse_submodules(const struct option *opt,
57 const char *arg, int unset);
58 int parse_update_recurse_submodules_arg(const char *opt, const char *arg);
59 int parse_push_recurse_submodules_arg(const char *opt, const char *arg);
60 void repo_read_gitmodules(struct repository *repo, int skip_if_read);
61 void gitmodules_config_oid(const struct object_id *commit_oid);
63 /**
64 * Same as submodule_from_path but lookup by name.
66 const struct submodule *submodule_from_name(struct repository *r,
67 const struct object_id *commit_or_tree,
68 const char *name);
70 /**
71 * Given a tree-ish in the superproject and a path, return the submodule that
72 * is bound at the path in the named tree.
74 const struct submodule *submodule_from_path(struct repository *r,
75 const struct object_id *commit_or_tree,
76 const char *path);
78 /**
79 * Use these to free the internally cached values.
81 void submodule_free(struct repository *r);
83 int print_config_from_gitmodules(struct repository *repo, const char *key);
84 int config_set_in_gitmodules_file_gently(const char *key, const char *value);
87 * Returns 0 if the name is syntactically acceptable as a submodule "name"
88 * (e.g., that may be found in the subsection of a .gitmodules file) and -1
89 * otherwise.
91 int check_submodule_name(const char *name);
94 * Note: these helper functions exist solely to maintain backward
95 * compatibility with 'fetch' and 'update_clone' storing configuration in
96 * '.gitmodules'.
98 * New helpers to retrieve arbitrary configuration from the '.gitmodules' file
99 * should NOT be added.
101 void fetch_config_from_gitmodules(int *max_children, int *recurse_submodules);
102 void update_clone_config_from_gitmodules(int *max_jobs);
105 * Submodule entry that contains relevant information about a
106 * submodule in a tree.
108 struct submodule_tree_entry {
109 /* The submodule's tree entry. */
110 struct name_entry *name_entry;
112 * A struct repository corresponding to the submodule. May be
113 * NULL if the submodule has not been updated.
115 struct repository *repo;
117 * A struct submodule containing the submodule config in the
118 * tree's .gitmodules.
120 const struct submodule *submodule;
123 struct submodule_entry_list {
124 struct submodule_tree_entry *entries;
125 int entry_nr;
126 int entry_alloc;
130 * Given a treeish, return all submodules in the tree and its subtrees,
131 * but excluding nested submodules. Callers that require nested
132 * submodules are expected to recurse into the submodules themselves.
134 void submodules_of_tree(struct repository *r,
135 const struct object_id *treeish_name,
136 struct submodule_entry_list *ret);
137 #endif /* SUBMODULE_CONFIG_H */