Skip to content

Commit 96a1d8d

Browse files
pcloudsgitster
authored andcommitted
split-index: the writing part
prepare_to_write_split_index() does the major work, classifying deleted, updated and added entries. write_link_extension() then just writes it down. An observation is, deleting an entry, then adding it back is recorded as "entry X is deleted, entry X is added", not "entry X is replaced". This is simpler, with small overhead: a replaced entry is stored without its path, a new entry is store with its path. A note about unpack_trees() and the deduplication code inside prepare_to_write_split_index(). Usually tracking updated/removed entries via read-cache API is enough. unpack_trees() manipulates the index in a different way: it throws the entire source index out, builds up a new one, copying/duplicating entries (using dup_entry) from the source index over if necessary, then returns the new index. A naive solution would be marking the entire source index "deleted" and add their duplicates as new. That could bring $GIT_DIR/index back to the original size. So we try harder and memcmp() between the original and the duplicate to see if it needs updating. We could avoid memcmp() too, by avoiding duplicating the original entry in dup_entry(). The performance gain this way is within noise level and it complicates unpack-trees.c. So memcmp() is the preferred way to deal with deduplication. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 078a58e commit 96a1d8d

2 files changed

Lines changed: 103 additions & 2 deletions

File tree

split-index.c

Lines changed: 99 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include "cache.h"
22
#include "split-index.h"
3+
#include "ewah/ewok.h"
34

45
struct split_index *init_split_index(struct index_state *istate)
56
{
@@ -26,11 +27,22 @@ int read_link_extension(struct index_state *istate,
2627
return 0;
2728
}
2829

30+
static int write_strbuf(void *user_data, const void *data, size_t len)
31+
{
32+
struct strbuf *sb = user_data;
33+
strbuf_add(sb, data, len);
34+
return len;
35+
}
36+
2937
int write_link_extension(struct strbuf *sb,
3038
struct index_state *istate)
3139
{
3240
struct split_index *si = istate->split_index;
3341
strbuf_add(sb, si->base_sha1, 20);
42+
if (!si->delete_bitmap && !si->replace_bitmap)
43+
return 0;
44+
ewah_serialize_to(si->delete_bitmap, write_strbuf, sb);
45+
ewah_serialize_to(si->replace_bitmap, write_strbuf, sb);
3446
return 0;
3547
}
3648

@@ -62,14 +74,99 @@ void merge_base_index(struct index_state *istate)
6274
void prepare_to_write_split_index(struct index_state *istate)
6375
{
6476
struct split_index *si = init_split_index(istate);
65-
/* take cache[] out temporarily */
77+
struct cache_entry **entries = NULL, *ce;
78+
int i, nr_entries = 0, nr_alloc = 0;
79+
80+
si->delete_bitmap = ewah_new();
81+
si->replace_bitmap = ewah_new();
82+
83+
if (si->base) {
84+
/* Go through istate->cache[] and mark CE_MATCHED to
85+
* entry with positive index. We'll go through
86+
* base->cache[] later to delete all entries in base
87+
* that are not marked eith either CE_MATCHED or
88+
* CE_UPDATE_IN_BASE. If istate->cache[i] is a
89+
* duplicate, deduplicate it.
90+
*/
91+
for (i = 0; i < istate->cache_nr; i++) {
92+
struct cache_entry *base;
93+
/* namelen is checked separately */
94+
const unsigned int ondisk_flags =
95+
CE_STAGEMASK | CE_VALID | CE_EXTENDED_FLAGS;
96+
unsigned int ce_flags, base_flags, ret;
97+
ce = istate->cache[i];
98+
if (!ce->index)
99+
continue;
100+
if (ce->index > si->base->cache_nr) {
101+
ce->index = 0;
102+
continue;
103+
}
104+
ce->ce_flags |= CE_MATCHED; /* or "shared" */
105+
base = si->base->cache[ce->index - 1];
106+
if (ce == base)
107+
continue;
108+
if (ce->ce_namelen != base->ce_namelen ||
109+
strcmp(ce->name, base->name)) {
110+
ce->index = 0;
111+
continue;
112+
}
113+
ce_flags = ce->ce_flags;
114+
base_flags = base->ce_flags;
115+
/* only on-disk flags matter */
116+
ce->ce_flags &= ondisk_flags;
117+
base->ce_flags &= ondisk_flags;
118+
ret = memcmp(&ce->ce_stat_data, &base->ce_stat_data,
119+
offsetof(struct cache_entry, name) -
120+
offsetof(struct cache_entry, ce_stat_data));
121+
ce->ce_flags = ce_flags;
122+
base->ce_flags = base_flags;
123+
if (ret)
124+
ce->ce_flags |= CE_UPDATE_IN_BASE;
125+
free(base);
126+
si->base->cache[ce->index - 1] = ce;
127+
}
128+
for (i = 0; i < si->base->cache_nr; i++) {
129+
ce = si->base->cache[i];
130+
if ((ce->ce_flags & CE_REMOVE) ||
131+
!(ce->ce_flags & CE_MATCHED))
132+
ewah_set(si->delete_bitmap, i);
133+
else if (ce->ce_flags & CE_UPDATE_IN_BASE) {
134+
ewah_set(si->replace_bitmap, i);
135+
ALLOC_GROW(entries, nr_entries+1, nr_alloc);
136+
entries[nr_entries++] = ce;
137+
}
138+
}
139+
}
140+
141+
for (i = 0; i < istate->cache_nr; i++) {
142+
ce = istate->cache[i];
143+
if ((!si->base || !ce->index) && !(ce->ce_flags & CE_REMOVE)) {
144+
ALLOC_GROW(entries, nr_entries+1, nr_alloc);
145+
entries[nr_entries++] = ce;
146+
}
147+
ce->ce_flags &= ~CE_MATCHED;
148+
}
149+
150+
/*
151+
* take cache[] out temporarily, put entries[] in its place
152+
* for writing
153+
*/
154+
si->saved_cache = istate->cache;
66155
si->saved_cache_nr = istate->cache_nr;
67-
istate->cache_nr = 0;
156+
istate->cache = entries;
157+
istate->cache_nr = nr_entries;
68158
}
69159

70160
void finish_writing_split_index(struct index_state *istate)
71161
{
72162
struct split_index *si = init_split_index(istate);
163+
164+
ewah_free(si->delete_bitmap);
165+
ewah_free(si->replace_bitmap);
166+
si->delete_bitmap = NULL;
167+
si->replace_bitmap = NULL;
168+
free(istate->cache);
169+
istate->cache = si->saved_cache;
73170
istate->cache_nr = si->saved_cache_nr;
74171
}
75172

split-index.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33

44
struct index_state;
55
struct strbuf;
6+
struct ewah_bitmap;
67

78
struct split_index {
89
unsigned char base_sha1[20];
910
struct index_state *base;
11+
struct ewah_bitmap *delete_bitmap;
12+
struct ewah_bitmap *replace_bitmap;
13+
struct cache_entry **saved_cache;
1014
unsigned int saved_cache_nr;
1115
int refcount;
1216
};

0 commit comments

Comments
 (0)