forked from jonas/tig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrefdb.c
509 lines (408 loc) · 11.2 KB
/
refdb.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
/* Copyright (c) 2006-2015 Jonas Fonseca <jonas.fonseca@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include "tig/tig.h"
#include "tig/map.h"
#include "tig/argv.h"
#include "tig/io.h"
#include "tig/watch.h"
#include "tig/options.h"
#include "tig/repo.h"
#include "tig/refdb.h"
static struct ref *refs_head = NULL;
static bool refs_tags;
DEFINE_STRING_MAP(refs_by_name, struct ref *, name, 32)
DEFINE_STRING_MAP(refs_by_id, struct ref *, id, 16)
int
ref_compare(const struct ref *ref1, const struct ref *ref2)
{
if (ref1->type != ref2->type)
return ref1->type - ref2->type;
return strcmp_numeric(ref1->name, ref2->name);
}
static int
ref_canonical_compare(const struct ref *ref1, const struct ref *ref2)
{
int tag_diff = !!ref_is_tag(ref2) - !!ref_is_tag(ref1);
if (tag_diff)
return tag_diff;
if (ref1->type != ref2->type)
return !tag_diff ? ref1->type - ref2->type : ref2->type - ref1->type;
return strcmp_numeric(ref1->name, ref2->name);
}
struct ref_visitor_data {
ref_visitor_fn visitor;
void *data;
};
static bool
foreach_ref_visitor(void *data, void *value)
{
struct ref_visitor_data *visitor_data = data;
const struct ref *ref = value;
if (!ref->valid)
return true;
return visitor_data->visitor(visitor_data->data, ref);
}
void
foreach_ref(ref_visitor_fn visitor, void *data)
{
struct ref_visitor_data visitor_data = { visitor, data };
string_map_foreach(&refs_by_name, foreach_ref_visitor, &visitor_data);
}
const struct ref *
get_ref_head()
{
return refs_head;
}
const struct ref *
get_ref_list(const char *id)
{
return string_map_get(&refs_by_id, id);
}
const struct ref *
get_canonical_ref(const char *id)
{
const struct ref *ref = NULL;
const struct ref *pos;
foreach_ref_list(pos, id)
if (!ref || ref_canonical_compare(pos, ref) < 0)
ref = pos;
return ref;
}
bool
ref_list_contains_tag(const char *id)
{
const struct ref *ref;
foreach_ref_list(ref, id)
if (ref_is_tag(ref))
return true;
return false;
}
struct ref_opt {
const char *remote;
const char *head;
enum watch_trigger changed;
};
static enum status_code
add_ref_to_id_map(struct ref *ref)
{
void **ref_lists_slot = string_map_put_to(&refs_by_id, ref->id);
if (!ref_lists_slot)
return SUCCESS;
/* First remove the ref from the ID list, to ensure that it is
* reinserted at the right position if the type changes. */
{
struct ref *list, *prev;
for (list = *ref_lists_slot, prev = NULL; list; prev = list, list = list->next)
if (list == ref) {
if (!prev)
*ref_lists_slot = ref->next;
else
prev->next = ref->next;
}
ref->next = NULL;
}
if (*ref_lists_slot == NULL || ref_compare(ref, *ref_lists_slot) <= 0) {
ref->next = *ref_lists_slot;
*ref_lists_slot = ref;
} else {
struct ref *list;
for (list = *ref_lists_slot; list->next; list = list->next) {
if (ref_compare(ref, list->next) <= 0)
break;
}
ref->next = list->next;
list->next = ref;
}
return SUCCESS;
}
static void
remove_ref_from_id_map(struct ref *ref)
{
void **ref_slot = string_map_get_at(&refs_by_id, ref->id);
struct ref *list = ref_slot ? *ref_slot : NULL;
struct ref *prev = NULL;
for (; list; prev = list, list = list->next) {
if (list != ref)
continue;
if (!prev)
*ref_slot = ref->next;
else
prev->next = ref->next;
ref->next = NULL;
break;
}
if (ref_slot && !*ref_slot)
string_map_remove(&refs_by_id, ref->id);
}
static enum status_code
add_to_refs(const char *id, size_t idlen, char *name, size_t namelen, struct ref_opt *opt)
{
struct ref *ref = NULL;
enum reference_type type = REFERENCE_BRANCH;
void **ref_slot = NULL;
if (!prefixcmp(name, "refs/tags/")) {
type = REFERENCE_TAG;
if (!suffixcmp(name, namelen, "^{}")) {
namelen -= 3;
name[namelen] = 0;
} else {
type = REFERENCE_LOCAL_TAG;
}
namelen -= STRING_SIZE("refs/tags/");
name += STRING_SIZE("refs/tags/");
} else if (!prefixcmp(name, "refs/remotes/")) {
type = REFERENCE_REMOTE;
namelen -= STRING_SIZE("refs/remotes/");
name += STRING_SIZE("refs/remotes/");
if (!strcmp(opt->remote, name))
type = REFERENCE_TRACKED_REMOTE;
} else if (!prefixcmp(name, "refs/replace/")) {
type = REFERENCE_REPLACE;
id = name + strlen("refs/replace/");
idlen = namelen - strlen("refs/replace/");
name = "replaced";
namelen = strlen(name);
} else if (!prefixcmp(name, "refs/heads/")) {
namelen -= STRING_SIZE("refs/heads/");
name += STRING_SIZE("refs/heads/");
if (strlen(opt->head) == namelen &&
!strncmp(opt->head, name, namelen))
type = REFERENCE_HEAD;
} else if (!strcmp(name, "HEAD")) {
/* Handle the case of HEAD not being a symbolic ref,
* i.e. during a rebase. */
if (*opt->head)
return SUCCESS;
type = REFERENCE_HEAD;
}
/* If we are reloading or it's an annotated tag, replace the
* previous SHA1 with the resolved commit id; relies on the fact
* git-ls-remote lists the commit id of an annotated tag right
* before the commit id it points to. */
if (type == REFERENCE_REPLACE) {
ref = string_map_remove(&refs_by_id, id);
} else {
ref_slot = string_map_put_to(&refs_by_name, name);
if (!ref_slot)
return ERROR_OUT_OF_MEMORY;
ref = *ref_slot;
}
if (!ref) {
ref = calloc(1, sizeof(*ref) + namelen);
if (!ref)
return ERROR_OUT_OF_MEMORY;
strncpy(ref->name, name, namelen);
if (ref_slot)
*ref_slot = ref;
}
if (strncmp(ref->id, id, idlen) || ref->type != type) {
opt->changed |= WATCH_REFS;
if (*ref->id)
remove_ref_from_id_map(ref);
}
ref->valid = true;
ref->type = type;
string_ncopy_do(ref->id, SIZEOF_REV, id, idlen);
if (type == REFERENCE_HEAD) {
if (!refs_head ||
(refs_head != ref && memcmp(refs_head, ref, sizeof(*ref))))
opt->changed |= WATCH_HEAD;
refs_head = ref;
}
if (type == REFERENCE_TAG)
refs_tags++;
return add_ref_to_id_map(ref);
}
static enum status_code
read_ref(char *id, size_t idlen, char *name, size_t namelen, void *data)
{
return add_to_refs(id, idlen, name, namelen, data);
}
static bool
invalidate_refs(void *data, void *ref_)
{
struct ref *ref = ref_;
ref->valid = 0;
ref->next = NULL;
return true;
}
static bool
cleanup_refs(void *data, void *ref_)
{
struct ref_opt *opt = data;
struct ref *ref = ref_;
if (!ref->valid) {
ref->id[0] = 0;
opt->changed |= WATCH_REFS;
}
return true;
}
static enum status_code
reload_refs(bool force)
{
const char *ls_remote_argv[SIZEOF_ARG] = {
"git", "ls-remote", repo.git_dir, NULL
};
static bool init = false;
struct ref_opt opt = { repo.remote, repo.head, WATCH_NONE };
struct repo_info old_repo = repo;
enum status_code code;
if (!init) {
if (!argv_from_env(ls_remote_argv, "TIG_LS_REMOTE"))
return ERROR_OUT_OF_MEMORY;
init = true;
}
if (!*repo.git_dir)
return SUCCESS;
if (force || !*repo.head)
load_repo_head();
if (strcmp(old_repo.head, repo.head))
opt.changed |= WATCH_HEAD;
refs_head = NULL;
refs_tags = 0;
string_map_clear(&refs_by_id);
string_map_foreach(&refs_by_name, invalidate_refs, NULL);
code = io_run_load(ls_remote_argv, "\t", read_ref, &opt);
if (code != SUCCESS)
return code;
string_map_foreach(&refs_by_name, cleanup_refs, &opt);
if (opt.changed)
watch_apply(NULL, opt.changed);
return SUCCESS;
}
enum status_code
load_refs(bool force)
{
static bool loaded = false;
if (!force && loaded)
return SUCCESS;
loaded = true;
return reload_refs(force);
}
enum status_code
add_ref(const char *id, char *name, const char *remote_name, const char *head)
{
struct ref_opt opt = { remote_name, head };
return add_to_refs(id, strlen(id), name, strlen(name), &opt);
}
void
ref_update_env(struct argv_env *env, const struct ref *ref, bool recurse)
{
bool clear = recurse ? !ref->next : true;
if (recurse && ref->next)
ref_update_env(env, ref->next, true);
if (clear)
env->tag[0] = env->remote[0] = env->branch[0] = 0;
string_copy_rev(env->commit, ref->id);
if (ref_is_tag(ref)) {
string_ncopy(env->tag, ref->name, strlen(ref->name));
} else if (ref_is_remote(ref)) {
const char *sep = strchr(ref->name, '/');
if (!sep)
return;
string_ncopy(env->remote, ref->name, sep - ref->name);
string_ncopy(env->branch, sep + 1, strlen(sep + 1));
} else if (ref->type == REFERENCE_BRANCH || ref->type == REFERENCE_HEAD) {
string_ncopy(env->branch, ref->name, strlen(ref->name));
}
}
bool
refs_contain_tag(void)
{
return refs_tags > 0;
}
const struct ref_format *
get_ref_format(struct ref_format **ref_formats, const struct ref *ref)
{
static const struct ref_format default_format = { "", "" };
if (ref_formats) {
struct ref_format *format = ref_formats[ref->type];
if (!format && ref_is_tag(ref))
format = ref_formats[REFERENCE_TAG];
if (!format && ref_is_remote(ref))
format = ref_formats[REFERENCE_REMOTE];
if (!format)
format = ref_formats[REFERENCE_BRANCH];
if (format)
return format;
}
return &default_format;
}
static enum status_code
parse_ref_format_arg(struct ref_format **ref_formats, const char *arg, const struct enum_map *map)
{
size_t arglen = strlen(arg);
const char *pos;
for (pos = arg; *pos && arglen > 0; pos++, arglen--) {
enum reference_type type;
for (type = 0; type < map->size; type++) {
const struct enum_map_entry *entry = &map->entries[type];
struct ref_format *format;
if (arglen < entry->namelen ||
string_enum_compare(pos, entry->name, entry->namelen))
continue;
format = malloc(sizeof(*format));
if (!format)
return ERROR_OUT_OF_MEMORY;
format->start = strndup(arg, pos - arg);
format->end = strdup(pos + entry->namelen);
if (!format->start || !format->end) {
free((void *) format->start);
free((void *) format->end);
free(format);
return ERROR_OUT_OF_MEMORY;
}
ref_formats[type] = format;
return SUCCESS;
}
}
return error("Unknown ref format: %s", arg);
}
enum status_code
parse_ref_formats(struct ref_format ***formats, const char *argv[])
{
const struct enum_map *map = reference_type_map;
int argc;
if (!*formats) {
*formats = calloc(reference_type_map->size, sizeof(struct ref_format *));
if (!*formats)
return ERROR_OUT_OF_MEMORY;
}
for (argc = 0; argv[argc]; argc++) {
enum status_code code = parse_ref_format_arg(*formats, argv[argc], map);
if (code != SUCCESS)
return code;
}
return SUCCESS;
}
enum status_code
format_ref_formats(struct ref_format **formats, char buf[], size_t bufsize)
{
const struct enum_map *map = reference_type_map;
char name[SIZEOF_STR];
enum reference_type type;
size_t bufpos = 0;
const char *sep = "";
for (type = 0; type < map->size; type++) {
struct ref_format *format = formats[type];
if (!format)
continue;
if (!enum_name_copy(name, sizeof(name), map->entries[type].name)
|| !string_nformat(buf, bufsize, &bufpos, "%s%s%s%s",
sep, format->start, name, format->end))
return error("No space left in buffer");
sep = " ";
}
return SUCCESS;
}
/* vim: set ts=8 sw=8 noexpandtab: */