]>
Commit | Line | Data |
---|---|---|
6c139d6e AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
0a843901 | 3 | // $Id: packagemanager.h,v 1.14 2001/05/07 04:24:08 jgg Exp $ |
6c139d6e AL |
4 | /* ###################################################################### |
5 | ||
6 | Package Manager - Abstacts the package manager | |
7 | ||
8 | Three steps are | |
9 | - Aquiration of archives (stores the list of final file names) | |
10 | - Sorting of operations | |
6fc33863 | 11 | - Invokation of package manager |
6c139d6e AL |
12 | |
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. | |
16 | ||
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 | |
19 | installed. | |
20 | ||
21 | ##################################################################### */ | |
22 | /*}}}*/ | |
6c139d6e AL |
23 | #ifndef PKGLIB_PACKAGEMANAGER_H |
24 | #define PKGLIB_PACKAGEMANAGER_H | |
25 | ||
472ff00e | 26 | #include <apt-pkg/pkgcache.h> |
bd5f39b3 | 27 | #include <apt-pkg/init.h> |
453b82a3 | 28 | #include <apt-pkg/macros.h> |
6c139d6e AL |
29 | |
30 | #include <string> | |
642ebc1a | 31 | #include <set> |
6c139d6e | 32 | |
453b82a3 DK |
33 | #ifndef APT_10_CLEANER_HEADERS |
34 | #include <apt-pkg/install-progress.h> | |
35 | #include <iostream> | |
36 | #endif | |
a4f6bdc8 | 37 | #ifndef APT_8_CLEANER_HEADERS |
b9dadc24 | 38 | #include <apt-pkg/depcache.h> |
a4f6bdc8 DK |
39 | using std::string; |
40 | #endif | |
41 | ||
03e39e59 | 42 | class pkgAcquire; |
6c139d6e AL |
43 | class pkgDepCache; |
44 | class pkgSourceList; | |
45 | class pkgOrderList; | |
03e39e59 | 46 | class pkgRecords; |
b58f28d4 MV |
47 | namespace APT { |
48 | namespace Progress { | |
49 | class PackageManager; | |
bf3ad91f DK |
50 | } |
51 | } | |
31f97d7b | 52 | |
e6ad8031 | 53 | |
b2e465d6 | 54 | class pkgPackageManager : protected pkgCache::Namespace |
6c139d6e | 55 | { |
281daf46 AL |
56 | public: |
57 | ||
58 | enum OrderResult {Completed,Failed,Incomplete}; | |
590f1923 | 59 | static bool SigINTStop; |
281daf46 | 60 | |
6c139d6e | 61 | protected: |
8f3ba4e8 | 62 | std::string *FileNames; |
6c139d6e AL |
63 | pkgDepCache &Cache; |
64 | pkgOrderList *List; | |
30e1eab5 | 65 | bool Debug; |
b684d8c7 | 66 | bool NoImmConfigure; |
a6c8798a | 67 | bool ImmConfigureAll; |
642ebc1a DK |
68 | |
69 | /** \brief saves packages dpkg let disappear | |
70 | ||
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. | |
74 | */ | |
75 | std::set<std::string> disappearedPkgs; | |
76 | ||
d183f850 | 77 | void ImmediateAdd(PkgIterator P, bool UseInstallVer, unsigned const int &Depth = 0); |
756458fb | 78 | virtual OrderResult OrderInstall(); |
6c139d6e | 79 | bool CheckRConflicts(PkgIterator Pkg,DepIterator Dep,const char *Ver); |
7a1b1f8b | 80 | bool CreateOrderList(); |
6c139d6e AL |
81 | |
82 | // Analysis helpers | |
a02db58f | 83 | bool DepAlwaysTrue(DepIterator D) APT_PURE; |
6c139d6e AL |
84 | |
85 | // Install helpers | |
86 | bool ConfigureAll(); | |
71e7a0f3 | 87 | bool SmartConfigure(PkgIterator Pkg, int const Depth) APT_MUSTCHECK; |
d77b985a | 88 | //FIXME: merge on abi break |
71e7a0f3 DK |
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; | |
0eb4af9d DK |
92 | bool EarlyRemove(PkgIterator Pkg, DepIterator const * const Dep) APT_MUSTCHECK; |
93 | APT_DEPRECATED bool EarlyRemove(PkgIterator Pkg) APT_MUSTCHECK; | |
94 | ||
b2e465d6 | 95 | // The Actual installation implementation |
8f3ba4e8 | 96 | virtual bool Install(PkgIterator /*Pkg*/,std::string /*File*/) {return false;}; |
db5c1b54 AL |
97 | virtual bool Configure(PkgIterator /*Pkg*/) {return false;}; |
98 | virtual bool Remove(PkgIterator /*Pkg*/,bool /*Purge*/=false) {return false;}; | |
bd5f39b3 | 99 | #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) |
65512241 | 100 | virtual bool Go(APT::Progress::PackageManager * /*progress*/) {return true;}; |
9eb0042b | 101 | virtual bool Go(int /*statusFd*/=-1) {return true;}; |
bd5f39b3 | 102 | #else |
65512241 | 103 | virtual bool Go(int /*statusFd*/=-1) {return true;}; |
bd5f39b3 MV |
104 | #endif |
105 | ||
281daf46 | 106 | virtual void Reset() {}; |
3c9b111f MV |
107 | |
108 | // the result of the operation | |
109 | OrderResult Res; | |
110 | ||
6c139d6e | 111 | public: |
281daf46 | 112 | |
b50b2c97 | 113 | // Main action members |
03e39e59 AL |
114 | bool GetArchives(pkgAcquire *Owner,pkgSourceList *Sources, |
115 | pkgRecords *Recs); | |
3c9b111f MV |
116 | |
117 | // Do the installation | |
bd5f39b3 | 118 | #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) |
e6ad8031 | 119 | OrderResult DoInstall(APT::Progress::PackageManager *progress); |
e6ad8031 | 120 | // compat |
453b82a3 | 121 | APT_DEPRECATED OrderResult DoInstall(int statusFd=-1); |
bd5f39b3 MV |
122 | #else |
123 | OrderResult DoInstall(int statusFd=-1); | |
124 | #endif | |
3c9b111f MV |
125 | |
126 | // stuff that needs to be done before the fork() of a library that | |
127 | // uses apt | |
128 | OrderResult DoInstallPreFork() { | |
129 | Res = OrderInstall(); | |
130 | return Res; | |
131 | }; | |
bd5f39b3 | 132 | #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) |
3c9b111f | 133 | // stuff that needs to be done after the fork |
e6ad8031 | 134 | OrderResult DoInstallPostFork(APT::Progress::PackageManager *progress); |
3b1b0f29 | 135 | // compat |
453b82a3 | 136 | APT_DEPRECATED OrderResult DoInstallPostFork(int statusFd=-1); |
bd5f39b3 MV |
137 | #else |
138 | OrderResult DoInstallPostFork(int statusFd=-1); | |
139 | #endif | |
3b1b0f29 MV |
140 | |
141 | // ? | |
6c139d6e | 142 | bool FixMissing(); |
642ebc1a DK |
143 | |
144 | /** \brief returns all packages dpkg let disappear */ | |
145 | inline std::set<std::string> GetDisappearedPackages() { return disappearedPkgs; }; | |
146 | ||
b2e465d6 | 147 | pkgPackageManager(pkgDepCache *Cache); |
6c139d6e | 148 | virtual ~pkgPackageManager(); |
0eb4af9d DK |
149 | |
150 | private: | |
151 | enum APT_HIDDEN SmartAction { UNPACK_IMMEDIATE, UNPACK, CONFIGURE }; | |
152 | APT_HIDDEN bool NonLoopingSmart(SmartAction const action, pkgCache::PkgIterator &Pkg, | |
153 | pkgCache::PkgIterator DepPkg, int const Depth, bool const PkgLoop, | |
154 | bool * const Bad, bool * const Changed) APT_MUSTCHECK; | |
6c139d6e AL |
155 | }; |
156 | ||
157 | #endif |