mirror of
https://github.com/git/git
synced 2024-11-05 04:53:18 +00:00
23b2c7e95b
As part of the transition plan, we'd like to add a file in the .git directory that maps loose objects between SHA-1 and SHA-256. Let's implement the specification in the transition plan and store this data on a per-repository basis in struct repository. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
22 lines
683 B
C
22 lines
683 B
C
#ifndef LOOSE_H
|
|
#define LOOSE_H
|
|
|
|
#include "khash.h"
|
|
|
|
struct loose_object_map {
|
|
kh_oid_map_t *to_compat;
|
|
kh_oid_map_t *to_storage;
|
|
};
|
|
|
|
void loose_object_map_init(struct loose_object_map **map);
|
|
void loose_object_map_clear(struct loose_object_map **map);
|
|
int repo_loose_object_map_oid(struct repository *repo,
|
|
const struct object_id *src,
|
|
const struct git_hash_algo *dest_algo,
|
|
struct object_id *dest);
|
|
int repo_add_loose_object_map(struct repository *repo, const struct object_id *oid,
|
|
const struct object_id *compat_oid);
|
|
int repo_read_loose_object_map(struct repository *repo);
|
|
int repo_write_loose_object_map(struct repository *repo);
|
|
|
|
#endif
|