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