2018-04-12 03:21:05 +03:00
|
|
|
#ifndef REPLACE_OBJECT_H
|
|
|
|
#define REPLACE_OBJECT_H
|
|
|
|
|
2018-04-12 03:21:06 +03:00
|
|
|
#include "oidmap.h"
|
|
|
|
#include "repository.h"
|
2018-04-12 03:21:08 +03:00
|
|
|
#include "object-store.h"
|
2018-04-12 03:21:06 +03:00
|
|
|
|
2018-04-12 03:21:05 +03:00
|
|
|
struct replace_object {
|
|
|
|
struct oidmap_entry original;
|
|
|
|
struct object_id replacement;
|
|
|
|
};
|
|
|
|
|
2018-04-12 03:21:06 +03:00
|
|
|
/*
|
|
|
|
* This internal function is only declared here for the benefit of
|
|
|
|
* lookup_replace_object(). Please do not call it directly.
|
|
|
|
*/
|
2018-04-12 03:21:17 +03:00
|
|
|
extern const struct object_id *do_lookup_replace_object(struct repository *r,
|
|
|
|
const struct object_id *oid);
|
2018-04-12 03:21:06 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If object sha1 should be replaced, return the replacement object's
|
|
|
|
* name (replaced recursively, if necessary). The return value is
|
|
|
|
* either sha1 or a pointer to a permanently-allocated value. When
|
|
|
|
* object replacement is suppressed, always return sha1.
|
|
|
|
*/
|
2018-04-12 03:21:13 +03:00
|
|
|
#define lookup_replace_object(r, s) lookup_replace_object_##r(s)
|
|
|
|
static inline const struct object_id *lookup_replace_object_the_repository(const struct object_id *oid)
|
2018-04-12 03:21:06 +03:00
|
|
|
{
|
2018-04-12 03:21:08 +03:00
|
|
|
if (!check_replace_refs ||
|
|
|
|
(the_repository->objects->replace_map &&
|
|
|
|
the_repository->objects->replace_map->map.tablesize == 0))
|
2018-04-12 03:21:06 +03:00
|
|
|
return oid;
|
2018-04-12 03:21:12 +03:00
|
|
|
return do_lookup_replace_object(the_repository, oid);
|
2018-04-12 03:21:06 +03:00
|
|
|
}
|
|
|
|
|
2018-04-12 03:21:05 +03:00
|
|
|
#endif /* REPLACE_OBJECT_H */
|