]>
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 | ||
3b1b0f29 | 26 | #include <apt-pkg/macros.h> |
472ff00e | 27 | #include <apt-pkg/pkgcache.h> |
af36becc | 28 | #include <apt-pkg/install-progress.h> |
6c139d6e AL |
29 | |
30 | #include <string> | |
e23e6733 | 31 | #include <iostream> |
642ebc1a | 32 | #include <set> |
6c139d6e | 33 | |
a4f6bdc8 | 34 | #ifndef APT_8_CLEANER_HEADERS |
b9dadc24 | 35 | #include <apt-pkg/depcache.h> |
a4f6bdc8 DK |
36 | using std::string; |
37 | #endif | |
38 | ||
03e39e59 | 39 | class pkgAcquire; |
6c139d6e AL |
40 | class pkgDepCache; |
41 | class pkgSourceList; | |
42 | class pkgOrderList; | |
03e39e59 | 43 | class pkgRecords; |
31f97d7b | 44 | |
e6ad8031 | 45 | |
b2e465d6 | 46 | class pkgPackageManager : protected pkgCache::Namespace |
6c139d6e | 47 | { |
281daf46 AL |
48 | public: |
49 | ||
50 | enum OrderResult {Completed,Failed,Incomplete}; | |
590f1923 | 51 | static bool SigINTStop; |
281daf46 | 52 | |
6c139d6e | 53 | protected: |
8f3ba4e8 | 54 | std::string *FileNames; |
6c139d6e AL |
55 | pkgDepCache &Cache; |
56 | pkgOrderList *List; | |
30e1eab5 | 57 | bool Debug; |
b684d8c7 | 58 | bool NoImmConfigure; |
a6c8798a | 59 | bool ImmConfigureAll; |
642ebc1a DK |
60 | |
61 | /** \brief saves packages dpkg let disappear | |
62 | ||
63 | This way APT can retreat from trying to configure these | |
64 | packages later on and a frontend can choose to display a | |
65 | notice to inform the user about these disappears. | |
66 | */ | |
67 | std::set<std::string> disappearedPkgs; | |
68 | ||
d183f850 | 69 | void ImmediateAdd(PkgIterator P, bool UseInstallVer, unsigned const int &Depth = 0); |
756458fb | 70 | virtual OrderResult OrderInstall(); |
6c139d6e | 71 | bool CheckRConflicts(PkgIterator Pkg,DepIterator Dep,const char *Ver); |
7a1b1f8b | 72 | bool CreateOrderList(); |
6c139d6e AL |
73 | |
74 | // Analysis helpers | |
75 | bool DepAlwaysTrue(DepIterator D); | |
76 | ||
77 | // Install helpers | |
78 | bool ConfigureAll(); | |
d41d0e01 | 79 | bool SmartConfigure(PkgIterator Pkg, int const Depth); |
d77b985a | 80 | //FIXME: merge on abi break |
6c139d6e | 81 | bool SmartUnPack(PkgIterator Pkg); |
d41d0e01 | 82 | bool SmartUnPack(PkgIterator Pkg, bool const Immediate, int const Depth); |
6c139d6e | 83 | bool SmartRemove(PkgIterator Pkg); |
4264ebeb | 84 | bool EarlyRemove(PkgIterator Pkg); |
6c139d6e | 85 | |
b2e465d6 | 86 | // The Actual installation implementation |
8f3ba4e8 | 87 | virtual bool Install(PkgIterator /*Pkg*/,std::string /*File*/) {return false;}; |
db5c1b54 AL |
88 | virtual bool Configure(PkgIterator /*Pkg*/) {return false;}; |
89 | virtual bool Remove(PkgIterator /*Pkg*/,bool /*Purge*/=false) {return false;}; | |
e6ad8031 | 90 | virtual bool Go(APT::Progress::PackageManager *progress) {return true;}; |
281daf46 | 91 | virtual void Reset() {}; |
3c9b111f MV |
92 | |
93 | // the result of the operation | |
94 | OrderResult Res; | |
95 | ||
6c139d6e | 96 | public: |
281daf46 | 97 | |
b50b2c97 | 98 | // Main action members |
03e39e59 AL |
99 | bool GetArchives(pkgAcquire *Owner,pkgSourceList *Sources, |
100 | pkgRecords *Recs); | |
3c9b111f MV |
101 | |
102 | // Do the installation | |
e6ad8031 | 103 | OrderResult DoInstall(APT::Progress::PackageManager *progress); |
e6ad8031 | 104 | // compat |
3b1b0f29 | 105 | __deprecated OrderResult DoInstall(int statusFd=-1); |
3c9b111f MV |
106 | |
107 | // stuff that needs to be done before the fork() of a library that | |
108 | // uses apt | |
109 | OrderResult DoInstallPreFork() { | |
110 | Res = OrderInstall(); | |
111 | return Res; | |
112 | }; | |
113 | ||
114 | // stuff that needs to be done after the fork | |
e6ad8031 | 115 | OrderResult DoInstallPostFork(APT::Progress::PackageManager *progress); |
3b1b0f29 MV |
116 | // compat |
117 | __deprecated OrderResult DoInstallPostFork(int statusFd=-1); | |
118 | ||
119 | // ? | |
6c139d6e | 120 | bool FixMissing(); |
642ebc1a DK |
121 | |
122 | /** \brief returns all packages dpkg let disappear */ | |
123 | inline std::set<std::string> GetDisappearedPackages() { return disappearedPkgs; }; | |
124 | ||
b2e465d6 | 125 | pkgPackageManager(pkgDepCache *Cache); |
6c139d6e AL |
126 | virtual ~pkgPackageManager(); |
127 | }; | |
128 | ||
129 | #endif |