1 // -*- mode: cpp; mode: fold -*-
3 // $Id: packagemanager.h,v 1.14 2001/05/07 04:24:08 jgg Exp $
4 /* ######################################################################
6 Package Manager - Abstacts the package manager
9 - Aquiration of archives (stores the list of final file names)
10 - Sorting of operations
11 - Invokation of package manager
13 This is the final stage when the package cache entities get converted
14 into file names and the state stored in a DepCache is transformed
15 into a series of operations.
17 In the final scheme of things this may serve as a director class to
18 access the actual install methods based on the file type being
21 ##################################################################### */
23 #ifndef PKGLIB_PACKAGEMANAGER_H
24 #define PKGLIB_PACKAGEMANAGER_H
26 #include <apt-pkg/pkgcache.h>
27 #include <apt-pkg/init.h>
28 #include <apt-pkg/macros.h>
33 #ifndef APT_10_CLEANER_HEADERS
34 #include <apt-pkg/install-progress.h>
37 #ifndef APT_8_CLEANER_HEADERS
38 #include <apt-pkg/depcache.h>
54 class pkgPackageManager
: protected pkgCache::Namespace
58 enum OrderResult
{Completed
,Failed
,Incomplete
};
59 static bool SigINTStop
;
62 std::string
*FileNames
;
69 /** \brief saves packages dpkg let disappear
71 This way APT can retreat from trying to configure these
72 packages later on and a frontend can choose to display a
73 notice to inform the user about these disappears.
75 std::set
<std::string
> disappearedPkgs
;
77 void ImmediateAdd(PkgIterator P
, bool UseInstallVer
, unsigned const int &Depth
= 0);
78 virtual OrderResult
OrderInstall();
79 bool CheckRConflicts(PkgIterator Pkg
,DepIterator Dep
,const char *Ver
);
80 bool CreateOrderList();
83 bool DepAlwaysTrue(DepIterator D
) APT_PURE
;
87 bool SmartConfigure(PkgIterator Pkg
, int const Depth
) APT_MUSTCHECK
;
88 //FIXME: merge on abi break
89 bool SmartUnPack(PkgIterator Pkg
) APT_MUSTCHECK
;
90 bool SmartUnPack(PkgIterator Pkg
, bool const Immediate
, int const Depth
) APT_MUSTCHECK
;
91 bool SmartRemove(PkgIterator Pkg
) APT_MUSTCHECK
;
92 bool EarlyRemove(PkgIterator Pkg
, DepIterator
const * const Dep
) APT_MUSTCHECK
;
93 APT_DEPRECATED
bool EarlyRemove(PkgIterator Pkg
) APT_MUSTCHECK
;
95 // The Actual installation implementation
96 virtual bool Install(PkgIterator
/*Pkg*/,std::string
/*File*/) {return false;};
97 virtual bool Configure(PkgIterator
/*Pkg*/) {return false;};
98 virtual bool Remove(PkgIterator
/*Pkg*/,bool /*Purge*/=false) {return false;};
99 #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13)
100 virtual bool Go(APT::Progress::PackageManager
* /*progress*/) {return true;};
102 virtual bool Go(int /*statusFd*/=-1) {return true;};
105 virtual void Reset() {};
107 // the result of the operation
112 // Main action members
113 bool GetArchives(pkgAcquire
*Owner
,pkgSourceList
*Sources
,
116 // Do the installation
117 #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13)
118 OrderResult
DoInstall(APT::Progress::PackageManager
*progress
);
120 APT_DEPRECATED OrderResult
DoInstall(int statusFd
=-1);
122 OrderResult
DoInstall(int statusFd
=-1);
125 // stuff that needs to be done before the fork() of a library that
127 OrderResult
DoInstallPreFork() {
128 Res
= OrderInstall();
131 #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13)
132 // stuff that needs to be done after the fork
133 OrderResult
DoInstallPostFork(APT::Progress::PackageManager
*progress
);
135 APT_DEPRECATED OrderResult
DoInstallPostFork(int statusFd
=-1);
137 OrderResult
DoInstallPostFork(int statusFd
=-1);
143 /** \brief returns all packages dpkg let disappear */
144 inline std::set
<std::string
> GetDisappearedPackages() { return disappearedPkgs
; };
146 pkgPackageManager(pkgDepCache
*Cache
);
147 virtual ~pkgPackageManager();
150 enum APT_HIDDEN SmartAction
{ UNPACK_IMMEDIATE
, UNPACK
, CONFIGURE
};
151 APT_HIDDEN
bool NonLoopingSmart(SmartAction
const action
, pkgCache::PkgIterator
&Pkg
,
152 pkgCache::PkgIterator DepPkg
, int const Depth
, bool const PkgLoop
,
153 bool * const Bad
, bool * const Changed
) APT_MUSTCHECK
;