9 #include "thread-utils.h"
11 struct object_directory
{
12 struct object_directory
*next
;
15 * Used to store the results of readdir(3) calls when we are OK
16 * sacrificing accuracy due to races for speed. That includes
17 * object existence with OBJECT_INFO_QUICK, as well as
18 * our search for unique abbreviated hashes. Don't use it for tasks
19 * requiring greater accuracy!
21 * Be sure to call odb_load_loose_cache() before using.
23 char loose_objects_subdir_seen
[256];
24 struct oid_array loose_objects_cache
[256];
27 * Path to the alternative object store. If this is a relative path,
28 * it is relative to the current working directory.
33 void prepare_alt_odb(struct repository
*r
);
34 char *compute_alternate_path(const char *path
, struct strbuf
*err
);
35 typedef int alt_odb_fn(struct object_directory
*, void *);
36 int foreach_alt_odb(alt_odb_fn
, void*);
37 typedef void alternate_ref_fn(const struct object_id
*oid
, void *);
38 void for_each_alternate_ref(alternate_ref_fn
, void *);
41 * Add the directory to the on-disk alternates file; the new entry will also
42 * take effect in the current process.
44 void add_to_alternates_file(const char *dir
);
47 * Add the directory to the in-memory list of alternates (along with any
48 * recursive alternates it points to), but do not modify the on-disk alternates
51 void add_to_alternates_memory(const char *dir
);
54 * Populate and return the loose object cache array corresponding to the
57 struct oid_array
*odb_loose_cache(struct object_directory
*odb
,
58 const struct object_id
*oid
);
60 /* Empty the loose object cache for the specified object directory. */
61 void odb_clear_loose_cache(struct object_directory
*odb
);
64 struct hashmap_entry packmap_ent
;
65 struct packed_git
*next
;
67 struct pack_window
*windows
;
69 const void *index_data
;
72 uint32_t num_bad_objects
;
74 unsigned char *bad_object_sha1
;
78 int index
; /* for builtin/pack-objects.c */
79 unsigned pack_local
:1,
86 unsigned char hash
[GIT_MAX_RAWSZ
];
87 struct revindex_entry
*revindex
;
88 const uint32_t *revindex_data
;
89 const uint32_t *revindex_map
;
91 /* something like ".git/objects/pack/xxxxx.pack" */
92 char pack_name
[FLEX_ARRAY
]; /* more */
95 struct multi_pack_index
;
97 static inline int pack_map_entry_cmp(const void *unused_cmp_data
,
98 const struct hashmap_entry
*entry
,
99 const struct hashmap_entry
*entry2
,
102 const char *key
= keydata
;
103 const struct packed_git
*pg1
, *pg2
;
105 pg1
= container_of(entry
, const struct packed_git
, packmap_ent
);
106 pg2
= container_of(entry2
, const struct packed_git
, packmap_ent
);
108 return strcmp(pg1
->pack_name
, key
? key
: pg2
->pack_name
);
111 struct raw_object_store
{
113 * Set of all object directories; the main directory is first (and
114 * cannot be NULL after initialization). Subsequent directories are
117 struct object_directory
*odb
;
118 struct object_directory
**odb_tail
;
119 int loaded_alternates
;
122 * A list of alternate object directories loaded from the environment;
123 * this should not generally need to be accessed directly, but will
124 * populate the "odb" list when prepare_alt_odb() is run.
129 * Objects that should be substituted by other objects
130 * (see git-replace(1)).
132 struct oidmap
*replace_map
;
133 unsigned replace_map_initialized
: 1;
134 pthread_mutex_t replace_mutex
; /* protect object replace functions */
136 struct commit_graph
*commit_graph
;
137 unsigned commit_graph_attempted
: 1; /* if loading has been attempted */
142 * should only be accessed directly by packfile.c and midx.c
144 struct multi_pack_index
*multi_pack_index
;
149 * should only be accessed directly by packfile.c
152 struct packed_git
*packed_git
;
153 /* A most-recently-used ordered version of the packed_git list. */
154 struct list_head packed_git_mru
;
157 struct packed_git
**packs
;
162 * A map of packfiles to packed_git structs for tracking which
163 * packs have been loaded already.
165 struct hashmap pack_map
;
168 * A fast, rough count of the number of objects in the repository.
169 * These two fields are not meant for direct access. Use
170 * approximate_object_count() instead.
172 unsigned long approximate_object_count
;
173 unsigned approximate_object_count_valid
: 1;
176 * Whether packed_git has already been populated with this repository's
179 unsigned packed_git_initialized
: 1;
182 struct raw_object_store
*raw_object_store_new(void);
183 void raw_object_store_clear(struct raw_object_store
*o
);
186 * Put in `buf` the name of the file in the local object database that
187 * would be used to store a loose object with the specified oid.
189 const char *loose_object_path(struct repository
*r
, struct strbuf
*buf
,
190 const struct object_id
*oid
);
192 void *map_loose_object(struct repository
*r
, const struct object_id
*oid
,
193 unsigned long *size
);
195 void *read_object_file_extended(struct repository
*r
,
196 const struct object_id
*oid
,
197 enum object_type
*type
,
198 unsigned long *size
, int lookup_replace
);
199 static inline void *repo_read_object_file(struct repository
*r
,
200 const struct object_id
*oid
,
201 enum object_type
*type
,
204 return read_object_file_extended(r
, oid
, type
, size
, 1);
206 #ifndef NO_THE_REPOSITORY_COMPATIBILITY_MACROS
207 #define read_object_file(oid, type, size) repo_read_object_file(the_repository, oid, type, size)
210 /* Read and unpack an object file into memory, write memory to an object file */
211 int oid_object_info(struct repository
*r
, const struct object_id
*, unsigned long *);
213 int hash_object_file(const struct git_hash_algo
*algo
, const void *buf
,
214 unsigned long len
, const char *type
,
215 struct object_id
*oid
);
217 int write_object_file(const void *buf
, unsigned long len
,
218 const char *type
, struct object_id
*oid
);
220 int hash_object_file_literally(const void *buf
, unsigned long len
,
221 const char *type
, struct object_id
*oid
,
225 * Add an object file to the in-memory object store, without writing it
228 * Callers are responsible for calling write_object_file to record the
229 * object in persistent storage before writing any other new objects
232 int pretend_object_file(void *, unsigned long, enum object_type
,
233 struct object_id
*oid
);
235 int force_object_loose(const struct object_id
*oid
, time_t mtime
);
238 * Open the loose object at path, check its hash, and return the contents,
239 * type, and size. If the object is a blob, then "contents" may return NULL,
240 * to allow streaming of large blobs.
242 * Returns 0 on success, negative on error (details may be written to stderr).
244 int read_loose_object(const char *path
,
245 const struct object_id
*expected_oid
,
246 enum object_type
*type
,
250 /* Retry packed storage after checking packed and loose storage */
251 #define HAS_OBJECT_RECHECK_PACKED 1
254 * Returns 1 if the object exists. This function will not lazily fetch objects
255 * in a partial clone.
257 int has_object(struct repository
*r
, const struct object_id
*oid
,
261 * These macros and functions are deprecated. If checking existence for an
262 * object that is likely to be missing and/or whose absence is relatively
263 * inconsequential (or is consequential but the caller is prepared to handle
264 * it), use has_object(), which has better defaults (no lazy fetch in a partial
265 * clone and no rechecking of packed storage). In the unlikely event that a
266 * caller needs to assert existence of an object that it fully expects to
267 * exist, and wants to trigger a lazy fetch in a partial clone, use
268 * oid_object_info_extended() with a NULL struct object_info.
270 * These functions can be removed once all callers have migrated to
271 * has_object() and/or oid_object_info_extended().
273 #ifndef NO_THE_REPOSITORY_COMPATIBILITY_MACROS
274 #define has_sha1_file_with_flags(sha1, flags) repo_has_sha1_file_with_flags(the_repository, sha1, flags)
275 #define has_sha1_file(sha1) repo_has_sha1_file(the_repository, sha1)
277 int repo_has_object_file(struct repository
*r
, const struct object_id
*oid
);
278 int repo_has_object_file_with_flags(struct repository
*r
,
279 const struct object_id
*oid
, int flags
);
280 #ifndef NO_THE_REPOSITORY_COMPATIBILITY_MACROS
281 #define has_object_file(oid) repo_has_object_file(the_repository, oid)
282 #define has_object_file_with_flags(oid, flags) repo_has_object_file_with_flags(the_repository, oid, flags)
286 * Return true iff an alternate object database has a loose object
287 * with the specified name. This function does not respect replace
290 int has_loose_object_nonlocal(const struct object_id
*);
292 void assert_oid_type(const struct object_id
*oid
, enum object_type expect
);
295 * Enabling the object read lock allows multiple threads to safely call the
296 * following functions in parallel: repo_read_object_file(), read_object_file(),
297 * read_object_file_extended(), read_object_with_reference(), read_object(),
298 * oid_object_info() and oid_object_info_extended().
300 * obj_read_lock() and obj_read_unlock() may also be used to protect other
301 * section which cannot execute in parallel with object reading. Since the used
302 * lock is a recursive mutex, these sections can even contain calls to object
303 * reading functions. However, beware that in these cases zlib inflation won't
304 * be performed in parallel, losing performance.
306 * TODO: oid_object_info_extended()'s call stack has a recursive behavior. If
307 * any of its callees end up calling it, this recursive call won't benefit from
308 * parallel inflation.
310 void enable_obj_read_lock(void);
311 void disable_obj_read_lock(void);
313 extern int obj_read_use_lock
;
314 extern pthread_mutex_t obj_read_mutex
;
316 static inline void obj_read_lock(void)
318 if(obj_read_use_lock
)
319 pthread_mutex_lock(&obj_read_mutex
);
322 static inline void obj_read_unlock(void)
324 if(obj_read_use_lock
)
325 pthread_mutex_unlock(&obj_read_mutex
);
330 enum object_type
*typep
;
331 unsigned long *sizep
;
333 struct object_id
*delta_base_oid
;
334 struct strbuf
*type_name
;
347 * ... Nothing to expose in this case
350 * ... Nothing to expose in this case
354 struct packed_git
*pack
;
356 unsigned int is_delta
;
362 * Initializer for a "struct object_info" that wants no items. You may
363 * also memset() the memory to all-zeroes.
365 #define OBJECT_INFO_INIT {NULL}
367 /* Invoke lookup_replace_object() on the given hash */
368 #define OBJECT_INFO_LOOKUP_REPLACE 1
369 /* Allow reading from a loose object file of unknown/bogus type */
370 #define OBJECT_INFO_ALLOW_UNKNOWN_TYPE 2
371 /* Do not retry packed storage after checking packed and loose storage */
372 #define OBJECT_INFO_QUICK 8
373 /* Do not check loose object */
374 #define OBJECT_INFO_IGNORE_LOOSE 16
376 * Do not attempt to fetch the object if missing (even if fetch_is_missing is
379 #define OBJECT_INFO_SKIP_FETCH_OBJECT 32
381 * This is meant for bulk prefetching of missing blobs in a partial
382 * clone. Implies OBJECT_INFO_SKIP_FETCH_OBJECT and OBJECT_INFO_QUICK
384 #define OBJECT_INFO_FOR_PREFETCH (OBJECT_INFO_SKIP_FETCH_OBJECT | OBJECT_INFO_QUICK)
386 int oid_object_info_extended(struct repository
*r
,
387 const struct object_id
*,
388 struct object_info
*, unsigned flags
);
391 * Iterate over the files in the loose-object parts of the object
392 * directory "path", triggering the following callbacks:
394 * - loose_object is called for each loose object we find.
396 * - loose_cruft is called for any files that do not appear to be
397 * loose objects. Note that we only look in the loose object
398 * directories "objects/[0-9a-f]{2}/", so we will not report
399 * "objects/foobar" as cruft.
401 * - loose_subdir is called for each top-level hashed subdirectory
402 * of the object directory (e.g., "$OBJDIR/f0"). It is called
403 * after the objects in the directory are processed.
405 * Any callback that is NULL will be ignored. Callbacks returning non-zero
406 * will end the iteration.
408 * In the "buf" variant, "path" is a strbuf which will also be used as a
409 * scratch buffer, but restored to its original contents before
410 * the function returns.
412 typedef int each_loose_object_fn(const struct object_id
*oid
,
415 typedef int each_loose_cruft_fn(const char *basename
,
418 typedef int each_loose_subdir_fn(unsigned int nr
,
421 int for_each_file_in_obj_subdir(unsigned int subdir_nr
,
423 each_loose_object_fn obj_cb
,
424 each_loose_cruft_fn cruft_cb
,
425 each_loose_subdir_fn subdir_cb
,
427 int for_each_loose_file_in_objdir(const char *path
,
428 each_loose_object_fn obj_cb
,
429 each_loose_cruft_fn cruft_cb
,
430 each_loose_subdir_fn subdir_cb
,
432 int for_each_loose_file_in_objdir_buf(struct strbuf
*path
,
433 each_loose_object_fn obj_cb
,
434 each_loose_cruft_fn cruft_cb
,
435 each_loose_subdir_fn subdir_cb
,
438 /* Flags for for_each_*_object() below. */
439 enum for_each_object_flags
{
440 /* Iterate only over local objects, not alternates. */
441 FOR_EACH_OBJECT_LOCAL_ONLY
= (1<<0),
443 /* Only iterate over packs obtained from the promisor remote. */
444 FOR_EACH_OBJECT_PROMISOR_ONLY
= (1<<1),
447 * Visit objects within a pack in packfile order rather than .idx order
449 FOR_EACH_OBJECT_PACK_ORDER
= (1<<2),
453 * Iterate over all accessible loose objects without respect to
454 * reachability. By default, this includes both local and alternate objects.
455 * The order in which objects are visited is unspecified.
457 * Any flags specific to packs are ignored.
459 int for_each_loose_object(each_loose_object_fn
, void *,
460 enum for_each_object_flags flags
);
463 * Iterate over all accessible packed objects without respect to reachability.
464 * By default, this includes both local and alternate packs.
466 * Note that some objects may appear twice if they are found in multiple packs.
467 * Each pack is visited in an unspecified order. By default, objects within a
468 * pack are visited in pack-idx order (i.e., sorted by oid).
470 typedef int each_packed_object_fn(const struct object_id
*oid
,
471 struct packed_git
*pack
,
474 int for_each_object_in_pack(struct packed_git
*p
,
475 each_packed_object_fn
, void *data
,
476 enum for_each_object_flags flags
);
477 int for_each_packed_object(each_packed_object_fn
, void *,
478 enum for_each_object_flags flags
);
480 #endif /* OBJECT_STORE_H */