]>
Commit | Line | Data |
---|---|---|
03e39e59 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
233b185f | 3 | // $Id: dpkgpm.h,v 1.8 2001/05/07 05:05:13 jgg Exp $ |
03e39e59 AL |
4 | /* ###################################################################### |
5 | ||
6 | DPKG Package Manager - Provide an interface to dpkg | |
7 | ||
8 | ##################################################################### */ | |
9 | /*}}}*/ | |
03e39e59 AL |
10 | #ifndef PKGLIB_DPKGPM_H |
11 | #define PKGLIB_DPKGPM_H | |
12 | ||
03e39e59 AL |
13 | #include <apt-pkg/packagemanager.h> |
14 | #include <vector> | |
09fa2df2 | 15 | #include <map> |
b2e465d6 | 16 | #include <stdio.h> |
03e39e59 | 17 | |
233b185f | 18 | using std::vector; |
09fa2df2 MV |
19 | using std::map; |
20 | ||
233b185f | 21 | |
03e39e59 AL |
22 | class pkgDPkgPM : public pkgPackageManager |
23 | { | |
6191b008 | 24 | private: |
6191b008 | 25 | |
9983591d OS |
26 | bool stdin_is_dev_null; |
27 | ||
09fa2df2 MV |
28 | // the buffer we use for the dpkg status-fd reading |
29 | char dpkgbuf[1024]; | |
30 | int dpkgbuf_pos; | |
1ba38171 | 31 | FILE *term_out; |
9169c871 MV |
32 | FILE *history_out; |
33 | string dpkg_error; | |
34 | ||
eb6f9bac DK |
35 | /** \brief record the disappear action and handle accordingly |
36 | ||
37 | dpkg let packages disappear then they have no files any longer and | |
38 | nothing depends on them. We need to collect this as dpkg as well as | |
39 | APT doesn't know beforehand that the package will disappear, so the | |
40 | only possible option is to tell the user afterwards about it. | |
41 | To enhance the experience we also try to forward the auto-install | |
42 | flag so the disappear-causer(s) are not autoremoved next time - | |
43 | for the transfer to happen the disappeared version needs to depend | |
44 | on the package the flag should be forwarded to and this package | |
45 | needs to declare a Replaces on the disappeared package. | |
46 | \param pkgname Name of the package that disappeared | |
47 | */ | |
48 | void handleDisappearAction(string const &pkgname); | |
49 | ||
ff56e980 | 50 | protected: |
5e457a93 | 51 | int pkgFailures; |
ff56e980 | 52 | |
09fa2df2 | 53 | // progress reporting |
2a7e07c7 MV |
54 | struct DpkgState |
55 | { | |
56 | const char *state; // the dpkg state (e.g. "unpack") | |
57 | const char *str; // the human readable translation of the state | |
58 | }; | |
09fa2df2 MV |
59 | |
60 | // the dpkg states that the pkg will run through, the string is | |
61 | // the package, the vector contains the dpkg states that the package | |
62 | // will go through | |
63 | map<string,vector<struct DpkgState> > PackageOps; | |
64 | // the dpkg states that are already done; the string is the package | |
65 | // the int is the state that is already done (e.g. a package that is | |
66 | // going to be install is already in state "half-installed") | |
4b7c5a3f | 67 | map<string,unsigned int> PackageOpsDone; |
73e0ee1e | 68 | |
09fa2df2 | 69 | // progress reporting |
4b7c5a3f MV |
70 | unsigned int PackagesDone; |
71 | unsigned int PackagesTotal; | |
09fa2df2 | 72 | |
03e39e59 AL |
73 | struct Item |
74 | { | |
5e312de7 | 75 | enum Ops {Install, Configure, Remove, Purge, ConfigurePending, TriggersPending} Op; |
03e39e59 AL |
76 | string File; |
77 | PkgIterator Pkg; | |
b2e465d6 | 78 | Item(Ops Op,PkgIterator Pkg,string File = "") : Op(Op), |
03e39e59 AL |
79 | File(File), Pkg(Pkg) {}; |
80 | Item() {}; | |
81 | ||
82 | }; | |
83 | vector<Item> List; | |
6dd55be7 AL |
84 | |
85 | // Helpers | |
db0c350f | 86 | bool RunScriptsWithPkgs(const char *Cnf); |
b2e465d6 | 87 | bool SendV2Pkgs(FILE *F); |
6cb1060b | 88 | void WriteHistoryTag(string const &tag, string value); |
afb1e2e3 | 89 | |
5e457a93 MV |
90 | // apport integration |
91 | void WriteApportReport(const char *pkgpath, const char *errormsg); | |
92 | ||
2e1715ea MV |
93 | // dpkg log |
94 | bool OpenLog(); | |
95 | bool CloseLog(); | |
96 | ||
ceabc520 MV |
97 | // input processing |
98 | void DoStdin(int master); | |
1ba38171 | 99 | void DoTerminalPty(int master); |
09fa2df2 MV |
100 | void DoDpkgStatusFd(int statusfd, int OutStatusFd); |
101 | void ProcessDpkgStatusLine(int OutStatusFd, char *line); | |
6191b008 | 102 | |
03e39e59 AL |
103 | // The Actuall installation implementation |
104 | virtual bool Install(PkgIterator Pkg,string File); | |
105 | virtual bool Configure(PkgIterator Pkg); | |
fc4b5c9f | 106 | virtual bool Remove(PkgIterator Pkg,bool Purge = false); |
2a7e07c7 | 107 | virtual bool Go(int StatusFd=-1); |
281daf46 | 108 | virtual void Reset(); |
03e39e59 AL |
109 | |
110 | public: | |
111 | ||
b2e465d6 | 112 | pkgDPkgPM(pkgDepCache *Cache); |
03e39e59 AL |
113 | virtual ~pkgDPkgPM(); |
114 | }; | |
115 | ||
116 | #endif |