6 #include "sha1-array.h"
9 struct alternate_object_database
{
10 struct alternate_object_database
*next
;
12 /* see alt_scratch_buf() */
13 struct strbuf scratch
;
17 * Used to store the results of readdir(3) calls when searching
18 * for unique abbreviated hashes. This cache is never
19 * invalidated, thus it's racy and not necessarily accurate.
20 * That's fine for its purpose; don't use it for tasks requiring
23 char loose_objects_subdir_seen
[256];
24 struct oid_array loose_objects_cache
;
27 * Path to the alternative object store. If this is a relative path,
28 * it is relative to the current working directory.
30 char path
[FLEX_ARRAY
];
32 void prepare_alt_odb(struct repository
*r
);
33 char *compute_alternate_path(const char *path
, struct strbuf
*err
);
34 typedef int alt_odb_fn(struct alternate_object_database
*, void *);
35 int foreach_alt_odb(alt_odb_fn
, void*);
38 * Allocate a "struct alternate_object_database" but do _not_ actually
39 * add it to the list of alternates.
41 struct alternate_object_database
*alloc_alt_odb(const char *dir
);
44 * Add the directory to the on-disk alternates file; the new entry will also
45 * take effect in the current process.
47 void add_to_alternates_file(const char *dir
);
50 * Add the directory to the in-memory list of alternates (along with any
51 * recursive alternates it points to), but do not modify the on-disk alternates
54 void add_to_alternates_memory(const char *dir
);
57 * Returns a scratch strbuf pre-filled with the alternate object directory,
58 * including a trailing slash, which can be used to access paths in the
59 * alternate. Always use this over direct access to alt->scratch, as it
60 * cleans up any previous use of the scratch buffer.
62 struct strbuf
*alt_scratch_buf(struct alternate_object_database
*alt
);
65 struct packed_git
*next
;
67 struct pack_window
*windows
;
69 const void *index_data
;
72 uint32_t num_bad_objects
;
73 unsigned char *bad_object_sha1
;
77 int index
; /* for builtin/pack-objects.c */
78 unsigned pack_local
:1,
84 unsigned char sha1
[20];
85 struct revindex_entry
*revindex
;
86 /* something like ".git/objects/pack/xxxxx.pack" */
87 char pack_name
[FLEX_ARRAY
]; /* more */
90 struct raw_object_store
{
92 * Path to the repository's object store.
93 * Cannot be NULL after initialization.
97 /* Path to extra alternate object database if not NULL */
100 struct alternate_object_database
*alt_odb_list
;
101 struct alternate_object_database
**alt_odb_tail
;
104 * Objects that should be substituted by other objects
105 * (see git-replace(1)).
107 struct oidmap
*replace_map
;
109 struct commit_graph
*commit_graph
;
110 unsigned commit_graph_attempted
: 1; /* if loading has been attempted */
115 * should only be accessed directly by packfile.c
118 struct packed_git
*packed_git
;
119 /* A most-recently-used ordered version of the packed_git list. */
120 struct list_head packed_git_mru
;
123 * A fast, rough count of the number of objects in the repository.
124 * These two fields are not meant for direct access. Use
125 * approximate_object_count() instead.
127 unsigned long approximate_object_count
;
128 unsigned approximate_object_count_valid
: 1;
131 * Whether packed_git has already been populated with this repository's
134 unsigned packed_git_initialized
: 1;
137 struct raw_object_store
*raw_object_store_new(void);
138 void raw_object_store_clear(struct raw_object_store
*o
);
141 * Put in `buf` the name of the file in the local object database that
142 * would be used to store a loose object with the specified sha1.
144 void sha1_file_name(struct repository
*r
, struct strbuf
*buf
, const unsigned char *sha1
);
146 void *map_sha1_file(struct repository
*r
, const unsigned char *sha1
, unsigned long *size
);
148 extern void *read_object_file_extended(const struct object_id
*oid
,
149 enum object_type
*type
,
150 unsigned long *size
, int lookup_replace
);
151 static inline void *read_object_file(const struct object_id
*oid
, enum object_type
*type
, unsigned long *size
)
153 return read_object_file_extended(oid
, type
, size
, 1);
156 /* Read and unpack an object file into memory, write memory to an object file */
157 int oid_object_info(struct repository
*r
, const struct object_id
*, unsigned long *);
159 extern int hash_object_file(const void *buf
, unsigned long len
,
160 const char *type
, struct object_id
*oid
);
162 extern int write_object_file(const void *buf
, unsigned long len
,
163 const char *type
, struct object_id
*oid
);
165 extern int hash_object_file_literally(const void *buf
, unsigned long len
,
166 const char *type
, struct object_id
*oid
,
169 extern int pretend_object_file(void *, unsigned long, enum object_type
,
170 struct object_id
*oid
);
172 extern int force_object_loose(const struct object_id
*oid
, time_t mtime
);
175 * Open the loose object at path, check its hash, and return the contents,
176 * type, and size. If the object is a blob, then "contents" may return NULL,
177 * to allow streaming of large blobs.
179 * Returns 0 on success, negative on error (details may be written to stderr).
181 int read_loose_object(const char *path
,
182 const struct object_id
*expected_oid
,
183 enum object_type
*type
,
188 * Convenience for sha1_object_info_extended() with a NULL struct
189 * object_info. OBJECT_INFO_SKIP_CACHED is automatically set; pass
190 * nonzero flags to also set other flags.
192 extern int has_sha1_file_with_flags(const unsigned char *sha1
, int flags
);
193 static inline int has_sha1_file(const unsigned char *sha1
)
195 return has_sha1_file_with_flags(sha1
, 0);
198 /* Same as the above, except for struct object_id. */
199 extern int has_object_file(const struct object_id
*oid
);
200 extern int has_object_file_with_flags(const struct object_id
*oid
, int flags
);
203 * Return true iff an alternate object database has a loose object
204 * with the specified name. This function does not respect replace
207 extern int has_loose_object_nonlocal(const struct object_id
*);
209 extern void assert_oid_type(const struct object_id
*oid
, enum object_type expect
);
213 enum object_type
*typep
;
214 unsigned long *sizep
;
216 unsigned char *delta_base_sha1
;
217 struct strbuf
*type_name
;
230 * ... Nothing to expose in this case
233 * ... Nothing to expose in this case
237 struct packed_git
*pack
;
239 unsigned int is_delta
;
245 * Initializer for a "struct object_info" that wants no items. You may
246 * also memset() the memory to all-zeroes.
248 #define OBJECT_INFO_INIT {NULL}
250 /* Invoke lookup_replace_object() on the given hash */
251 #define OBJECT_INFO_LOOKUP_REPLACE 1
252 /* Allow reading from a loose object file of unknown/bogus type */
253 #define OBJECT_INFO_ALLOW_UNKNOWN_TYPE 2
254 /* Do not check cached storage */
255 #define OBJECT_INFO_SKIP_CACHED 4
256 /* Do not retry packed storage after checking packed and loose storage */
257 #define OBJECT_INFO_QUICK 8
258 /* Do not check loose object */
259 #define OBJECT_INFO_IGNORE_LOOSE 16
261 int oid_object_info_extended(struct repository
*r
,
262 const struct object_id
*,
263 struct object_info
*, unsigned flags
);
265 #endif /* OBJECT_STORE_H */