]>
Commit | Line | Data |
---|---|---|
da6ee469 JF |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
3 | // $Id: versionmatch.h,v 1.4 2001/05/29 03:07:12 jgg Exp $ | |
4 | /* ###################################################################### | |
5 | ||
0e5943eb JF |
6 | Version Matching |
7 | ||
da6ee469 JF |
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. | |
10 | ||
11 | Version: 1.2* | |
12 | Release: o=Debian,v=2.1*,c=main | |
13 | Release: v=2.1* | |
0e5943eb JF |
14 | Release: a=testing |
15 | Release: n=squeeze | |
da6ee469 JF |
16 | Release: * |
17 | Origin: ftp.debian.org | |
0e5943eb | 18 | |
da6ee469 JF |
19 | Release may be a complex type that can specify matches for any of: |
20 | Version (v= with prefix) | |
21 | Origin (o=) | |
0e5943eb JF |
22 | Archive (a=) eg, unstable, testing, stable |
23 | Codename (n=) e.g. etch, lenny, squeeze, sid | |
da6ee469 JF |
24 | Label (l=) |
25 | Component (c=) | |
26 | If there are no equals signs in the string then it is scanned in short | |
0e5943eb JF |
27 | form - if it starts with a number it is Version otherwise it is an |
28 | Archive or a Codename. | |
29 | ||
da6ee469 | 30 | Release may be a '*' to match all releases. |
0e5943eb | 31 | |
da6ee469 JF |
32 | ##################################################################### */ |
33 | /*}}}*/ | |
34 | #ifndef PKGLIB_VERSIONMATCH_H | |
35 | #define PKGLIB_VERSIONMATCH_H | |
36 | ||
da6ee469 JF |
37 | |
38 | #include <string> | |
39 | #include <apt-pkg/pkgcache.h> | |
40 | ||
41 | using std::string; | |
42 | ||
43 | class pkgVersionMatch | |
44 | { | |
45 | // Version Matching | |
46 | string VerStr; | |
47 | bool VerPrefixMatch; | |
48 | ||
49 | // Release Matching | |
50 | string RelVerStr; | |
51 | bool RelVerPrefixMatch; | |
52 | string RelOrigin; | |
53 | string RelArchive; | |
54 | string RelLabel; | |
55 | string RelComponent; | |
56 | bool MatchAll; | |
57 | ||
58 | // Origin Matching | |
59 | string OrSite; | |
60 | ||
61 | public: | |
62 | ||
63 | enum MatchType {None = 0,Version,Release,Origin} Type; | |
64 | ||
65 | bool MatchVer(const char *A,string B,bool Prefix); | |
66 | bool FileMatch(pkgCache::PkgFileIterator File); | |
67 | pkgCache::VerIterator Find(pkgCache::PkgIterator Pkg); | |
68 | ||
69 | pkgVersionMatch(string Data,MatchType Type); | |
70 | }; | |
71 | ||
72 | #endif |