-
Notifications
You must be signed in to change notification settings - Fork 8
/
cvsutil.c
335 lines (297 loc) · 6.59 KB
/
cvsutil.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
/*
* Copyright © 2006 Keith Packard <keithp@keithp.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.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
#include "cvs.h"
#include <assert.h>
#define min(a,b) ((a) < (b) ? (a) : (b))
#define max(a,b) ((a) > (b) ? (a) : (b))
int
cvs_is_head (cvs_number *n)
/* is a specified CVS revision a branch head? */
{
assert (n->c <= CVS_MAX_DEPTH);
return (n->c > 2 && (n->c & 1) == 0 && n->n[n->c-2] == 0);
}
int
cvs_same_branch (cvs_number *a, cvs_number *b)
/* are two specified CVS revisions on the same branch? */
{
cvs_number t;
int i;
int n;
int an, bn;
if (a->c & 1) {
t = *a;
t.n[t.c++] = 0;
return cvs_same_branch (&t, b);
}
if (b->c & 1) {
t = *b;
t.n[t.c++] = 0;
return cvs_same_branch (a, &t);
}
if (a->c != b->c)
return 0;
/*
* Everything on x.y is trunk
*/
if (a->c == 2)
return 1;
n = a->c;
for (i = 0; i < n - 1; i++) {
an = a->n[i];
bn = b->n[i];
/*
* deal with n.m.0.p branch numbering
*/
if (i == n - 2) {
if (an == 0) an = a->n[i+1];
if (bn == 0) bn = b->n[i+1];
}
if (an != bn)
return 0;
}
return 1;
}
int
cvs_number_compare (cvs_number *a, cvs_number *b)
/* total ordering for CVS revision numbers */
{
int n = min (a->c, b->c);
int i;
for (i = 0; i < n; i++) {
if (a->n[i] < b->n[i])
return -1;
if (a->n[i] > b->n[i])
return 1;
}
if (a->c < b->c)
return -1;
if (a->c > b->c)
return 1;
return 0;
}
int
cvs_number_compare_n (cvs_number *a, cvs_number *b, int l)
/* total ordering for CVS revision number prefixes */
{
int n = min (l, min (a->c, b->c));
int i;
for (i = 0; i < n; i++) {
if (a->n[i] < b->n[i])
return -1;
if (a->n[i] > b->n[i])
return 1;
}
if (l > a->c)
return -1;
if (l > b->c)
return 1;
return 0;
}
int
cvs_is_branch_of (cvs_number *trunk, cvs_number *branch)
/* is the specified branch rooted at the specified trunk revision */
{
cvs_number n;
if (branch->c > 2) {
n = *branch;
n.c -= 2;
return cvs_same_branch (trunk, &n);
}
return 0;
}
int
cvs_number_degree (cvs_number *n)
/* what is the degree of branchiness of the specified revision? */
{
cvs_number four;
if (n->c < 4)
return n->c;
four = *n;
four.c = 4;
/*
* Place vendor branch between trunk and other branches
*/
if (cvs_is_vendor (&four))
return n->c - 1;
return n->c;
}
cvs_number
cvs_previous_rev (cvs_number *n)
/* return the revision previous to a specified one */
{
cvs_number p;
int i;
p.c = n->c;
for (i = 0; i < n->c - 1; i++)
p.n[i] = n->n[i];
if (n->n[i] == 1) {
p.c = 0;
return p;
}
p.n[i] = n->n[i] - 1;
return p;
}
cvs_number
cvs_master_rev (cvs_number *n)
/* what is the master branch revision from which the specified one derives? */
{
cvs_number p;
p = *n;
p.c -= 2;
return p;
}
cvs_number
cvs_branch_head (cvs_file *f, cvs_number *branch)
/* find the newest revision along a specified branch */
{
cvs_number n;
cvs_version *v;
n = *branch;
/* Check for magic branch format */
if ((n.c & 1) == 0 && n.n[n.c-2] == 0) {
n.n[n.c-2] = n.n[n.c-1];
n.c--;
}
for (v = f->versions; v; v = v->next) {
if (cvs_same_branch (&n, &v->number) &&
cvs_number_compare (&n, &v->number) > 0)
n = v->number;
}
return n;
}
cvs_number
cvs_branch_parent (cvs_file *f, cvs_number *branch)
/* return the parent branch of a specified branch */
{
cvs_number n;
cvs_version *v;
n = *branch;
n.n[n.c-1] = 0;
for (v = f->versions; v; v = v->next) {
if (cvs_same_branch (&n, &v->number) &&
cvs_number_compare (branch, &v->number) < 0 &&
cvs_number_compare (&n, &v->number) >= 0)
n = v->number;
}
return n;
}
Node *
cvs_find_version (cvs_file *cvs, cvs_number *number)
/* find the file version associated with the specified CVS release number */
{
cvs_version *cv;
cvs_version *nv = NULL;
for (cv = cvs->versions; cv; cv = cv->next) {
if (cvs_same_branch (number, &cv->number) &&
cvs_number_compare (&cv->number, number) > 0 &&
(!nv || cvs_number_compare (&nv->number, &cv->number) > 0))
nv = cv;
}
return nv ? nv->node : NULL;
}
int
cvs_is_trunk (cvs_number *number)
/* does the specified CVS release number describe a trunk revision? */
{
return number->c == 2;
}
/*
* Import branches are of the form 1.1.x where x is odd
*/
int
cvs_is_vendor (cvs_number *number)
/* is the specified CVS release number on a vendor branch? */
{
if (number->c != 4) return 0;
if (number->n[0] != 1)
return 0;
if (number->n[1] != 1)
return 0;
if ((number->n[2] & 1) != 1)
return 0;
return 1;
}
static void
cvs_symbol_free (cvs_symbol *symbol)
/* discard a symbol and its storage */
{
cvs_symbol *s;
while ((s = symbol)) {
symbol = s->next;
free (s);
}
}
static void
cvs_branch_free (cvs_branch *branch)
/* discard a branch and its storage */
{
cvs_branch *b;
while ((b = branch)) {
branch = b->next;
free (b);
}
}
static void
cvs_version_free (cvs_version *version)
/* discard a version and its storage */
{
cvs_version *v;
while ((v = version)) {
version = v->next;
cvs_branch_free (v->branches);
free (v);
}
}
static void
cvs_patch_free (cvs_patch *patch)
/* discard a patch and its storage */
{
cvs_patch *v;
while ((v = patch)) {
patch = v->next;
free (v->text);
free (v);
}
}
void
cvs_file_free (cvs_file *cvs)
/* discard a file object and its storage */
{
cvs_symbol_free (cvs->symbols);
cvs_version_free (cvs->versions);
cvs_patch_free (cvs->patches);
free (cvs);
clean_hash();
}
char *
cvs_number_string (cvs_number *n, char *str)
/* return the human-readable representation of a CVS release number */
{
char r[11];
int i;
str[0] = '\0';
for (i = 0; i < n->c; i++) {
snprintf (r, 10, "%d", n->n[i]);
if (i > 0)
strcat (str, ".");
strcat (str, r);
}
return str;
}
/* end */