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