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