]> git.ipfire.org Git - thirdparty/git.git/blame - submodule-config.h
Merge branch 'rj/add-i-leak-fix'
[thirdparty/git.git] / submodule-config.h
CommitLineData
959b5455
HV
1#ifndef SUBMODULE_CONFIG_CACHE_H
2#define SUBMODULE_CONFIG_CACHE_H
3
ad136370 4#include "config.h"
ea2fa5a3 5#include "submodule.h"
961b130d 6#include "tree-walk.h"
959b5455 7
d95a77d0
HW
8/**
9 * The submodule config cache API allows to read submodule
10 * configurations/information from specified revisions. Internally
11 * information is lazily read into a cache that is used to avoid
12 * unnecessary parsing of the same .gitmodules files. Lookups can be done by
13 * submodule path or name.
14 *
15 * Usage
16 * -----
17 *
18 * The caller can look up information about submodules by using the
19 * `submodule_from_path()` or `submodule_from_name()` functions. They return
20 * a `struct submodule` which contains the values. The API automatically
21 * initializes and allocates the needed infrastructure on-demand. If the
22 * caller does only want to lookup values from revisions the initialization
23 * can be skipped.
24 *
25 * If the internal cache might grow too big or when the caller is done with
26 * the API, all internally cached values can be freed with submodule_free().
27 *
28 */
29
959b5455
HV
30/*
31 * Submodule entry containing the information about a certain submodule
d95a77d0 32 * in a certain revision. It is returned by the lookup functions.
959b5455
HV
33 */
34struct submodule {
35 const char *path;
36 const char *name;
37 const char *url;
465b30a9 38 enum submodule_recurse_mode fetch_recurse;
959b5455 39 const char *ignore;
b5944f34 40 const char *branch;
ea2fa5a3 41 struct submodule_update_strategy update_strategy;
34caab02 42 /* the object id of the responsible .gitmodules file */
43 struct object_id gitmodules_oid;
37f52e93 44 int recommend_shallow;
959b5455 45};
bf12fcdf
BW
46struct submodule_cache;
47struct repository;
48
55454427 49void submodule_cache_free(struct submodule_cache *cache);
bf12fcdf 50
8868b1eb
GC
51int parse_submodule_fetchjobs(const char *var, const char *value,
52 const struct key_value_info *kvi);
55454427 53int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);
886dc154 54struct option;
55454427 55int option_fetch_parse_recurse_submodules(const struct option *opt,
ad6dad09 56 const char *arg, int unset);
55454427
DL
57int parse_update_recurse_submodules_arg(const char *opt, const char *arg);
58int parse_push_recurse_submodules_arg(const char *opt, const char *arg);
d7992421 59void repo_read_gitmodules(struct repository *repo, int skip_if_read);
55454427 60void gitmodules_config_oid(const struct object_id *commit_oid);
d95a77d0
HW
61
62/**
63 * Same as submodule_from_path but lookup by name.
64 */
3b8fb393
SB
65const struct submodule *submodule_from_name(struct repository *r,
66 const struct object_id *commit_or_tree,
67 const char *name);
d95a77d0
HW
68
69/**
70 * Given a tree-ish in the superproject and a path, return the submodule that
71 * is bound at the path in the named tree.
72 */
3b8fb393
SB
73const struct submodule *submodule_from_path(struct repository *r,
74 const struct object_id *commit_or_tree,
75 const char *path);
d95a77d0
HW
76
77/**
78 * Use these to free the internally cached values.
79 */
f793b895 80void submodule_free(struct repository *r);
d95a77d0 81
bcbc780d 82int print_config_from_gitmodules(struct repository *repo, const char *key);
45f5ef3d 83int config_set_in_gitmodules_file_gently(const char *key, const char *value);
959b5455 84
0383bbb9
JK
85/*
86 * Returns 0 if the name is syntactically acceptable as a submodule "name"
87 * (e.g., that may be found in the subsection of a .gitmodules file) and -1
88 * otherwise.
89 */
90int check_submodule_name(const char *name);
91
13320ff6
VD
92/* Returns 0 if the URL valid per RFC3986 and -1 otherwise. */
93int check_submodule_url(const char *url);
94
ad136370 95/*
588929d5
AO
96 * Note: these helper functions exist solely to maintain backward
97 * compatibility with 'fetch' and 'update_clone' storing configuration in
98 * '.gitmodules'.
ad136370 99 *
588929d5
AO
100 * New helpers to retrieve arbitrary configuration from the '.gitmodules' file
101 * should NOT be added.
ad136370 102 */
55454427
DL
103void fetch_config_from_gitmodules(int *max_children, int *recurse_submodules);
104void update_clone_config_from_gitmodules(int *max_jobs);
71a6953d 105
961b130d
GC
106/*
107 * Submodule entry that contains relevant information about a
108 * submodule in a tree.
109 */
110struct submodule_tree_entry {
111 /* The submodule's tree entry. */
112 struct name_entry *name_entry;
113 /*
114 * A struct repository corresponding to the submodule. May be
115 * NULL if the submodule has not been updated.
116 */
117 struct repository *repo;
118 /*
119 * A struct submodule containing the submodule config in the
120 * tree's .gitmodules.
121 */
122 const struct submodule *submodule;
123};
124
125struct submodule_entry_list {
126 struct submodule_tree_entry *entries;
127 int entry_nr;
128 int entry_alloc;
129};
130
131/**
132 * Given a treeish, return all submodules in the tree and its subtrees,
133 * but excluding nested submodules. Callers that require nested
134 * submodules are expected to recurse into the submodules themselves.
135 */
136void submodules_of_tree(struct repository *r,
137 const struct object_id *treeish_name,
138 struct submodule_entry_list *ret);
959b5455 139#endif /* SUBMODULE_CONFIG_H */