1#include "cache.h"
2#include "string-list.h"
34
/*
5* versioncmp(): copied from string/strverscmp.c in glibc commit
6* ee9247c38a8def24a59eb5cfb7196a98bef8cfdc, reformatted to Git coding
7* style. The implementation is under LGPL-2.1 and Git relicenses it
8* to GPLv2.
9*/
1011
/*
12* states: S_N: normal, S_I: comparing integral part, S_F: comparing
13* fractionnal parts, S_Z: idem but with leading Zeroes only
14*/
15#define S_N 0x0
16#define S_I 0x3
17#define S_F 0x6
18#define S_Z 0x9
1920
/* result_type: CMP: return diff; LEN: compare using len_diff/diff */
21#define CMP 2
22#define LEN 3
2324
static const struct string_list *prereleases;
25static int initialized;
2627
/*
28* off is the offset of the first different character in the two strings
29* s1 and s2. If either s1 or s2 contains a prerelease suffix containing
30* that offset or a suffix ends right before that offset, then that
31* string will be forced to be on top.
32*
33* If both s1 and s2 contain a (different) suffix around that position,
34* their order is determined by the order of those two suffixes in the
35* configuration.
36* If any of the strings contains more than one different suffixes around
37* that position, then that string is sorted according to the contained
38* suffix which starts at the earliest offset in that string.
39* If more than one different contained suffixes start at that earliest
40* offset, then that string is sorted according to the longest of those
41* suffixes.
42*
43* Return non-zero if *diff contains the return value for versioncmp()
44*/
45static int swap_prereleases(const char *s1,
46const char *s2,
47int off,
48int *diff)
49{
50int i, i1 = -1, i2 = -1;
51int start_at1 = off, start_at2 = off, match_len1 = -1, match_len2 = -1;
5253
for (i = 0; i < prereleases->nr; i++) {
54const char *suffix = prereleases->items[i].string;
55int j, start, end, suffix_len = strlen(suffix);
56if (suffix_len < off)
57start = off - suffix_len;
58else
59start = 0;
60end = match_len1 < suffix_len ? start_at1 : start_at1-1;
61for (j = start; j <= end; j++)
62if (starts_with(s1 + j, suffix)) {
63i1 = i;
64start_at1 = j;
65match_len1 = suffix_len;
66break;
67}
68end = match_len2 < suffix_len ? start_at2 : start_at2-1;
69for (j = start; j <= end; j++)
70if (starts_with(s2 + j, suffix)) {
71i2 = i;
72start_at2 = j;
73match_len2 = suffix_len;
74break;
75}
76}
77if (i1 == -1 && i2 == -1)
78return 0;
79if (i1 == i2)
80/* Found the same suffix in both, e.g. "-rc" in "v1.0-rcX"
81* and "v1.0-rcY": the caller should decide based on "X"
82* and "Y". */
83return 0;
8485
if (i1 >= 0 && i2 >= 0)
86*diff = i1 - i2;
87else if (i1 >= 0)
88*diff = -1;
89else /* if (i2 >= 0) */
90*diff = 1;
91return 1;
92}
9394
/*
95* Compare S1 and S2 as strings holding indices/version numbers,
96* returning less than, equal to or greater than zero if S1 is less
97* than, equal to or greater than S2 (for more info, see the texinfo
98* doc).
99*/
100101
int versioncmp(const char *s1, const char *s2)
102{
103const unsigned char *p1 = (const unsigned char *) s1;
104const unsigned char *p2 = (const unsigned char *) s2;
105unsigned char c1, c2;
106int state, diff;
107108
/*
109* Symbol(s) 0 [1-9] others
110* Transition (10) 0 (01) d (00) x
111*/
112static const uint8_t next_state[] = {
113/* state x d 0 */
114/* S_N */ S_N, S_I, S_Z,
115/* S_I */ S_N, S_I, S_I,
116/* S_F */ S_N, S_F, S_F,
117/* S_Z */ S_N, S_F, S_Z
118};
119120
static const int8_t result_type[] = {
121/* state x/x x/d x/0 d/x d/d d/0 0/x 0/d 0/0 */
122123
/* S_N */ CMP, CMP, CMP, CMP, LEN, CMP, CMP, CMP, CMP,
124/* S_I */ CMP, -1, -1, +1, LEN, LEN, +1, LEN, LEN,
125/* S_F */ CMP, CMP, CMP, CMP, CMP, CMP, CMP, CMP, CMP,
126/* S_Z */ CMP, +1, +1, -1, CMP, CMP, -1, CMP, CMP
127};
128129
if (p1 == p2)
130return 0;
131132
c1 = *p1++;
133c2 = *p2++;
134/* Hint: '0' is a digit too. */
135state = S_N + ((c1 == '0') + (isdigit (c1) != 0));
136137
while ((diff = c1 - c2) == 0) {
138if (c1 == '\0')
139return diff;
140141
state = next_state[state];
142c1 = *p1++;
143c2 = *p2++;
144state += (c1 == '0') + (isdigit (c1) != 0);
145}
146147
if (!initialized) {
148initialized = 1;
149prereleases = git_config_get_value_multi("versionsort.prereleasesuffix");
150}
151if (prereleases && swap_prereleases(s1, s2, (const char *) p1 - s1 - 1,
152&diff))
153return diff;
154155
state = result_type[state * 3 + (((c2 == '0') + (isdigit (c2) != 0)))];
156157
switch (state) {
158case CMP:
159return diff;
160161
case LEN:
162while (isdigit (*p1++))
163if (!isdigit (*p2++))
164return 1;
165166
return isdigit (*p2) ? -1 : diff;
167168
default:
169return state;
170}
171}