Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rev-tree.c - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bbf6281f64ff1a3eac982e0c56f88d3a2c08f538 (plain)
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
#include "cache.h"

struct relationship {
	unsigned char sha1[20];
	unsigned char parent[20];
};

static struct relationship **rels;
static int nr_rels, rel_allocs;

static int find_relationship(unsigned char *sha1, unsigned char *parent)
{
	int first = 0, last = nr_rels;

	while (first < last) {
		int next = (first + last) / 2;
		struct relationship *rel = rels[next];
		int cmp;

		cmp = memcmp(sha1, rel->sha1, 20);
		if (!cmp) {
			cmp = memcmp(parent, rel->parent, 20);
			if (!cmp)
				return next;
		}
		if (cmp < 0) {
			last = next;
			continue;
		}
		first = next+1;
	}
	return -first-1;
}

static int add_relationship(unsigned char *sha1, unsigned char *parent)
{
	struct relationship *n;
	int pos;

	pos = find_relationship(sha1, parent);
	if (pos >= 0)
		return 0;
	pos = -pos-1;

	if (rel_allocs == nr_rels) {
		rel_allocs = alloc_nr(rel_allocs);
		rels = realloc(rels, rel_allocs * sizeof(struct relationship *));
	}
	n = malloc(sizeof(struct relationship));
	
	memmove(rels + pos + 1, rels + pos, (nr_rels - pos) * sizeof(struct relationship *));
	rels[pos] = n;
	nr_rels++;
	memcpy(n->sha1, sha1, 20);
	memcpy(n->parent, parent, 20);
	return 1;
}

static int already_seen(unsigned char *sha1)
{
	static char null_sha[20];
	int pos = find_relationship(sha1, null_sha);

	if (pos < 0) 
		pos = -pos-1;
	if (pos < nr_rels && !memcmp(sha1, rels[pos]->sha1, 20))
		return 1;
	return 0;
}

static int parse_commit(unsigned char *sha1)
{
	if (!already_seen(sha1)) {
		void *buffer;
		unsigned long size;
		char type[20];
		unsigned char parent[20];

		buffer = read_sha1_file(sha1, type, &size);
		if (!buffer || strcmp(type, "commit"))
			return -1;
		buffer += 46; /* "tree " + "hex sha1" + "\n" */
		while (!memcmp(buffer, "parent ", 7) && !get_sha1_hex(buffer+7, parent)) {
			add_relationship(sha1, parent);
			parse_commit(parent);
			buffer += 48;	/* "parent " + "hex sha1" + "\n" */
		}
	}
	return 0;	
}

static void read_cache_file(const char *path)
{
	FILE *file = fopen(path, "r");
	char line[100];

	while (fgets(line, sizeof(line), file)) {
		unsigned char sha1[20], parent[20];
		if (get_sha1_hex(line, sha1) || get_sha1_hex(line + 41, parent))
			usage("bad rev-tree cache file %s", path);
		add_relationship(sha1, parent);
	}
	fclose(file);
}

/*
 * Usage: rev-tree [--cache <cache-file>] <commit-id>
 *
 * The cache-file can be quite important for big trees. This is an
 * expensive operation if you have to walk the whole chain of
 * parents in a tree with a long revision history.
 */
int main(int argc, char **argv)
{
	int i;
	unsigned char sha1[20];

	while (argc > 2) {
		if (!strcmp(argv[1], "--cache")) {
			read_cache_file(argv[2]);
			argv += 2;
			argc -= 2;
			continue;
		}
		usage("unknown option %s", argv[1]);
	}

	if (argc != 2 || get_sha1_hex(argv[1], sha1))
		usage("rev-tree [--cache <cache-file>] <commit-id>");
	parse_commit(sha1);
	for (i = 0; i < nr_rels; i++) {
		char parent[60];
		struct relationship *rel = rels[i];
		strcpy(parent, sha1_to_hex(rel->parent));
		printf("%s %s\n", sha1_to_hex(rel->sha1), parent);
	}
	return 0;
}