]>
git.saurik.com Git - apt.git/blob - apt-pkg/versionmatch.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: versionmatch.cc,v 1.9 2003/05/19 17:58:26 doogie Exp $
4 /* ######################################################################
8 This module takes a matching string and a type and locates the version
9 record that satisfies the constraint described by the matching string.
11 ##################################################################### */
13 // Include Files /*{{{*/
16 #include <apt-pkg/versionmatch.h>
17 #include <apt-pkg/strutl.h>
18 #include <apt-pkg/error.h>
19 #include <apt-pkg/pkgcache.h>
20 #include <apt-pkg/cacheiterators.h>
34 // VersionMatch::pkgVersionMatch - Constructor /*{{{*/
35 // ---------------------------------------------------------------------
36 /* Break up the data string according to the selected type */
37 pkgVersionMatch::pkgVersionMatch(string Data
,MatchType Type
) : Type(Type
)
40 VerPrefixMatch
= false;
41 RelVerPrefixMatch
= false;
43 if (Type
== None
|| Data
.length() < 1)
46 // Cut up the version representation
49 if (Data
.end()[-1] == '*')
51 VerPrefixMatch
= true;
52 VerStr
= string(Data
,0,Data
.length()-1);
61 // All empty = match all
68 // Are we a simple specification?
69 string::const_iterator I
= Data
.begin();
70 for (; I
!= Data
.end() && *I
!= '='; ++I
);
79 if (RelVerStr
.length() > 0 && RelVerStr
.end()[-1] == '*')
81 RelVerPrefixMatch
= true;
82 RelVerStr
= string(RelVerStr
.begin(),RelVerStr
.end()-1);
89 snprintf(Spec
,sizeof(Spec
),"%s",Data
.c_str());
90 if (TokSplitString(',',Spec
,Fragments
,
91 sizeof(Fragments
)/sizeof(Fragments
[0])) == false)
97 for (unsigned J
= 0; Fragments
[J
] != 0; J
++)
99 if (strlen(Fragments
[J
]) < 3)
102 if (stringcasecmp(Fragments
[J
],Fragments
[J
]+2,"v=") == 0)
103 RelVerStr
= Fragments
[J
]+2;
104 else if (stringcasecmp(Fragments
[J
],Fragments
[J
]+2,"o=") == 0)
105 RelOrigin
= Fragments
[J
]+2;
106 else if (stringcasecmp(Fragments
[J
],Fragments
[J
]+2,"a=") == 0)
107 RelArchive
= Fragments
[J
]+2;
108 else if (stringcasecmp(Fragments
[J
],Fragments
[J
]+2,"n=") == 0)
109 RelCodename
= Fragments
[J
]+2;
110 else if (stringcasecmp(Fragments
[J
],Fragments
[J
]+2,"l=") == 0)
111 RelLabel
= Fragments
[J
]+2;
112 else if (stringcasecmp(Fragments
[J
],Fragments
[J
]+2,"c=") == 0)
113 RelComponent
= Fragments
[J
]+2;
114 else if (stringcasecmp(Fragments
[J
],Fragments
[J
]+2,"b=") == 0)
115 RelArchitecture
= Fragments
[J
]+2;
118 if (RelVerStr
.end()[-1] == '*')
120 RelVerPrefixMatch
= true;
121 RelVerStr
= string(RelVerStr
.begin(),RelVerStr
.end()-1);
128 if (Data
[0] == '"' && Data
.length() >= 2 && Data
.end()[-1] == '"')
129 OrSite
= Data
.substr(1, Data
.length() - 2);
136 // VersionMatch::MatchVer - Match a version string with prefixing /*{{{*/
137 // ---------------------------------------------------------------------
139 bool pkgVersionMatch::MatchVer(const char *A
,string B
,bool Prefix
)
142 const char *Ae
= Ab
+ strlen(A
);
144 // Strings are not a compatible size.
145 if (((unsigned)(Ae
- Ab
) != B
.length() && Prefix
== false) ||
146 (unsigned)(Ae
- Ab
) < B
.length())
150 if (stringcasecmp(B
,Ab
,Ab
+ B
.length()) == 0)
156 // VersionMatch::Find - Locate the best match for the select type /*{{{*/
157 // ---------------------------------------------------------------------
159 pkgCache::VerIterator
pkgVersionMatch::Find(pkgCache::PkgIterator Pkg
)
161 pkgCache::VerIterator Ver
= Pkg
.VersionList();
162 for (; Ver
.end() == false; ++Ver
)
166 if (MatchVer(Ver
.VerStr(),VerStr
,VerPrefixMatch
) == true)
168 if (ExpressionMatches(VerStr
, Ver
.VerStr()) == true)
173 for (pkgCache::VerFileIterator VF
= Ver
.FileList(); VF
.end() == false; ++VF
)
174 if (FileMatch(VF
.File()) == true)
178 // This will be Ended by now.
183 #define FNM_CASEFOLD 0
186 bool pkgVersionMatch::ExpressionMatches(const char *pattern
, const char *string
)
188 if (pattern
[0] == '/') {
189 size_t length
= strlen(pattern
);
190 if (pattern
[length
- 1] == '/') {
193 char *regex
= strdup(pattern
+ 1);
194 regex
[length
- 2] = '\0';
195 if (regcomp(&preg
, regex
, REG_EXTENDED
| REG_ICASE
) != 0) {
196 _error
->Warning("Invalid regular expression: %s", regex
);
197 } else if (regexec(&preg
, string
, 0, NULL
, 0) == 0) {
205 return fnmatch(pattern
, string
, FNM_CASEFOLD
) == 0;
207 bool pkgVersionMatch::ExpressionMatches(const std::string
& pattern
, const char *string
)
209 return ExpressionMatches(pattern
.c_str(), string
);
212 // VersionMatch::FileMatch - Match against an index file /*{{{*/
213 // ---------------------------------------------------------------------
214 /* This matcher checks against the release file and the origin location
215 to see if the constraints are met. */
216 bool pkgVersionMatch::FileMatch(pkgCache::PkgFileIterator File
)
220 if (MatchAll
== true)
223 /* cout << RelVerStr << ',' << RelOrigin << ',' << RelArchive << ',' << RelLabel << endl;
224 cout << File.Version() << ',' << File.Origin() << ',' << File.Archive() << ',' << File.Label() << endl;*/
226 if (RelVerStr
.empty() == true && RelOrigin
.empty() == true &&
227 RelArchive
.empty() == true && RelLabel
.empty() == true &&
228 RelRelease
.empty() == true && RelCodename
.empty() == true &&
229 RelComponent
.empty() == true && RelArchitecture
.empty() == true)
232 if (RelVerStr
.empty() == false)
233 if (File
->Version
== 0 ||
234 (MatchVer(File
.Version(),RelVerStr
,RelVerPrefixMatch
) == false &&
235 ExpressionMatches(RelVerStr
, File
.Version()) == false))
237 if (RelOrigin
.empty() == false)
238 if (File
->Origin
== 0 || !ExpressionMatches(RelOrigin
,File
.Origin()))
240 if (RelArchive
.empty() == false)
241 if (File
->Archive
== 0 ||
242 !ExpressionMatches(RelArchive
,File
.Archive()))
244 if (RelCodename
.empty() == false)
245 if (File
->Codename
== 0 ||
246 !ExpressionMatches(RelCodename
,File
.Codename()))
248 if (RelRelease
.empty() == false)
249 if ((File
->Archive
== 0 ||
250 !ExpressionMatches(RelRelease
,File
.Archive())) &&
251 (File
->Codename
== 0 ||
252 !ExpressionMatches(RelRelease
,File
.Codename())))
254 if (RelLabel
.empty() == false)
255 if (File
->Label
== 0 ||
256 !ExpressionMatches(RelLabel
,File
.Label()))
258 if (RelComponent
.empty() == false)
259 if (File
->Component
== 0 ||
260 !ExpressionMatches(RelComponent
,File
.Component()))
262 if (RelArchitecture
.empty() == false)
263 if (File
->Architecture
== 0 ||
264 !ExpressionMatches(RelArchitecture
,File
.Architecture()))
271 if (OrSite
.empty() == false) {
274 } else // so we are talking about file:// or status file
275 if (strcmp(File
.Site(),"") == 0 && File
->Archive
!= 0 && strcmp(File
.Archive(),"now") == 0) // skip the status file
277 return (ExpressionMatches(OrSite
, File
.Site())); /* both strings match */