]>
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 | |
09fa2df2 MV |
26 | // the buffer we use for the dpkg status-fd reading |
27 | char dpkgbuf[1024]; | |
28 | int dpkgbuf_pos; | |
2a7e07c7 | 29 | |
ff56e980 MV |
30 | protected: |
31 | ||
09fa2df2 | 32 | // progress reporting |
2a7e07c7 MV |
33 | struct DpkgState |
34 | { | |
35 | const char *state; // the dpkg state (e.g. "unpack") | |
36 | const char *str; // the human readable translation of the state | |
37 | }; | |
09fa2df2 MV |
38 | |
39 | // the dpkg states that the pkg will run through, the string is | |
40 | // the package, the vector contains the dpkg states that the package | |
41 | // will go through | |
42 | map<string,vector<struct DpkgState> > PackageOps; | |
43 | // the dpkg states that are already done; the string is the package | |
44 | // the int is the state that is already done (e.g. a package that is | |
45 | // going to be install is already in state "half-installed") | |
46 | map<string,int> PackageOpsDone; | |
47 | // progress reporting | |
ff56e980 MV |
48 | int PackagesDone; |
49 | int PackagesTotal; | |
09fa2df2 | 50 | |
03e39e59 AL |
51 | struct Item |
52 | { | |
fc4b5c9f | 53 | enum Ops {Install, Configure, Remove, Purge} Op; |
03e39e59 AL |
54 | string File; |
55 | PkgIterator Pkg; | |
b2e465d6 | 56 | Item(Ops Op,PkgIterator Pkg,string File = "") : Op(Op), |
03e39e59 AL |
57 | File(File), Pkg(Pkg) {}; |
58 | Item() {}; | |
59 | ||
60 | }; | |
61 | vector<Item> List; | |
6dd55be7 AL |
62 | |
63 | // Helpers | |
64 | bool RunScripts(const char *Cnf); | |
db0c350f | 65 | bool RunScriptsWithPkgs(const char *Cnf); |
b2e465d6 | 66 | bool SendV2Pkgs(FILE *F); |
afb1e2e3 | 67 | |
ceabc520 MV |
68 | // input processing |
69 | void DoStdin(int master); | |
70 | void DoTerminalPty(int master, FILE *out); | |
09fa2df2 MV |
71 | void DoDpkgStatusFd(int statusfd, int OutStatusFd); |
72 | void ProcessDpkgStatusLine(int OutStatusFd, char *line); | |
6191b008 | 73 | |
03e39e59 AL |
74 | // The Actuall installation implementation |
75 | virtual bool Install(PkgIterator Pkg,string File); | |
76 | virtual bool Configure(PkgIterator Pkg); | |
fc4b5c9f | 77 | virtual bool Remove(PkgIterator Pkg,bool Purge = false); |
2a7e07c7 | 78 | virtual bool Go(int StatusFd=-1); |
281daf46 | 79 | virtual void Reset(); |
03e39e59 AL |
80 | |
81 | public: | |
82 | ||
b2e465d6 | 83 | pkgDPkgPM(pkgDepCache *Cache); |
03e39e59 AL |
84 | virtual ~pkgDPkgPM(); |
85 | }; | |
86 | ||
87 | #endif |