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