]>
git.saurik.com Git - apt.git/blob - apt-pkg/policy.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: policy.cc,v 1.6 2001/04/29 05:13:51 jgg Exp $
4 /* ######################################################################
6 Package Version Policy implementation
8 This is just a really simple wrapper around pkgVersionMatch with
9 some added goodies to manage the list of things..
13 1000 -> inf = Downgradeable priorities
14 1000 = The 'no downgrade' pseduo-status file
15 100 -> 1000 = Standard priorities
16 990 = Config file override package files
17 989 = Start for preference auto-priorities
18 500 = Default package files
20 0 -> 100 = NotAutomatic sources like experimental
21 -inf -> 0 = Never selected
23 ##################################################################### */
25 // Include Files /*{{{*/
27 #pragma implementation "apt-pkg/policy.h"
29 #include <apt-pkg/policy.h>
30 #include <apt-pkg/configuration.h>
31 #include <apt-pkg/tagfile.h>
32 #include <apt-pkg/strutl.h>
33 #include <apt-pkg/error.h>
34 #include <apt-pkg/sptr.h>
39 // Policy::Init - Startup and bind to a cache /*{{{*/
40 // ---------------------------------------------------------------------
41 /* Set the defaults for operation. The default mode with no loaded policy
42 file matches the V0 policy engine. */
43 pkgPolicy::pkgPolicy(pkgCache
*Owner
) : Pins(0), PFPriority(0), Cache(Owner
)
45 PFPriority
= new signed short[Owner
->Head().PackageFileCount
];
46 Pins
= new Pin
[Owner
->Head().PackageCount
];
48 for (unsigned long I
= 0; I
!= Owner
->Head().PackageCount
; I
++)
49 Pins
[I
].Type
= pkgVersionMatch::None
;
51 // The config file has a master override.
52 string DefRel
= _config
->Find("APT::Default-Release");
53 if (DefRel
.empty() == false)
54 CreatePin(pkgVersionMatch::Release
,"",DefRel
,990);
59 // Policy::InitDefaults - Compute the default selections /*{{{*/
60 // ---------------------------------------------------------------------
62 bool pkgPolicy::InitDefaults()
64 // Initialize the priorities based on the status of the package file
65 for (pkgCache::PkgFileIterator I
= Cache
->FileBegin(); I
!= Cache
->FileEnd(); I
++)
67 PFPriority
[I
->ID
] = 500;
68 if ((I
->Flags
& pkgCache::Flag::NotSource
) == pkgCache::Flag::NotSource
)
69 PFPriority
[I
->ID
] = 100;
71 if ((I
->Flags
& pkgCache::Flag::NotAutomatic
) == pkgCache::Flag::NotAutomatic
)
72 PFPriority
[I
->ID
] = 1;
75 // Apply the defaults..
76 SPtrArray
<bool> Fixed
= new bool[Cache
->HeaderP
->PackageFileCount
];
77 memset(Fixed
,0,sizeof(*Fixed
)*Cache
->HeaderP
->PackageFileCount
);
79 StatusOverride
= false;
80 for (vector
<Pin
>::const_iterator I
= Defaults
.begin(); I
!= Defaults
.end();
83 pkgVersionMatch
Match(I
->Data
,I
->Type
);
84 for (pkgCache::PkgFileIterator F
= Cache
->FileBegin(); F
!= Cache
->FileEnd(); F
++)
86 if (Match
.FileMatch(F
) == true && Fixed
[F
->ID
] == false)
88 if (I
->Priority
!= 0 && I
->Priority
> 0)
92 PFPriority
[F
->ID
] = I
->Priority
;
94 PFPriority
[F
->ID
] = Cur
;
96 if (PFPriority
[F
->ID
] > 1000)
97 StatusOverride
= true;
104 if (_config
->FindB("Debug::pkgPolicy",false) == true)
105 for (pkgCache::PkgFileIterator F
= Cache
->FileBegin(); F
!= Cache
->FileEnd(); F
++)
106 cout
<< "Prio of " << F
.FileName() << ' ' << PFPriority
[F
->ID
] << endl
;
111 // Policy::GetCandidateVer - Get the candidate install version /*{{{*/
112 // ---------------------------------------------------------------------
113 /* Evaluate the package pins and the default list to deteremine what the
115 pkgCache::VerIterator
pkgPolicy::GetCandidateVer(pkgCache::PkgIterator Pkg
)
117 // Look for a package pin and evaluate it.
118 signed Max
= GetPriority(Pkg
);
119 pkgCache::VerIterator Pref
= GetMatch(Pkg
);
121 /* Falling through to the default version.. Setting Max to zero
122 effectively excludes everything <= 0 which are the non-automatic
123 priorities.. The status file is given a prio of 100 which will exclude
124 not-automatic sources, except in a single shot not-installed mode.
125 The second pseduo-status file is at prio 1000, above which will permit
126 the user to force-downgrade things.
128 The user pin is subject to the same priority rules as default
129 selections. Thus there are two ways to create a pin - a pin that
130 tracks the default when the default is taken away, and a permanent
131 pin that stays at that setting.
133 for (pkgCache::VerIterator Ver
= Pkg
.VersionList(); Ver
.end() == false; Ver
++)
135 for (pkgCache::VerFileIterator VF
= Ver
.FileList(); VF
.end() == false; VF
++)
137 /* If this is the status file, and the current version is not the
138 version in the status file (ie it is not installed, or somesuch)
139 then it is not a candidate for installation, ever. This weeds
140 out bogus entries that may be due to config-file states, or
142 if ((VF
.File()->Flags
& pkgCache::Flag::NotSource
) == pkgCache::Flag::NotSource
&&
143 Pkg
.CurrentVer() != Ver
)
146 signed Prio
= PFPriority
[VF
.File()->ID
];
154 if (Pkg
.CurrentVer() == Ver
&& Max
< 1000)
156 /* Elevate our current selection (or the status file itself)
157 to the Pseudo-status priority. */
158 if (Pref
.end() == true)
162 // Fast path optimize.
163 if (StatusOverride
== false)
171 // Policy::CreatePin - Create an entry in the pin table.. /*{{{*/
172 // ---------------------------------------------------------------------
173 /* For performance we have 3 tables, the default table, the main cache
174 table (hashed to the cache). A blank package name indicates the pin
175 belongs to the default table. Order of insertion matters here, the
176 earlier defaults override later ones. */
177 void pkgPolicy::CreatePin(pkgVersionMatch::MatchType Type
,string Name
,
178 string Data
,signed short Priority
)
180 pkgCache::PkgIterator Pkg
= Cache
->FindPkg(Name
);
183 if (Name
.empty() == true)
184 P
= Defaults
.insert(Defaults
.end());
187 // Get a spot to put the pin
188 if (Pkg
.end() == true)
190 // Check the unmatched table
191 for (vector
<PkgPin
>::iterator I
= Unmatched
.begin();
192 I
!= Unmatched
.end() && P
== 0; I
++)
197 P
= Unmatched
.insert(Unmatched
.end());
207 P
->Priority
= Priority
;
211 // Policy::GetMatch - Get the matching version for a package pin /*{{{*/
212 // ---------------------------------------------------------------------
214 pkgCache::VerIterator
pkgPolicy::GetMatch(pkgCache::PkgIterator Pkg
)
216 const Pin
&PPkg
= Pins
[Pkg
->ID
];
217 if (PPkg
.Type
!= pkgVersionMatch::None
)
219 pkgVersionMatch
Match(PPkg
.Data
,PPkg
.Type
);
220 return Match
.Find(Pkg
);
222 return pkgCache::VerIterator(*Pkg
.Cache());
225 // Policy::GetPriority - Get the priority of the package pin /*{{{*/
226 // ---------------------------------------------------------------------
228 signed short pkgPolicy::GetPriority(pkgCache::PkgIterator
const &Pkg
)
230 if (Pins
[Pkg
->ID
].Type
!= pkgVersionMatch::None
)
232 // In this case 0 means default priority
233 if (Pins
[Pkg
->ID
].Priority
== 0)
235 return Pins
[Pkg
->ID
].Priority
;
242 // ReadPinFile - Load the pin file into a Policy /*{{{*/
243 // ---------------------------------------------------------------------
244 /* I'd like to see the preferences file store more than just pin information
245 but right now that is the only stuff I have to store. Later there will
246 have to be some kind of combined super parser to get the data into all
247 the right classes.. */
248 bool ReadPinFile(pkgPolicy
&Plcy
,string File
)
250 if (File
.empty() == true)
251 File
= _config
->FindFile("Dir::Etc::Preferences");
253 if (FileExists(File
) == false)
256 FileFd
Fd(File
,FileFd::ReadOnly
);
258 if (_error
->PendingError() == true)
262 while (TF
.Step(Tags
) == true)
264 string Name
= Tags
.FindS("Package");
265 if (Name
.empty() == true)
266 return _error
->Error(_("Invalid record in the preferences file, no Package header"));
272 if (Tags
.Find("Pin",Start
,End
) == false)
275 const char *Word
= Start
;
276 for (; Word
!= End
&& isspace(*Word
) == 0; Word
++);
279 pkgVersionMatch::MatchType Type
;
280 if (stringcasecmp(Start
,Word
,"version") == 0 && Name
.empty() == false)
281 Type
= pkgVersionMatch::Version
;
282 else if (stringcasecmp(Start
,Word
,"release") == 0)
283 Type
= pkgVersionMatch::Release
;
284 else if (stringcasecmp(Start
,Word
,"origin") == 0)
285 Type
= pkgVersionMatch::Origin
;
288 _error
->Warning(_("Did not understand pin type %s"),string(Start
,Word
).c_str());
291 for (; Word
!= End
&& isspace(*Word
) != 0; Word
++);
293 Plcy
.CreatePin(Type
,Name
,string(Word
,End
),
294 Tags
.FindI("Pin-Priority"));