pack: move approximate object count to object store
[git.git] / repository.h
blob09df94a4722dacc40ab106e3b3ca348167daa764
1 #ifndef REPOSITORY_H
2 #define REPOSITORY_H
4 struct config_set;
5 struct git_hash_algo;
6 struct index_state;
7 struct raw_object_store;
8 struct submodule_cache;
10 struct repository {
11 /* Environment */
13 * Path to the git directory.
14 * Cannot be NULL after initialization.
16 char *gitdir;
19 * Path to the common git directory.
20 * Cannot be NULL after initialization.
22 char *commondir;
25 * Holds any information related to accessing the raw object content.
27 struct raw_object_store *objects;
30 * Path to the repository's graft file.
31 * Cannot be NULL after initialization.
33 char *graft_file;
36 * Path to the current worktree's index file.
37 * Cannot be NULL after initialization.
39 char *index_file;
42 * Path to the working directory.
43 * A NULL value indicates that there is no working directory.
45 char *worktree;
48 * Path from the root of the top-level superproject down to this
49 * repository. This is only non-NULL if the repository is initialized
50 * as a submodule of another repository.
52 char *submodule_prefix;
54 /* Subsystems */
56 * Repository's config which contains key-value pairs from the usual
57 * set of config files (i.e. repo specific .git/config, user wide
58 * ~/.gitconfig, XDG config file and the global /etc/gitconfig)
60 struct config_set *config;
62 /* Repository's submodule config as defined by '.gitmodules' */
63 struct submodule_cache *submodule_cache;
66 * Repository's in-memory index.
67 * 'repo_read_index()' can be used to populate 'index'.
69 struct index_state *index;
71 /* Repository's current hash algorithm, as serialized on disk. */
72 const struct git_hash_algo *hash_algo;
74 /* Configurations */
76 /* Indicate if a repository has a different 'commondir' from 'gitdir' */
77 unsigned different_commondir:1;
80 extern struct repository *the_repository;
83 * Define a custom repository layout. Any field can be NULL, which
84 * will default back to the path according to the default layout.
86 struct set_gitdir_args {
87 const char *commondir;
88 const char *object_dir;
89 const char *graft_file;
90 const char *index_file;
91 const char *alternate_db;
94 extern void repo_set_gitdir(struct repository *repo,
95 const char *root,
96 const struct set_gitdir_args *extra_args);
97 extern void repo_set_worktree(struct repository *repo, const char *path);
98 extern void repo_set_hash_algo(struct repository *repo, int algo);
99 extern void initialize_the_repository(void);
100 extern int repo_submodule_init(struct repository *submodule,
101 struct repository *superproject,
102 const char *path);
103 extern void repo_clear(struct repository *repo);
106 * Populates the repository's index from its index_file, an index struct will
107 * be allocated if needed.
109 * Return the number of index entries in the populated index or a value less
110 * than zero if an error occured. If the repository's index has already been
111 * populated then the number of entries will simply be returned.
113 extern int repo_read_index(struct repository *repo);
115 #endif /* REPOSITORY_H */