1 #ifndef REPLACE_OBJECT_H
2 #define REPLACE_OBJECT_H
5 #include "repository.h"
6 #include "object-store.h"
9 * Do replace refs need to be checked this run? This variable is
10 * initialized to true unless --no-replace-object is used or
11 * $GIT_NO_REPLACE_OBJECTS is set, but is set to false by some
12 * commands that do not want replace references to be active.
14 extern int read_replace_refs
;
16 struct replace_object
{
17 struct oidmap_entry original
;
18 struct object_id replacement
;
21 void prepare_replace_object(struct repository
*r
);
24 * This internal function is only declared here for the benefit of
25 * lookup_replace_object(). Please do not call it directly.
27 const struct object_id
*do_lookup_replace_object(struct repository
*r
,
28 const struct object_id
*oid
);
31 * If object sha1 should be replaced, return the replacement object's
32 * name (replaced recursively, if necessary). The return value is
33 * either sha1 or a pointer to a permanently-allocated value. When
34 * object replacement is suppressed, always return sha1.
36 * Note: some thread debuggers might point a data race on the
37 * replace_map_initialized reading in this function. However, we know there's no
38 * problem in the value being updated by one thread right after another one read
39 * it here (and it should be written to only once, anyway).
41 static inline const struct object_id
*lookup_replace_object(struct repository
*r
,
42 const struct object_id
*oid
)
44 if (!read_replace_refs
||
45 (r
->objects
->replace_map_initialized
&&
46 r
->objects
->replace_map
->map
.tablesize
== 0))
48 return do_lookup_replace_object(r
, oid
);
51 #endif /* REPLACE_OBJECT_H */