]>
Commit | Line | Data |
---|---|---|
b2e465d6 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
3 | // $Id: policy.h,v 1.2 2001/02/20 07:03:17 jgg Exp $ | |
4 | /* ###################################################################### | |
5 | ||
6 | Package Version Policy implementation | |
7 | ||
8 | This implements the more advanced 'Version 4' APT policy engine. The | |
9 | standard 'Version 0' engine is included inside the DepCache which is | |
10 | it's historical location. | |
11 | ||
12 | The V4 engine allows the user to completly control all aspects of | |
13 | version selection. There are three primary means to choose a version | |
14 | * Selection by version match | |
15 | * Selection by Release file match | |
16 | * Selection by origin server | |
17 | ||
18 | Each package may be 'pinned' with a single criteria, which will ultimately | |
19 | result in the selection of a single version, or no version, for each | |
20 | package. | |
21 | ||
22 | Furthermore, the default selection can be influenced by specifying | |
23 | the ordering of package files. The order is derived by reading the | |
24 | package file preferences and assigning a priority to each package | |
25 | file. | |
26 | ||
27 | A special flag may be set to indicate if no version should be returned | |
28 | if no matching versions are found, otherwise the default matching | |
29 | rules are used to locate a hit. | |
30 | ||
31 | ##################################################################### */ | |
32 | /*}}}*/ | |
33 | #ifndef PKGLIB_POLICY_H | |
34 | #define PKGLIB_POLICY_H | |
35 | ||
36 | #ifdef __GNUG__ | |
37 | #pragma interface "apt-pkg/policy.h" | |
38 | #endif | |
39 | ||
40 | #include <apt-pkg/depcache.h> | |
41 | #include <apt-pkg/versionmatch.h> | |
42 | #include <vector> | |
43 | ||
44 | class pkgPolicy : public pkgDepCache::Policy | |
45 | { | |
46 | struct Pin | |
47 | { | |
48 | pkgVersionMatch::MatchType Type; | |
49 | string Data; | |
50 | signed short Priority; | |
51 | Pin() : Type(pkgVersionMatch::None), Priority(0) {}; | |
52 | }; | |
53 | ||
54 | struct PkgPin : Pin | |
55 | { | |
56 | string Pkg; | |
57 | }; | |
58 | ||
59 | protected: | |
60 | ||
61 | Pin *Pins; | |
62 | signed short *PFPriority; | |
63 | vector<Pin> Defaults; | |
64 | vector<PkgPin> Unmatched; | |
65 | pkgCache *Cache; | |
66 | bool StatusOverride; | |
67 | ||
68 | public: | |
69 | ||
70 | void CreatePin(pkgVersionMatch::MatchType Type,string Pkg, | |
71 | string Data,signed short Priority); | |
72 | ||
73 | virtual pkgCache::VerIterator GetCandidateVer(pkgCache::PkgIterator Pkg); | |
74 | virtual bool IsImportantDep(pkgCache::DepIterator Dep) {return pkgDepCache::Policy::IsImportantDep(Dep);}; | |
75 | bool InitDefaults(); | |
76 | ||
77 | pkgPolicy(pkgCache *Owner); | |
78 | virtual ~pkgPolicy() {delete [] PFPriority; delete [] Pins;}; | |
79 | }; | |
80 | ||
81 | bool ReadPinFile(pkgPolicy &Plcy,string File = ""); | |
82 | ||
83 | #endif |