2018-08-16 08:13:07 +02:00
|
|
|
#ifndef DELTA_ISLANDS_H
|
|
|
|
#define DELTA_ISLANDS_H
|
|
|
|
|
2018-11-10 06:49:03 +01:00
|
|
|
struct commit;
|
2018-09-19 02:14:30 +02:00
|
|
|
struct object_id;
|
|
|
|
struct packing_data;
|
2018-11-10 06:49:03 +01:00
|
|
|
struct repository;
|
2018-09-19 02:14:30 +02:00
|
|
|
|
2018-08-16 08:13:07 +02:00
|
|
|
int island_delta_cmp(const struct object_id *a, const struct object_id *b);
|
|
|
|
int in_same_island(const struct object_id *, const struct object_id *);
|
2018-11-10 06:49:03 +01:00
|
|
|
void resolve_tree_islands(struct repository *r,
|
|
|
|
int progress,
|
|
|
|
struct packing_data *to_pack);
|
2019-06-20 10:58:32 +02:00
|
|
|
void load_delta_islands(struct repository *r, int progress);
|
2018-08-16 08:13:07 +02:00
|
|
|
void propagate_island_marks(struct commit *commit);
|
|
|
|
int compute_pack_layers(struct packing_data *to_pack);
|
|
|
|
|
|
|
|
#endif /* DELTA_ISLANDS_H */
|