Merge remote-tracking branch 'donkult/debian/sid' into debian/sid
[ntk/apt.git] / apt-pkg / deb / debversion.cc
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 // $Id: debversion.cc,v 1.8 2003/09/10 23:39:49 mdz Exp $
4 /* ######################################################################
5
6 Debian Version - Versioning system for Debian
7
8 This implements the standard Debian versioning system.
9
10 ##################################################################### */
11 /*}}}*/
12 // Include Files /*{{{*/
13 #include <config.h>
14
15 #include <apt-pkg/debversion.h>
16 #include <apt-pkg/pkgcache.h>
17
18 #include <stdlib.h>
19 #include <ctype.h>
20 /*}}}*/
21
22 debVersioningSystem debVS;
23
24 // debVS::debVersioningSystem - Constructor /*{{{*/
25 // ---------------------------------------------------------------------
26 /* */
27 debVersioningSystem::debVersioningSystem()
28 {
29 Label = "Standard .deb";
30 }
31 /*}}}*/
32
33 // debVS::CmpFragment - Compare versions /*{{{*/
34 // ---------------------------------------------------------------------
35 /* This compares a fragment of the version. This is a slightly adapted
36 version of what dpkg uses. */
37 #define order(x) ((x) == '~' ? -1 \
38 : isdigit((x)) ? 0 \
39 : !(x) ? 0 \
40 : isalpha((x)) ? (x) \
41 : (x) + 256)
42 int debVersioningSystem::CmpFragment(const char *A,const char *AEnd,
43 const char *B,const char *BEnd)
44 {
45 if (A >= AEnd && B >= BEnd)
46 return 0;
47 if (A >= AEnd)
48 {
49 if (*B == '~') return 1;
50 return -1;
51 }
52 if (B >= BEnd)
53 {
54 if (*A == '~') return -1;
55 return 1;
56 }
57
58 /* Iterate over the whole string
59 What this does is to split the whole string into groups of
60 numeric and non numeric portions. For instance:
61 a67bhgs89
62 Has 4 portions 'a', '67', 'bhgs', '89'. A more normal:
63 2.7.2-linux-1
64 Has '2', '.', '7', '.' ,'-linux-','1' */
65 const char *lhs = A;
66 const char *rhs = B;
67 while (lhs != AEnd && rhs != BEnd)
68 {
69 int first_diff = 0;
70
71 while (lhs != AEnd && rhs != BEnd &&
72 (!isdigit(*lhs) || !isdigit(*rhs)))
73 {
74 int vc = order(*lhs);
75 int rc = order(*rhs);
76 if (vc != rc)
77 return vc - rc;
78 lhs++; rhs++;
79 }
80
81 while (*lhs == '0')
82 lhs++;
83 while (*rhs == '0')
84 rhs++;
85 while (isdigit(*lhs) && isdigit(*rhs))
86 {
87 if (!first_diff)
88 first_diff = *lhs - *rhs;
89 lhs++;
90 rhs++;
91 }
92
93 if (isdigit(*lhs))
94 return 1;
95 if (isdigit(*rhs))
96 return -1;
97 if (first_diff)
98 return first_diff;
99 }
100
101 // The strings must be equal
102 if (lhs == AEnd && rhs == BEnd)
103 return 0;
104
105 // lhs is shorter
106 if (lhs == AEnd)
107 {
108 if (*rhs == '~') return 1;
109 return -1;
110 }
111
112 // rhs is shorter
113 if (rhs == BEnd)
114 {
115 if (*lhs == '~') return -1;
116 return 1;
117 }
118
119 // Shouldnt happen
120 return 1;
121 }
122 /*}}}*/
123 // debVS::CmpVersion - Comparison for versions /*{{{*/
124 // ---------------------------------------------------------------------
125 /* This fragments the version into E:V-R triples and compares each
126 portion separately. */
127 int debVersioningSystem::DoCmpVersion(const char *A,const char *AEnd,
128 const char *B,const char *BEnd)
129 {
130 // Strip off the epoch and compare it
131 const char *lhs = (const char*) memchr(A, ':', AEnd - A);
132 const char *rhs = (const char*) memchr(B, ':', BEnd - B);
133 if (lhs == NULL)
134 lhs = A;
135 if (rhs == NULL)
136 rhs = B;
137
138 // Special case: a zero epoch is the same as no epoch,
139 // so remove it.
140 if (lhs != A)
141 {
142 for (; *A == '0'; ++A);
143 if (A == lhs)
144 {
145 ++A;
146 ++lhs;
147 }
148 }
149 if (rhs != B)
150 {
151 for (; *B == '0'; ++B);
152 if (B == rhs)
153 {
154 ++B;
155 ++rhs;
156 }
157 }
158
159 // Compare the epoch
160 int Res = CmpFragment(A,lhs,B,rhs);
161 if (Res != 0)
162 return Res;
163
164 // Skip the :
165 if (lhs != A)
166 lhs++;
167 if (rhs != B)
168 rhs++;
169
170 // Find the last -
171 const char *dlhs = (const char*) memrchr(lhs, '-', AEnd - lhs);
172 const char *drhs = (const char*) memrchr(rhs, '-', BEnd - rhs);
173 if (dlhs == NULL)
174 dlhs = AEnd;
175 if (drhs == NULL)
176 drhs = BEnd;
177
178 // Compare the main version
179 Res = CmpFragment(lhs,dlhs,rhs,drhs);
180 if (Res != 0)
181 return Res;
182
183 // Skip the -
184 if (dlhs != lhs)
185 dlhs++;
186 if (drhs != rhs)
187 drhs++;
188
189 // no debian revision need to be treated like -0
190 if (*(dlhs-1) == '-' && *(drhs-1) == '-')
191 return CmpFragment(dlhs,AEnd,drhs,BEnd);
192 else if (*(dlhs-1) == '-')
193 {
194 const char* null = "0";
195 return CmpFragment(dlhs,AEnd,null, null+1);
196 }
197 else if (*(drhs-1) == '-')
198 {
199 const char* null = "0";
200 return CmpFragment(null, null+1, drhs, BEnd);
201 }
202 else
203 return 0;
204 }
205 /*}}}*/
206 // debVS::CheckDep - Check a single dependency /*{{{*/
207 // ---------------------------------------------------------------------
208 /* This simply preforms the version comparison and switch based on
209 operator. If DepVer is 0 then we are comparing against a provides
210 with no version. */
211 bool debVersioningSystem::CheckDep(const char *PkgVer,
212 int Op,const char *DepVer)
213 {
214 if (DepVer == 0 || DepVer[0] == 0)
215 return true;
216 if (PkgVer == 0 || PkgVer[0] == 0)
217 return false;
218 Op &= 0x0F;
219
220 // fast track for (equal) strings [by location] which are by definition equal versions
221 if (PkgVer == DepVer)
222 return Op == pkgCache::Dep::Equals || Op == pkgCache::Dep::LessEq || Op == pkgCache::Dep::GreaterEq;
223
224 // Perform the actual comparision.
225 int const Res = CmpVersion(PkgVer, DepVer);
226 switch (Op)
227 {
228 case pkgCache::Dep::LessEq:
229 if (Res <= 0)
230 return true;
231 break;
232
233 case pkgCache::Dep::GreaterEq:
234 if (Res >= 0)
235 return true;
236 break;
237
238 case pkgCache::Dep::Less:
239 if (Res < 0)
240 return true;
241 break;
242
243 case pkgCache::Dep::Greater:
244 if (Res > 0)
245 return true;
246 break;
247
248 case pkgCache::Dep::Equals:
249 if (Res == 0)
250 return true;
251 break;
252
253 case pkgCache::Dep::NotEquals:
254 if (Res != 0)
255 return true;
256 break;
257 }
258
259 return false;
260 }
261 /*}}}*/
262 // debVS::UpstreamVersion - Return the upstream version string /*{{{*/
263 // ---------------------------------------------------------------------
264 /* This strips all the debian specific information from the version number */
265 std::string debVersioningSystem::UpstreamVersion(const char *Ver)
266 {
267 // Strip off the bit before the first colon
268 const char *I = Ver;
269 for (; *I != 0 && *I != ':'; I++);
270 if (*I == ':')
271 Ver = I + 1;
272
273 // Chop off the trailing -
274 I = Ver;
275 unsigned Last = strlen(Ver);
276 for (; *I != 0; I++)
277 if (*I == '-')
278 Last = I - Ver;
279
280 return std::string(Ver,Last);
281 }
282 /*}}}*/