]>
git.saurik.com Git - apt.git/blob - apt-pkg/packagemanager.cc
ab1b13de8c5554fe0a21ce106074449dae2d39da
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: packagemanager.cc,v 1.30 2003/04/27 03:04:15 doogie Exp $
4 /* ######################################################################
6 Package Manager - Abstacts the package manager
8 More work is needed in the area of transitioning provides, ie exim
9 replacing smail. This can cause interesing side effects.
11 Other cases involving conflicts+replaces should be tested.
13 ##################################################################### */
15 // Include Files /*{{{*/
16 #include <apt-pkg/packagemanager.h>
17 #include <apt-pkg/orderlist.h>
18 #include <apt-pkg/depcache.h>
19 #include <apt-pkg/error.h>
20 #include <apt-pkg/version.h>
21 #include <apt-pkg/acquire-item.h>
22 #include <apt-pkg/algorithms.h>
23 #include <apt-pkg/configuration.h>
24 #include <apt-pkg/sptr.h>
32 // PM::PackageManager - Constructor /*{{{*/
33 // ---------------------------------------------------------------------
35 pkgPackageManager::pkgPackageManager(pkgDepCache
*pCache
) : Cache(*pCache
)
37 FileNames
= new string
[Cache
.Head().PackageCount
];
39 Debug
= _config
->FindB("Debug::pkgPackageManager",false);
42 // PM::PackageManager - Destructor /*{{{*/
43 // ---------------------------------------------------------------------
45 pkgPackageManager::~pkgPackageManager()
51 // PM::GetArchives - Queue the archives for download /*{{{*/
52 // ---------------------------------------------------------------------
54 bool pkgPackageManager::GetArchives(pkgAcquire
*Owner
,pkgSourceList
*Sources
,
57 if (CreateOrderList() == false)
61 _config
->FindB("PackageManager::UnpackAll",true) ?
62 List
->OrderUnpack() : List
->OrderCritical();
63 if (ordering
== false)
64 return _error
->Error("Internal ordering error");
66 for (pkgOrderList::iterator I
= List
->begin(); I
!= List
->end(); I
++)
68 PkgIterator
Pkg(Cache
,*I
);
69 FileNames
[Pkg
->ID
] = string();
71 // Skip packages to erase
72 if (Cache
[Pkg
].Delete() == true)
75 // Skip Packages that need configure only.
76 if (Pkg
.State() == pkgCache::PkgIterator::NeedsConfigure
&&
77 Cache
[Pkg
].Keep() == true)
80 // Skip already processed packages
81 if (List
->IsNow(Pkg
) == false)
84 new pkgAcqArchive(Owner
,Sources
,Recs
,Cache
[Pkg
].InstVerIter(Cache
),
91 // PM::FixMissing - Keep all missing packages /*{{{*/
92 // ---------------------------------------------------------------------
93 /* This is called to correct the installation when packages could not
95 bool pkgPackageManager::FixMissing()
97 pkgDepCache::ActionGroup
group(Cache
);
98 pkgProblemResolver
Resolve(&Cache
);
99 List
->SetFileList(FileNames
);
102 for (PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
104 if (List
->IsMissing(I
) == false)
107 // Okay, this file is missing and we need it. Mark it for keep
109 Cache
.MarkKeep(I
, false, false);
112 // We have to empty the list otherwise it will not have the new changes
119 // Now downgrade everything that is broken
120 return Resolve
.ResolveByKeep() == true && Cache
.BrokenCount() == 0;
123 // PM::ImmediateAdd - Add the immediate flag recursivly /*{{{*/
124 // ---------------------------------------------------------------------
125 /* This adds the immediate flag to the pkg and recursively to the
128 void pkgPackageManager::ImmediateAdd(PkgIterator I
, bool UseInstallVer
, unsigned const int &Depth
)
134 if(Cache
[I
].InstallVer
== 0)
136 D
= Cache
[I
].InstVerIter(Cache
).DependsList();
138 if (I
->CurrentVer
== 0)
140 D
= I
.CurrentVer().DependsList();
143 for ( /* nothing */ ; D
.end() == false; D
++)
144 if (D
->Type
== pkgCache::Dep::Depends
|| D
->Type
== pkgCache::Dep::PreDepends
)
146 if(!List
->IsFlag(D
.TargetPkg(), pkgOrderList::Immediate
))
149 clog
<< OutputInDepth(Depth
) << "ImmediateAdd(): Adding Immediate flag to " << D
.TargetPkg() << " cause of " << D
.DepType() << " " << I
.Name() << endl
;
150 List
->Flag(D
.TargetPkg(),pkgOrderList::Immediate
);
151 ImmediateAdd(D
.TargetPkg(), UseInstallVer
, Depth
+ 1);
157 // PM::CreateOrderList - Create the ordering class /*{{{*/
158 // ---------------------------------------------------------------------
159 /* This populates the ordering list with all the packages that are
161 bool pkgPackageManager::CreateOrderList()
167 List
= new pkgOrderList(&Cache
);
169 static bool const NoImmConfigure
= !_config
->FindB("APT::Immediate-Configure",true);
171 // Generate the list of affected packages and sort it
172 for (PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
174 // Ignore no-version packages
175 if (I
->VersionList
== 0)
178 // Mark the package and its dependends for immediate configuration
179 if (((I
->Flags
& pkgCache::Flag::Essential
) == pkgCache::Flag::Essential
||
180 (I
->Flags
& pkgCache::Flag::Important
) == pkgCache::Flag::Important
) &&
181 NoImmConfigure
== false)
184 clog
<< "CreateOrderList(): Adding Immediate flag for " << I
.Name() << endl
;
185 List
->Flag(I
,pkgOrderList::Immediate
);
187 // Look for other install packages to make immediate configurea
188 ImmediateAdd(I
, true);
190 // And again with the current version.
191 ImmediateAdd(I
, false);
195 if ((Cache
[I
].Keep() == true ||
196 Cache
[I
].InstVerIter(Cache
) == I
.CurrentVer()) &&
197 I
.State() == pkgCache::PkgIterator::NeedsNothing
&&
198 (Cache
[I
].iFlags
& pkgDepCache::ReInstall
) != pkgDepCache::ReInstall
&&
199 (I
.Purge() != false || Cache
[I
].Mode
!= pkgDepCache::ModeDelete
||
200 (Cache
[I
].iFlags
& pkgDepCache::Purge
) != pkgDepCache::Purge
))
203 // Append it to the list
210 // PM::DepAlwaysTrue - Returns true if this dep is irrelevent /*{{{*/
211 // ---------------------------------------------------------------------
212 /* The restriction on provides is to eliminate the case when provides
213 are transitioning between valid states [ie exim to smail] */
214 bool pkgPackageManager::DepAlwaysTrue(DepIterator D
)
216 if (D
.TargetPkg()->ProvidesList
!= 0)
219 if ((Cache
[D
] & pkgDepCache::DepInstall
) != 0 &&
220 (Cache
[D
] & pkgDepCache::DepNow
) != 0)
225 // PM::CheckRConflicts - Look for reverse conflicts /*{{{*/
226 // ---------------------------------------------------------------------
227 /* This looks over the reverses for a conflicts line that needs early
229 bool pkgPackageManager::CheckRConflicts(PkgIterator Pkg
,DepIterator D
,
232 for (;D
.end() == false; D
++)
234 if (D
->Type
!= pkgCache::Dep::Conflicts
&&
235 D
->Type
!= pkgCache::Dep::Obsoletes
)
238 // The package hasnt been changed
239 if (List
->IsNow(Pkg
) == false)
242 // Ignore self conflicts, ignore conflicts from irrelevent versions
243 if (D
.ParentPkg() == Pkg
|| D
.ParentVer() != D
.ParentPkg().CurrentVer())
246 if (Cache
.VS().CheckDep(Ver
,D
->CompareOp
,D
.TargetVer()) == false)
249 if (EarlyRemove(D
.ParentPkg()) == false)
250 return _error
->Error("Reverse conflicts early remove for package '%s' failed",
256 // PM::ConfigureAll - Run the all out configuration /*{{{*/
257 // ---------------------------------------------------------------------
258 /* This configures every package. It is assumed they are all unpacked and
259 that the final configuration is valid. */
260 bool pkgPackageManager::ConfigureAll()
262 pkgOrderList
OList(&Cache
);
264 // Populate the order list
265 for (pkgOrderList::iterator I
= List
->begin(); I
!= List
->end(); I
++)
266 if (List
->IsFlag(pkgCache::PkgIterator(Cache
,*I
),
267 pkgOrderList::UnPacked
) == true)
270 if (OList
.OrderConfigure() == false)
273 std::string
const conf
= _config
->Find("PackageManager::Configure","all");
274 bool const ConfigurePkgs
= (conf
== "all");
276 // Perform the configuring
277 for (pkgOrderList::iterator I
= OList
.begin(); I
!= OList
.end(); I
++)
279 PkgIterator
Pkg(Cache
,*I
);
281 if (ConfigurePkgs
== true && VerifyConfigure(Pkg
,OList
) == false)
284 List
->Flag(Pkg
,pkgOrderList::Configured
,pkgOrderList::States
);
290 // PM::SmartConfigure - Perform immediate configuration of the pkg /*{{{*/
291 // ---------------------------------------------------------------------
292 /* This routine scheduals the configuration of the given package and all
293 of it's dependents. */
294 bool pkgPackageManager::SmartConfigure(PkgIterator Pkg
)
297 clog
<< "SmartConfigure " << Pkg
.Name() << endl
;
299 pkgOrderList
OList(&Cache
);
301 if (DepAdd(OList
,Pkg
) == false)
304 static std::string
const conf
= _config
->Find("PackageManager::Configure","all");
305 static bool const ConfigurePkgs
= (conf
== "all" || conf
== "smart");
307 if (ConfigurePkgs
== true)
308 if (OList
.OrderConfigure() == false)
311 // Perform the configuring
312 for (pkgOrderList::iterator I
= OList
.begin(); I
!= OList
.end(); I
++)
314 PkgIterator
Pkg(Cache
,*I
);
316 if (ConfigurePkgs
== true && VerifyConfigure(Pkg
,OList
) == false)
319 List
->Flag(Pkg
,pkgOrderList::Configured
,pkgOrderList::States
);
322 if (Cache
[Pkg
].InstVerIter(Cache
)->MultiArch
== pkgCache::Version::Same
)
323 for (PkgIterator P
= Pkg
.Group().PackageList();
324 P
.end() == false; P
= Pkg
.Group().NextPkg(P
))
326 if (Pkg
== P
|| List
->IsFlag(P
,pkgOrderList::Configured
) == true ||
327 Cache
[P
].InstallVer
== 0 || (P
.CurrentVer() == Cache
[P
].InstallVer
&&
328 (Cache
[Pkg
].iFlags
& pkgDepCache::ReInstall
) != pkgDepCache::ReInstall
))
334 if (List
->IsFlag(Pkg
,pkgOrderList::Configured
) == false)
335 return _error
->Error(_("Could not perform immediate configuration on '%s'. "
336 "Please see man 5 apt.conf under APT::Immediate-Configure for details. (%d)"),Pkg
.Name(),1);
341 // PM::VerifyConfigure - Check configuration of dependancies /*{{{*/
342 // ---------------------------------------------------------------------
343 /* This routine checks that all a packages dependancies have been
344 configured, before it is going to be configured. If this gives a warning
345 on a virtual package, it means that the package thats providing it is not
347 bool pkgPackageManager::VerifyConfigure(PkgIterator Pkg
, pkgOrderList
&OList
)
350 clog
<< "VerifyConfigure " << Pkg
.Name() << endl
;
352 // If this is true at the end, then the package should not be configured
354 // This holds the the OR status of the previous dependancy
355 bool previousOr
=false;
357 // First iterate through the dependancies of Pkg
358 for (DepIterator D
= Cache
[Pkg
].InstVerIter(Cache
).DependsList(); D
.end() == false; D
++)
361 /* If the dependancy is of type Depends or PreDepends, we need to check it, but only if it is going to be
362 configured at some point */
363 if (D
->Type
== pkgCache::Dep::Depends
|| D
->Type
== pkgCache::Dep::PreDepends
) {
365 /* If the previous package and this package are OR dependancies, and the previous package satisfied the dependancy
366 then skip this dependancy as it is not relevent, this will repeat for the next package if the situation is the
368 if (previousOr
&& !error
) { // As error has not been reset, this refers to the previous dependancy
369 previousOr
= (D
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
;
376 // Check thorugh all possible versions of this dependancy (D)
377 SPtrArray
<Version
*> VList
= D
.AllTargets();
378 for (Version
**I
= VList
; *I
!= 0; I
++)
380 VerIterator
DepVer(Cache
,*I
);
381 PkgIterator DepPkg
= DepVer
.ParentPkg();
382 VerIterator
DepInstallVer(Cache
,Cache
[DepPkg
].InstallVer
);
384 if (DepPkg
.CurrentVer() == DepVer
&& !List
->IsFlag(DepPkg
,pkgOrderList::UnPacked
)) {
389 if (Cache
[DepPkg
].InstallVer
== DepVer
&&
390 (List
->IsFlag(DepPkg
,pkgOrderList::Configured
) || OList
.IsFlag(DepPkg
,pkgOrderList::InList
))) {
396 /* Only worry here if this package is a OR with the next, as even though this package does not satisfy the OR
397 the next one might */
398 if (error
&& !((D
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
)) {
399 _error
->Error("Package %s should not be configured because package %s is not configured",Pkg
.Name(),D
.TargetPkg().Name());
401 /* If the previous package is a OR but not this package, but there is still an error then fail as it will not
403 } else if (error
&& previousOr
&& !((D
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
)) {
404 _error
->Error("Package %s should not be configured because package %s (or any alternatives) are not configured",Pkg
.Name(),D
.TargetPkg().Name());
408 previousOr
= (D
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
;
416 // PM::VerifyAndConfigure - Check configuration of dependancies /*{{{*/
417 // ---------------------------------------------------------------------
418 /* This routine verifies if a package can be configured and if so
420 bool pkgPackageManager::VerifyAndConfigure(PkgIterator Pkg
, pkgOrderList
&OList
)
422 if (VerifyConfigure(Pkg
, OList
))
423 return Configure(Pkg
);
429 // PM::DepAdd - Add all dependents to the oder list /*{{{*/
430 // ---------------------------------------------------------------------
431 /* This recursively adds all dependents to the order list */
432 bool pkgPackageManager::DepAdd(pkgOrderList
&OList
,PkgIterator Pkg
,int Depth
)
434 if (OList
.IsFlag(Pkg
,pkgOrderList::Added
) == true)
436 if (List
->IsFlag(Pkg
,pkgOrderList::Configured
) == true)
438 if (List
->IsFlag(Pkg
,pkgOrderList::UnPacked
) == false)
442 std::clog
<< OutputInDepth(Depth
) << "DepAdd: " << Pkg
.Name() << std::endl
;
444 // Put the package on the list
445 OList
.push_back(Pkg
);
446 OList
.Flag(Pkg
,pkgOrderList::Added
);
449 // Check the dependencies to see if they are all satisfied.
451 for (DepIterator D
= Cache
[Pkg
].InstVerIter(Cache
).DependsList(); D
.end() == false;)
453 if (D
->Type
!= pkgCache::Dep::Depends
&& D
->Type
!= pkgCache::Dep::PreDepends
)
461 for (bool LastOR
= true; D
.end() == false && LastOR
== true; D
++)
463 LastOR
= (D
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
;
468 SPtrArray
<Version
*> VList
= D
.AllTargets();
469 for (Version
**I
= VList
; *I
!= 0 && Bad
== true; I
++)
471 VerIterator
Ver(Cache
,*I
);
472 PkgIterator Pkg
= Ver
.ParentPkg();
474 // See if the current version is ok
475 if (Pkg
.CurrentVer() == Ver
&& List
->IsNow(Pkg
) == true &&
476 Pkg
.State() == PkgIterator::NeedsNothing
)
482 std::clog
<< OutputInDepth(Depth
) << Pkg
.Name() << " NeedsNothing " << (Pkg
.State() == PkgIterator::NeedsNothing
) << " Unpacked " << List
->IsFlag(Pkg
,pkgOrderList::UnPacked
) << std::endl
;
484 // Not the install version
485 if (Cache
[Pkg
].InstallVer
!= *I
||
486 (Cache
[Pkg
].Keep() == true && Pkg
.State() == PkgIterator::NeedsNothing
))
489 if (List
->IsFlag(Pkg
,pkgOrderList::UnPacked
) == true)
490 Bad
= !DepAdd(OList
,Pkg
,Depth
);
491 if (List
->IsFlag(Pkg
,pkgOrderList::Configured
) == true)
499 std::clog
<< OutputInDepth(Depth
) << "DepAdd FAILS on: " << Pkg
.Name() << std::endl
;
500 OList
.Flag(Pkg
,0,pkgOrderList::Added
);
511 // PM::EarlyRemove - Perform removal of packages before their time /*{{{*/
512 // ---------------------------------------------------------------------
513 /* This is called to deal with conflicts arising from unpacking */
514 bool pkgPackageManager::EarlyRemove(PkgIterator Pkg
)
516 if (List
->IsNow(Pkg
) == false)
519 // Already removed it
520 if (List
->IsFlag(Pkg
,pkgOrderList::Removed
) == true)
523 // Woops, it will not be re-installed!
524 if (List
->IsFlag(Pkg
,pkgOrderList::InList
) == false)
527 // Essential packages get special treatment
528 bool IsEssential
= false;
529 if ((Pkg
->Flags
& pkgCache::Flag::Essential
) != 0)
532 /* Check for packages that are the dependents of essential packages and
534 if (Pkg
->CurrentVer
!= 0)
536 for (DepIterator D
= Pkg
.RevDependsList(); D
.end() == false &&
537 IsEssential
== false; D
++)
538 if (D
->Type
== pkgCache::Dep::Depends
|| D
->Type
== pkgCache::Dep::PreDepends
)
539 if ((D
.ParentPkg()->Flags
& pkgCache::Flag::Essential
) != 0)
543 if (IsEssential
== true)
545 if (_config
->FindB("APT::Force-LoopBreak",false) == false)
546 return _error
->Error(_("This installation run will require temporarily "
547 "removing the essential package %s due to a "
548 "Conflicts/Pre-Depends loop. This is often bad, "
549 "but if you really want to do it, activate the "
550 "APT::Force-LoopBreak option."),Pkg
.Name());
553 bool Res
= SmartRemove(Pkg
);
554 if (Cache
[Pkg
].Delete() == false)
555 List
->Flag(Pkg
,pkgOrderList::Removed
,pkgOrderList::States
);
560 // PM::SmartRemove - Removal Helper /*{{{*/
561 // ---------------------------------------------------------------------
563 bool pkgPackageManager::SmartRemove(PkgIterator Pkg
)
565 if (List
->IsNow(Pkg
) == false)
568 List
->Flag(Pkg
,pkgOrderList::Configured
,pkgOrderList::States
);
570 return Remove(Pkg
,(Cache
[Pkg
].iFlags
& pkgDepCache::Purge
) == pkgDepCache::Purge
);
574 // PM::SmartUnPack - Install helper /*{{{*/
575 // ---------------------------------------------------------------------
576 /* This performs the task of handling pre-depends. */
577 bool pkgPackageManager::SmartUnPack(PkgIterator Pkg
)
579 return SmartUnPack(Pkg
, true);
581 bool pkgPackageManager::SmartUnPack(PkgIterator Pkg
, bool const Immediate
)
584 clog
<< "SmartUnPack " << Pkg
.Name() << endl
;
586 // Check if it is already unpacked
587 if (Pkg
.State() == pkgCache::PkgIterator::NeedsConfigure
&&
588 Cache
[Pkg
].Keep() == true)
590 List
->Flag(Pkg
,pkgOrderList::UnPacked
,pkgOrderList::States
);
591 if (Immediate
== true &&
592 List
->IsFlag(Pkg
,pkgOrderList::Immediate
) == true)
593 if (SmartConfigure(Pkg
) == false)
594 return _error
->Error(_("Could not perform immediate configuration on already unpacked '%s'. "
595 "Please see man 5 apt.conf under APT::Immediate-Configure for details."),Pkg
.Name());
599 VerIterator
const instVer
= Cache
[Pkg
].InstVerIter(Cache
);
601 /* See if this packages install version has any predependencies
602 that are not met by 'now' packages. */
603 for (DepIterator D
= instVer
.DependsList();
606 // Compute a single dependency element (glob or)
607 pkgCache::DepIterator Start
;
608 pkgCache::DepIterator End
;
611 while (End
->Type
== pkgCache::Dep::PreDepends
)
614 clog
<< "PreDepends order for " << Pkg
.Name() << std::endl
;
616 // Look for possible ok targets.
617 SPtrArray
<Version
*> VList
= Start
.AllTargets();
619 for (Version
**I
= VList
; *I
!= 0 && Bad
== true; I
++)
621 VerIterator
Ver(Cache
,*I
);
622 PkgIterator Pkg
= Ver
.ParentPkg();
624 // See if the current version is ok
625 if (Pkg
.CurrentVer() == Ver
&& List
->IsNow(Pkg
) == true &&
626 Pkg
.State() == PkgIterator::NeedsNothing
)
630 clog
<< "Found ok package " << Pkg
.Name() << endl
;
635 // Look for something that could be configured.
636 for (Version
**I
= VList
; *I
!= 0 && Bad
== true; I
++)
638 VerIterator
Ver(Cache
,*I
);
639 PkgIterator Pkg
= Ver
.ParentPkg();
641 // Not the install version
642 if (Cache
[Pkg
].InstallVer
!= *I
||
643 (Cache
[Pkg
].Keep() == true && Pkg
.State() == PkgIterator::NeedsNothing
))
647 clog
<< "Trying to SmartConfigure " << Pkg
.Name() << endl
;
648 Bad
= !SmartConfigure(Pkg
);
651 /* If this or element did not match then continue on to the
652 next or element until a matching element is found */
655 // This triggers if someone make a pre-depends/depend loop.
657 return _error
->Error("Couldn't configure pre-depend %s for %s, "
658 "probably a dependency cycle.",
659 End
.TargetPkg().Name(),Pkg
.Name());
666 if (End
->Type
== pkgCache::Dep::Conflicts
||
667 End
->Type
== pkgCache::Dep::Obsoletes
)
669 /* Look for conflicts. Two packages that are both in the install
670 state cannot conflict so we don't check.. */
671 SPtrArray
<Version
*> VList
= End
.AllTargets();
672 for (Version
**I
= VList
; *I
!= 0; I
++)
674 VerIterator
Ver(Cache
,*I
);
675 PkgIterator Pkg
= Ver
.ParentPkg();
677 // See if the current version is conflicting
678 if (Pkg
.CurrentVer() == Ver
&& List
->IsNow(Pkg
) == true)
680 if (EarlyRemove(Pkg
) == false)
681 return _error
->Error("Internal Error, Could not early remove %s",Pkg
.Name());
687 if (End
->Type
== pkgCache::Dep::DpkgBreaks
) {
688 SPtrArray
<Version
*> VList
= End
.AllTargets();
689 for (Version
**I
= VList
; *I
!= 0; I
++)
691 VerIterator
Ver(Cache
,*I
);
692 PkgIterator Pkg
= Ver
.ParentPkg();
693 // Found a break, so unpack the package
694 if (List
->IsNow(Pkg
)) {
695 SmartUnPack(Pkg
, false);
701 // Check for reverse conflicts.
702 if (CheckRConflicts(Pkg
,Pkg
.RevDependsList(),
703 instVer
.VerStr()) == false)
706 for (PrvIterator P
= instVer
.ProvidesList();
707 P
.end() == false; P
++)
708 CheckRConflicts(Pkg
,P
.ParentPkg().RevDependsList(),P
.ProvideVersion());
710 List
->Flag(Pkg
,pkgOrderList::UnPacked
,pkgOrderList::States
);
712 if (instVer
->MultiArch
== pkgCache::Version::Same
)
713 for (PkgIterator P
= Pkg
.Group().PackageList();
714 P
.end() == false; P
= Pkg
.Group().NextPkg(P
))
716 if (Pkg
== P
|| List
->IsFlag(P
,pkgOrderList::UnPacked
) == true ||
717 Cache
[P
].InstallVer
== 0 || (P
.CurrentVer() == Cache
[P
].InstallVer
&&
718 (Cache
[Pkg
].iFlags
& pkgDepCache::ReInstall
) != pkgDepCache::ReInstall
))
720 SmartUnPack(P
, false);
723 if(Install(Pkg
,FileNames
[Pkg
->ID
]) == false)
726 // Perform immedate configuration of the package.
727 if (Immediate
== true &&
728 List
->IsFlag(Pkg
,pkgOrderList::Immediate
) == true)
729 if (SmartConfigure(Pkg
) == false)
730 return _error
->Error(_("Could not perform immediate configuration on '%s'. "
731 "Please see man 5 apt.conf under APT::Immediate-Configure for details. (%d)"),Pkg
.Name(),2);
736 // PM::OrderInstall - Installation ordering routine /*{{{*/
737 // ---------------------------------------------------------------------
739 pkgPackageManager::OrderResult
pkgPackageManager::OrderInstall()
741 if (CreateOrderList() == false)
747 clog
<< "Beginning to order" << endl
;
749 bool const ordering
=
750 _config
->FindB("PackageManager::UnpackAll",true) ?
751 List
->OrderUnpack(FileNames
) : List
->OrderCritical();
752 if (ordering
== false)
754 _error
->Error("Internal ordering error");
759 clog
<< "Done ordering" << endl
;
761 bool DoneSomething
= false;
762 for (pkgOrderList::iterator I
= List
->begin(); I
!= List
->end(); I
++)
764 PkgIterator
Pkg(Cache
,*I
);
766 if (List
->IsNow(Pkg
) == false)
769 clog
<< "Skipping already done " << Pkg
.Name() << endl
;
773 if (List
->IsMissing(Pkg
) == true)
776 clog
<< "Sequence completed at " << Pkg
.Name() << endl
;
777 if (DoneSomething
== false)
779 _error
->Error("Internal Error, ordering was unable to handle the media swap");
786 if (Cache
[Pkg
].Keep() == true &&
787 Pkg
.State() == pkgCache::PkgIterator::NeedsNothing
&&
788 (Cache
[Pkg
].iFlags
& pkgDepCache::ReInstall
) != pkgDepCache::ReInstall
)
790 _error
->Error("Internal Error, trying to manipulate a kept package (%s)",Pkg
.Name());
794 // Perform a delete or an install
795 if (Cache
[Pkg
].Delete() == true)
797 if (SmartRemove(Pkg
) == false)
801 if (SmartUnPack(Pkg
) == false)
803 DoneSomething
= true;
806 // Final run through the configure phase
807 if (ConfigureAll() == false)
811 for (pkgOrderList::iterator I
= List
->begin(); I
!= List
->end(); I
++)
813 if (List
->IsFlag(*I
,pkgOrderList::Configured
) == false)
815 _error
->Error("Internal error, packages left unconfigured. %s",
816 PkgIterator(Cache
,*I
).Name());
824 // PM::DoInstallPostFork - Does install part that happens after the fork /*{{{*/
825 // ---------------------------------------------------------------------
826 pkgPackageManager::OrderResult
827 pkgPackageManager::DoInstallPostFork(int statusFd
)
830 // FIXME: use SetCloseExec here once it taught about throwing
831 // exceptions instead of doing _exit(100) on failure
832 fcntl(statusFd
,F_SETFD
,FD_CLOEXEC
);
833 bool goResult
= Go(statusFd
);
834 if(goResult
== false)
840 // PM::DoInstall - Does the installation /*{{{*/
841 // ---------------------------------------------------------------------
842 /* This uses the filenames in FileNames and the information in the
843 DepCache to perform the installation of packages.*/
844 pkgPackageManager::OrderResult
pkgPackageManager::DoInstall(int statusFd
)
846 if(DoInstallPreFork() == Failed
)
849 return DoInstallPostFork(statusFd
);