Merge branch 'js/t6042-timing-fix'
[git.git] / repository.h
blob0e482b7d49e82c3cf46d81523e057e3a02d2e8f4
1 #ifndef REPOSITORY_H
2 #define REPOSITORY_H
4 #include "path.h"
6 struct config_set;
7 struct git_hash_algo;
8 struct index_state;
9 struct raw_object_store;
10 struct submodule_cache;
12 struct repository {
13 /* Environment */
15 * Path to the git directory.
16 * Cannot be NULL after initialization.
18 char *gitdir;
21 * Path to the common git directory.
22 * Cannot be NULL after initialization.
24 char *commondir;
27 * Holds any information related to accessing the raw object content.
29 struct raw_object_store *objects;
32 * All objects in this repository that have been parsed. This structure
33 * owns all objects it references, so users of "struct object *"
34 * generally do not need to free them; instead, when a repository is no
35 * longer used, call parsed_object_pool_clear() on this structure, which
36 * is called by the repositories repo_clear on its desconstruction.
38 struct parsed_object_pool *parsed_objects;
40 /* The store in which the refs are held. */
41 struct ref_store *refs;
44 * Contains path to often used file names.
46 struct path_cache cached_paths;
49 * Path to the repository's graft file.
50 * Cannot be NULL after initialization.
52 char *graft_file;
55 * Path to the current worktree's index file.
56 * Cannot be NULL after initialization.
58 char *index_file;
61 * Path to the working directory.
62 * A NULL value indicates that there is no working directory.
64 char *worktree;
67 * Path from the root of the top-level superproject down to this
68 * repository. This is only non-NULL if the repository is initialized
69 * as a submodule of another repository.
71 char *submodule_prefix;
73 /* Subsystems */
75 * Repository's config which contains key-value pairs from the usual
76 * set of config files (i.e. repo specific .git/config, user wide
77 * ~/.gitconfig, XDG config file and the global /etc/gitconfig)
79 struct config_set *config;
81 /* Repository's submodule config as defined by '.gitmodules' */
82 struct submodule_cache *submodule_cache;
85 * Repository's in-memory index.
86 * 'repo_read_index()' can be used to populate 'index'.
88 struct index_state *index;
90 /* Repository's current hash algorithm, as serialized on disk. */
91 const struct git_hash_algo *hash_algo;
93 /* Configurations */
95 /* Indicate if a repository has a different 'commondir' from 'gitdir' */
96 unsigned different_commondir:1;
99 extern struct repository *the_repository;
102 * Define a custom repository layout. Any field can be NULL, which
103 * will default back to the path according to the default layout.
105 struct set_gitdir_args {
106 const char *commondir;
107 const char *object_dir;
108 const char *graft_file;
109 const char *index_file;
110 const char *alternate_db;
113 void repo_set_gitdir(struct repository *repo, const char *root,
114 const struct set_gitdir_args *extra_args);
115 void repo_set_worktree(struct repository *repo, const char *path);
116 void repo_set_hash_algo(struct repository *repo, int algo);
117 void initialize_the_repository(void);
118 int repo_init(struct repository *r, const char *gitdir, const char *worktree);
121 * Initialize the repository 'subrepo' as the submodule given by the
122 * struct submodule 'sub' in parent repository 'superproject'.
123 * Return 0 upon success and a non-zero value upon failure, which may happen
124 * if the submodule is not found, or 'sub' is NULL.
126 struct submodule;
127 int repo_submodule_init(struct repository *subrepo,
128 struct repository *superproject,
129 const struct submodule *sub);
130 void repo_clear(struct repository *repo);
133 * Populates the repository's index from its index_file, an index struct will
134 * be allocated if needed.
136 * Return the number of index entries in the populated index or a value less
137 * than zero if an error occured. If the repository's index has already been
138 * populated then the number of entries will simply be returned.
140 int repo_read_index(struct repository *repo);
142 #endif /* REPOSITORY_H */