]>
Commit | Line | Data |
---|---|---|
b2e465d6 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
56298634 | 3 | // $Id: policy.cc,v 1.10 2003/08/12 00:17:37 mdz Exp $ |
b2e465d6 AL |
4 | /* ###################################################################### |
5 | ||
6 | Package Version Policy implementation | |
3f732aa6 | 7 | |
b2e465d6 AL |
8 | This is just a really simple wrapper around pkgVersionMatch with |
9 | some added goodies to manage the list of things.. | |
3f732aa6 DK |
10 | |
11 | See man apt_preferences for what value means what. | |
12 | ||
b2e465d6 AL |
13 | ##################################################################### */ |
14 | /*}}}*/ | |
15 | // Include Files /*{{{*/ | |
ea542140 DK |
16 | #include<config.h> |
17 | ||
b2e465d6 AL |
18 | #include <apt-pkg/policy.h> |
19 | #include <apt-pkg/configuration.h> | |
9ed80cdd | 20 | #include <apt-pkg/cachefilter.h> |
b2e465d6 AL |
21 | #include <apt-pkg/tagfile.h> |
22 | #include <apt-pkg/strutl.h> | |
46e39c8e | 23 | #include <apt-pkg/fileutl.h> |
b2e465d6 AL |
24 | #include <apt-pkg/error.h> |
25 | #include <apt-pkg/sptr.h> | |
453b82a3 DK |
26 | #include <apt-pkg/cacheiterators.h> |
27 | #include <apt-pkg/pkgcache.h> | |
28 | #include <apt-pkg/versionmatch.h> | |
a91aae40 | 29 | #include <apt-pkg/version.h> |
46e39c8e | 30 | |
453b82a3 DK |
31 | #include <ctype.h> |
32 | #include <stddef.h> | |
33 | #include <string.h> | |
34 | #include <string> | |
35 | #include <vector> | |
e7b470ee | 36 | #include <iostream> |
1c62ab24 | 37 | #include <sstream> |
ea542140 DK |
38 | |
39 | #include <apti18n.h> | |
b2e465d6 AL |
40 | /*}}}*/ |
41 | ||
e7b470ee AL |
42 | using namespace std; |
43 | ||
b2e465d6 AL |
44 | // Policy::Init - Startup and bind to a cache /*{{{*/ |
45 | // --------------------------------------------------------------------- | |
46 | /* Set the defaults for operation. The default mode with no loaded policy | |
47 | file matches the V0 policy engine. */ | |
50bac728 DK |
48 | pkgPolicy::pkgPolicy(pkgCache *Owner) : Pins(nullptr), VerPins(nullptr), |
49 | PFPriority(nullptr), Cache(Owner), d(NULL) | |
b2e465d6 | 50 | { |
3f732aa6 | 51 | if (Owner == 0) |
c55b8a54 | 52 | return; |
b2e465d6 AL |
53 | PFPriority = new signed short[Owner->Head().PackageFileCount]; |
54 | Pins = new Pin[Owner->Head().PackageCount]; | |
9fb02ab0 | 55 | VerPins = new Pin[Owner->Head().VersionCount]; |
b2e465d6 AL |
56 | |
57 | for (unsigned long I = 0; I != Owner->Head().PackageCount; I++) | |
58 | Pins[I].Type = pkgVersionMatch::None; | |
9fb02ab0 JAK |
59 | for (unsigned long I = 0; I != Owner->Head().VersionCount; I++) |
60 | VerPins[I].Type = pkgVersionMatch::None; | |
b2e465d6 AL |
61 | |
62 | // The config file has a master override. | |
63 | string DefRel = _config->Find("APT::Default-Release"); | |
64 | if (DefRel.empty() == false) | |
a3bbbab7 DK |
65 | { |
66 | bool found = false; | |
67 | // FIXME: make ExpressionMatches static to use it here easily | |
68 | pkgVersionMatch vm("", pkgVersionMatch::None); | |
69 | for (pkgCache::PkgFileIterator F = Cache->FileBegin(); F != Cache->FileEnd(); ++F) | |
70 | { | |
b07aeb1a DK |
71 | if (vm.ExpressionMatches(DefRel, F.Archive()) || |
72 | vm.ExpressionMatches(DefRel, F.Codename()) || | |
73 | vm.ExpressionMatches(DefRel, F.Version()) || | |
061c58b6 | 74 | (DefRel.length() > 2 && DefRel[1] == '=')) |
a3bbbab7 DK |
75 | found = true; |
76 | } | |
77 | if (found == false) | |
78 | _error->Error(_("The value '%s' is invalid for APT::Default-Release as such a release is not available in the sources"), DefRel.c_str()); | |
79 | else | |
80 | CreatePin(pkgVersionMatch::Release,"",DefRel,990); | |
81 | } | |
b2e465d6 AL |
82 | InitDefaults(); |
83 | } | |
84 | /*}}}*/ | |
85 | // Policy::InitDefaults - Compute the default selections /*{{{*/ | |
86 | // --------------------------------------------------------------------- | |
87 | /* */ | |
88 | bool pkgPolicy::InitDefaults() | |
89 | { | |
90 | // Initialize the priorities based on the status of the package file | |
f7f0d6c7 | 91 | for (pkgCache::PkgFileIterator I = Cache->FileBegin(); I != Cache->FileEnd(); ++I) |
b2e465d6 AL |
92 | { |
93 | PFPriority[I->ID] = 500; | |
b07aeb1a | 94 | if (I.Flagged(pkgCache::Flag::NotSource)) |
b2e465d6 | 95 | PFPriority[I->ID] = 100; |
b07aeb1a | 96 | else if (I.Flagged(pkgCache::Flag::ButAutomaticUpgrades)) |
5ed56f93 | 97 | PFPriority[I->ID] = 100; |
b07aeb1a | 98 | else if (I.Flagged(pkgCache::Flag::NotAutomatic)) |
5ed56f93 | 99 | PFPriority[I->ID] = 1; |
b2e465d6 AL |
100 | } |
101 | ||
102 | // Apply the defaults.. | |
98cc7fd2 JAK |
103 | std::unique_ptr<bool[]> Fixed(new bool[Cache->HeaderP->PackageFileCount]); |
104 | memset(Fixed.get(),0,sizeof(Fixed[0])*Cache->HeaderP->PackageFileCount); | |
b2e465d6 | 105 | StatusOverride = false; |
ab640001 | 106 | for (vector<Pin>::const_iterator I = Defaults.begin(); I != Defaults.end(); ++I) |
b2e465d6 AL |
107 | { |
108 | pkgVersionMatch Match(I->Data,I->Type); | |
f7f0d6c7 | 109 | for (pkgCache::PkgFileIterator F = Cache->FileBegin(); F != Cache->FileEnd(); ++F) |
b2e465d6 | 110 | { |
ab640001 | 111 | if (Fixed[F->ID] == false && Match.FileMatch(F) == true) |
b2e465d6 | 112 | { |
ab640001 DK |
113 | PFPriority[F->ID] = I->Priority; |
114 | ||
3f732aa6 | 115 | if (PFPriority[F->ID] >= 1000) |
b2e465d6 | 116 | StatusOverride = true; |
ab640001 | 117 | |
b2e465d6 | 118 | Fixed[F->ID] = true; |
ab640001 DK |
119 | } |
120 | } | |
b2e465d6 AL |
121 | } |
122 | ||
123 | if (_config->FindB("Debug::pkgPolicy",false) == true) | |
f7f0d6c7 | 124 | for (pkgCache::PkgFileIterator F = Cache->FileBegin(); F != Cache->FileEnd(); ++F) |
ab640001 DK |
125 | std::clog << "Prio of " << F.FileName() << ' ' << PFPriority[F->ID] << std::endl; |
126 | ||
127 | return true; | |
b2e465d6 AL |
128 | } |
129 | /*}}}*/ | |
130 | // Policy::GetCandidateVer - Get the candidate install version /*{{{*/ | |
131 | // --------------------------------------------------------------------- | |
132 | /* Evaluate the package pins and the default list to deteremine what the | |
133 | best package is. */ | |
9ee8287e | 134 | pkgCache::VerIterator pkgPolicy::GetCandidateVer(pkgCache::PkgIterator const &Pkg) |
b2e465d6 | 135 | { |
a91aae40 JAK |
136 | if (_config->FindI("APT::Policy", 1) >= 1) { |
137 | return GetCandidateVerNew(Pkg); | |
138 | } | |
139 | ||
b2e465d6 | 140 | // Look for a package pin and evaluate it. |
af87ab54 AL |
141 | signed Max = GetPriority(Pkg); |
142 | pkgCache::VerIterator Pref = GetMatch(Pkg); | |
e7b470ee | 143 | |
8f5525e9 JAK |
144 | // Alternatives in case we can not find our package pin (Bug#512318). |
145 | signed MaxAlt = 0; | |
146 | pkgCache::VerIterator PrefAlt; | |
147 | ||
9f5bf66a DK |
148 | // no package = no candidate version |
149 | if (Pkg.end() == true) | |
150 | return Pref; | |
151 | ||
152 | // packages with a pin lower than 0 have no newer candidate than the current version | |
153 | if (Max < 0) | |
154 | return Pkg.CurrentVer(); | |
155 | ||
b2e465d6 AL |
156 | /* Falling through to the default version.. Setting Max to zero |
157 | effectively excludes everything <= 0 which are the non-automatic | |
158 | priorities.. The status file is given a prio of 100 which will exclude | |
159 | not-automatic sources, except in a single shot not-installed mode. | |
3f732aa6 | 160 | |
b2e465d6 AL |
161 | The user pin is subject to the same priority rules as default |
162 | selections. Thus there are two ways to create a pin - a pin that | |
163 | tracks the default when the default is taken away, and a permanent | |
164 | pin that stays at that setting. | |
165 | */ | |
16808002 | 166 | bool PrefSeen = false; |
f7f0d6c7 | 167 | for (pkgCache::VerIterator Ver = Pkg.VersionList(); Ver.end() == false; ++Ver) |
10639577 | 168 | { |
9ee8287e DK |
169 | /* Lets see if this version is the installed version */ |
170 | bool instVer = (Pkg.CurrentVer() == Ver); | |
9ee8287e | 171 | |
16808002 DK |
172 | if (Pref == Ver) |
173 | PrefSeen = true; | |
174 | ||
f7f0d6c7 | 175 | for (pkgCache::VerFileIterator VF = Ver.FileList(); VF.end() == false; ++VF) |
b2e465d6 | 176 | { |
6aeda9fa AL |
177 | /* If this is the status file, and the current version is not the |
178 | version in the status file (ie it is not installed, or somesuch) | |
179 | then it is not a candidate for installation, ever. This weeds | |
180 | out bogus entries that may be due to config-file states, or | |
181 | other. */ | |
b07aeb1a | 182 | if (VF.File().Flagged(pkgCache::Flag::NotSource) && instVer == false) |
6aeda9fa | 183 | continue; |
9ee8287e | 184 | |
b2e465d6 AL |
185 | signed Prio = PFPriority[VF.File()->ID]; |
186 | if (Prio > Max) | |
187 | { | |
188 | Pref = Ver; | |
189 | Max = Prio; | |
16808002 | 190 | PrefSeen = true; |
8f5525e9 JAK |
191 | } |
192 | if (Prio > MaxAlt) | |
193 | { | |
194 | PrefAlt = Ver; | |
195 | MaxAlt = Prio; | |
16808002 DK |
196 | } |
197 | } | |
198 | ||
9ee8287e | 199 | if (instVer == true && Max < 1000) |
b2e465d6 | 200 | { |
16808002 DK |
201 | /* Not having seen the Pref yet means we have a specific pin below 1000 |
202 | on a version below the current installed one, so ignore the specific pin | |
203 | as this would be a downgrade otherwise */ | |
204 | if (PrefSeen == false || Pref.end() == true) | |
205 | { | |
206 | Pref = Ver; | |
207 | PrefSeen = true; | |
208 | } | |
3f732aa6 DK |
209 | /* Elevate our current selection (or the status file itself) so that only |
210 | a downgrade can override it from now on */ | |
211 | Max = 999; | |
16808002 | 212 | |
b2e465d6 AL |
213 | // Fast path optimize. |
214 | if (StatusOverride == false) | |
215 | break; | |
16808002 | 216 | } |
b2e465d6 | 217 | } |
8f5525e9 JAK |
218 | // If we do not find our candidate, use the one with the highest pin. |
219 | // This means that if there is a version available with pin > 0; there | |
220 | // will always be a candidate (Closes: #512318) | |
221 | if (!Pref.IsGood() && MaxAlt > 0) | |
222 | Pref = PrefAlt; | |
9ee8287e | 223 | |
b2e465d6 AL |
224 | return Pref; |
225 | } | |
a91aae40 JAK |
226 | |
227 | // Policy::GetCandidateVer - Get the candidate install version /*{{{*/ | |
228 | // --------------------------------------------------------------------- | |
229 | /* Evaluate the package pins and the default list to deteremine what the | |
230 | best package is. */ | |
231 | pkgCache::VerIterator pkgPolicy::GetCandidateVerNew(pkgCache::PkgIterator const &Pkg) | |
232 | { | |
233 | // TODO: Replace GetCandidateVer() | |
234 | pkgCache::VerIterator cand; | |
3436218c | 235 | pkgCache::VerIterator cur = Pkg.CurrentVer(); |
a91aae40 | 236 | int candPriority = -1; |
a91aae40 JAK |
237 | pkgVersioningSystem *vs = Cache->VS; |
238 | ||
239 | for (pkgCache::VerIterator ver = Pkg.VersionList(); ver.end() == false; ver++) { | |
240 | int priority = GetPriority(ver); | |
a91aae40 | 241 | |
3d5e93f7 | 242 | if (priority == 0 || priority <= candPriority) |
3436218c JAK |
243 | continue; |
244 | ||
245 | // TODO: Maybe optimize to not compare versions | |
246 | if (!cur.end() && priority < 1000 | |
247 | && (vs->CmpVersion(ver.VerStr(), cur.VerStr()) < 0)) | |
248 | continue; | |
a91aae40 JAK |
249 | |
250 | candPriority = priority; | |
a91aae40 JAK |
251 | cand = ver; |
252 | } | |
253 | ||
254 | return cand; | |
255 | } | |
b2e465d6 AL |
256 | /*}}}*/ |
257 | // Policy::CreatePin - Create an entry in the pin table.. /*{{{*/ | |
258 | // --------------------------------------------------------------------- | |
259 | /* For performance we have 3 tables, the default table, the main cache | |
260 | table (hashed to the cache). A blank package name indicates the pin | |
261 | belongs to the default table. Order of insertion matters here, the | |
262 | earlier defaults override later ones. */ | |
263 | void pkgPolicy::CreatePin(pkgVersionMatch::MatchType Type,string Name, | |
264 | string Data,signed short Priority) | |
265 | { | |
b2e465d6 | 266 | if (Name.empty() == true) |
b2e465d6 | 267 | { |
00c6e1a3 | 268 | Pin *P = &*Defaults.insert(Defaults.end(),Pin()); |
4a6d2163 DK |
269 | P->Type = Type; |
270 | P->Priority = Priority; | |
271 | P->Data = Data; | |
272 | return; | |
273 | } | |
00c6e1a3 MV |
274 | |
275 | size_t found = Name.rfind(':'); | |
276 | string Arch; | |
277 | if (found != string::npos) { | |
278 | Arch = Name.substr(found+1); | |
279 | Name.erase(found); | |
280 | } | |
281 | ||
1a4c9766 JAK |
282 | // Allow pinning by wildcards |
283 | // TODO: Maybe we should always prefer specific pins over non- | |
284 | // specific ones. | |
a8d7c101 DK |
285 | if (Name[0] == '/' || Name.find_first_of("*[?") != string::npos) |
286 | { | |
287 | pkgVersionMatch match(Data, Type); | |
288 | for (pkgCache::GrpIterator G = Cache->GrpBegin(); G.end() != true; ++G) | |
289 | if (match.ExpressionMatches(Name, G.Name())) | |
00c6e1a3 MV |
290 | { |
291 | if (Arch.empty() == false) | |
292 | CreatePin(Type, string(G.Name()).append(":").append(Arch), Data, Priority); | |
293 | else | |
294 | CreatePin(Type, G.Name(), Data, Priority); | |
295 | } | |
1a4c9766 JAK |
296 | return; |
297 | } | |
4a6d2163 | 298 | |
00c6e1a3 | 299 | // find the package (group) this pin applies to |
9ed80cdd DK |
300 | pkgCache::GrpIterator Grp = Cache->FindGrp(Name); |
301 | bool matched = false; | |
302 | if (Grp.end() == false) | |
303 | { | |
304 | std::string MatchingArch; | |
305 | if (Arch.empty() == true) | |
306 | MatchingArch = Cache->NativeArch(); | |
307 | else | |
308 | MatchingArch = Arch; | |
309 | APT::CacheFilter::PackageArchitectureMatchesSpecification pams(MatchingArch); | |
310 | for (pkgCache::PkgIterator Pkg = Grp.PackageList(); Pkg.end() != true; Pkg = Grp.NextPkg(Pkg)) | |
311 | { | |
312 | if (pams(Pkg.Arch()) == false) | |
313 | continue; | |
314 | Pin *P = Pins + Pkg->ID; | |
315 | // the first specific stanza for a package is the ruler, | |
316 | // all others need to be ignored | |
317 | if (P->Type != pkgVersionMatch::None) | |
318 | P = &*Unmatched.insert(Unmatched.end(),PkgPin(Pkg.FullName())); | |
319 | P->Type = Type; | |
320 | P->Priority = Priority; | |
321 | P->Data = Data; | |
322 | matched = true; | |
7fd9c353 JAK |
323 | |
324 | // Find matching version(s) and copy the pin into it | |
325 | pkgVersionMatch Match(P->Data,P->Type); | |
326 | for (pkgCache::VerIterator Ver = Pkg.VersionList(); Ver.end() != true; Ver++) | |
327 | { | |
328 | if (Match.VersionMatches(Ver)) { | |
329 | Pin *VP = VerPins + Ver->ID; | |
330 | if (VP->Type == pkgVersionMatch::None) | |
331 | *VP = *P; | |
332 | } | |
333 | } | |
9ed80cdd | 334 | } |
00c6e1a3 MV |
335 | } |
336 | ||
9ed80cdd | 337 | if (matched == false) |
4a6d2163 | 338 | { |
00c6e1a3 MV |
339 | PkgPin *P = &*Unmatched.insert(Unmatched.end(),PkgPin(Name)); |
340 | if (Arch.empty() == false) | |
341 | P->Pkg.append(":").append(Arch); | |
342 | P->Type = Type; | |
343 | P->Priority = Priority; | |
344 | P->Data = Data; | |
345 | return; | |
346 | } | |
b2e465d6 AL |
347 | } |
348 | /*}}}*/ | |
af87ab54 AL |
349 | // Policy::GetMatch - Get the matching version for a package pin /*{{{*/ |
350 | // --------------------------------------------------------------------- | |
351 | /* */ | |
9ee8287e | 352 | pkgCache::VerIterator pkgPolicy::GetMatch(pkgCache::PkgIterator const &Pkg) |
af87ab54 AL |
353 | { |
354 | const Pin &PPkg = Pins[Pkg->ID]; | |
9ee8287e DK |
355 | if (PPkg.Type == pkgVersionMatch::None) |
356 | return pkgCache::VerIterator(*Pkg.Cache()); | |
357 | ||
358 | pkgVersionMatch Match(PPkg.Data,PPkg.Type); | |
359 | return Match.Find(Pkg); | |
af87ab54 AL |
360 | } |
361 | /*}}}*/ | |
362 | // Policy::GetPriority - Get the priority of the package pin /*{{{*/ | |
363 | // --------------------------------------------------------------------- | |
364 | /* */ | |
a02db58f | 365 | APT_PURE signed short pkgPolicy::GetPriority(pkgCache::PkgIterator const &Pkg) |
af87ab54 AL |
366 | { |
367 | if (Pins[Pkg->ID].Type != pkgVersionMatch::None) | |
af87ab54 | 368 | return Pins[Pkg->ID].Priority; |
af87ab54 | 369 | return 0; |
6d38011b | 370 | } |
a0a66955 | 371 | APT_PURE signed short pkgPolicy::GetPriority(pkgCache::VerIterator const &Ver, bool ConsiderFiles) |
9fb02ab0 JAK |
372 | { |
373 | if (VerPins[Ver->ID].Type != pkgVersionMatch::None) | |
374 | return VerPins[Ver->ID].Priority; | |
a0a66955 | 375 | if (!ConsiderFiles) |
10b39ae6 | 376 | return 0; |
5f9386e5 | 377 | |
9b7d159f | 378 | int priority = std::numeric_limits<int>::min(); |
5f9386e5 JAK |
379 | for (pkgCache::VerFileIterator file = Ver.FileList(); file.end() == false; file++) |
380 | { | |
3d5e93f7 JAK |
381 | /* If this is the status file, and the current version is not the |
382 | version in the status file (ie it is not installed, or somesuch) | |
383 | then it is not a candidate for installation, ever. This weeds | |
384 | out bogus entries that may be due to config-file states, or | |
385 | other. */ | |
386 | if (file.File().Flagged(pkgCache::Flag::NotSource) && Ver.ParentPkg().CurrentVer() != Ver) { | |
1d203ce7 | 387 | // Ignore |
3d5e93f7 JAK |
388 | } else if (GetPriority(file.File()) > priority) { |
389 | priority = GetPriority(file.File()); | |
390 | } | |
5f9386e5 JAK |
391 | } |
392 | ||
9b7d159f | 393 | return priority == std::numeric_limits<int>::min() ? 0 : priority; |
9fb02ab0 | 394 | } |
a02db58f | 395 | APT_PURE signed short pkgPolicy::GetPriority(pkgCache::PkgFileIterator const &File) |
6d38011b DK |
396 | { |
397 | return PFPriority[File->ID]; | |
af87ab54 AL |
398 | } |
399 | /*}}}*/ | |
ef1dff93 DK |
400 | // ReadPinDir - Load the pin files from this dir into a Policy /*{{{*/ |
401 | // --------------------------------------------------------------------- | |
6009e60d DK |
402 | /* This will load each pin file in the given dir into a Policy. If the |
403 | given dir is empty the dir set in Dir::Etc::PreferencesParts is used. | |
404 | Note also that this method will issue a warning if the dir does not | |
405 | exists but it will return true in this case! */ | |
e68ca100 JAK |
406 | bool ReadPinDir(pkgPolicy &Plcy,string Dir) |
407 | { | |
408 | if (Dir.empty() == true) | |
409 | Dir = _config->FindDir("Dir::Etc::PreferencesParts"); | |
410 | ||
448eaf8b | 411 | if (DirectoryExists(Dir) == false) |
6009e60d | 412 | { |
448eaf8b | 413 | _error->WarningE("DirectoryExists",_("Unable to read %s"),Dir.c_str()); |
6009e60d DK |
414 | return true; |
415 | } | |
416 | ||
b39c1859 | 417 | vector<string> const List = GetListOfFilesInDir(Dir, "pref", true, true); |
e68ca100 JAK |
418 | |
419 | // Read the files | |
f7f0d6c7 | 420 | for (vector<string>::const_iterator I = List.begin(); I != List.end(); ++I) |
e68ca100 JAK |
421 | if (ReadPinFile(Plcy, *I) == false) |
422 | return false; | |
423 | return true; | |
424 | } | |
81e9789b | 425 | /*}}}*/ |
b2e465d6 AL |
426 | // ReadPinFile - Load the pin file into a Policy /*{{{*/ |
427 | // --------------------------------------------------------------------- | |
428 | /* I'd like to see the preferences file store more than just pin information | |
429 | but right now that is the only stuff I have to store. Later there will | |
430 | have to be some kind of combined super parser to get the data into all | |
431 | the right classes.. */ | |
432 | bool ReadPinFile(pkgPolicy &Plcy,string File) | |
433 | { | |
434 | if (File.empty() == true) | |
435 | File = _config->FindFile("Dir::Etc::Preferences"); | |
436 | ||
36f1098a | 437 | if (RealFileExists(File) == false) |
b2e465d6 AL |
438 | return true; |
439 | ||
440 | FileFd Fd(File,FileFd::ReadOnly); | |
441 | pkgTagFile TF(&Fd); | |
442 | if (_error->PendingError() == true) | |
443 | return false; | |
81460e32 DK |
444 | |
445 | pkgUserTagSection Tags; | |
b2e465d6 AL |
446 | while (TF.Step(Tags) == true) |
447 | { | |
75ab11ae MV |
448 | // can happen when there are only comments in a record |
449 | if (Tags.Count() == 0) | |
450 | continue; | |
451 | ||
b2e465d6 AL |
452 | string Name = Tags.FindS("Package"); |
453 | if (Name.empty() == true) | |
e68ca100 | 454 | return _error->Error(_("Invalid record in the preferences file %s, no Package header"), File.c_str()); |
b2e465d6 AL |
455 | if (Name == "*") |
456 | Name = string(); | |
457 | ||
458 | const char *Start; | |
459 | const char *End; | |
460 | if (Tags.Find("Pin",Start,End) == false) | |
461 | continue; | |
462 | ||
463 | const char *Word = Start; | |
464 | for (; Word != End && isspace(*Word) == 0; Word++); | |
465 | ||
466 | // Parse the type.. | |
467 | pkgVersionMatch::MatchType Type; | |
468 | if (stringcasecmp(Start,Word,"version") == 0 && Name.empty() == false) | |
469 | Type = pkgVersionMatch::Version; | |
470 | else if (stringcasecmp(Start,Word,"release") == 0) | |
471 | Type = pkgVersionMatch::Release; | |
472 | else if (stringcasecmp(Start,Word,"origin") == 0) | |
473 | Type = pkgVersionMatch::Origin; | |
474 | else | |
475 | { | |
476 | _error->Warning(_("Did not understand pin type %s"),string(Start,Word).c_str()); | |
477 | continue; | |
478 | } | |
479 | for (; Word != End && isspace(*Word) != 0; Word++); | |
480 | ||
809aa216 JAK |
481 | int priority = Tags.FindI("Pin-Priority", 0); |
482 | if (priority < std::numeric_limits<short>::min() || | |
483 | priority > std::numeric_limits<short>::max() || | |
484 | _error->PendingError()) { | |
485 | return _error->Error(_("%s: Value %s is outside the range of valid pin priorities (%d to %d)"), | |
486 | File.c_str(), Tags.FindS("Pin-Priority").c_str(), | |
487 | std::numeric_limits<short>::min(), | |
488 | std::numeric_limits<short>::max()); | |
489 | } | |
56298634 AL |
490 | if (priority == 0) |
491 | { | |
809aa216 | 492 | return _error->Error(_("No priority (or zero) specified for pin")); |
56298634 AL |
493 | } |
494 | ||
1c62ab24 MV |
495 | istringstream s(Name); |
496 | string pkg; | |
497 | while(!s.eof()) | |
498 | { | |
499 | s >> pkg; | |
500 | Plcy.CreatePin(Type, pkg, string(Word,End),priority); | |
501 | }; | |
b2e465d6 AL |
502 | } |
503 | ||
504 | Plcy.InitDefaults(); | |
505 | return true; | |
506 | } | |
507 | /*}}}*/ | |
c8a4ce6c | 508 | |
9fb02ab0 | 509 | pkgPolicy::~pkgPolicy() {delete [] PFPriority; delete [] Pins; delete [] VerPins; } |