]> git.saurik.com Git - apt.git/blob - apt-pkg/deb/dpkgpm.h
* merged from dpkg-log
[apt.git] / apt-pkg / deb / dpkgpm.h
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 // $Id: dpkgpm.h,v 1.8 2001/05/07 05:05:13 jgg Exp $
4 /* ######################################################################
5
6 DPKG Package Manager - Provide an interface to dpkg
7
8 ##################################################################### */
9 /*}}}*/
10 #ifndef PKGLIB_DPKGPM_H
11 #define PKGLIB_DPKGPM_H
12
13 #include <apt-pkg/packagemanager.h>
14 #include <vector>
15 #include <map>
16 #include <stdio.h>
17
18 using std::vector;
19 using std::map;
20
21
22 class pkgDPkgPM : public pkgPackageManager
23 {
24 private:
25
26 // the buffer we use for the dpkg status-fd reading
27 char dpkgbuf[1024];
28 int dpkgbuf_pos;
29
30 protected:
31 int pkgFailures;
32
33 // progress reporting
34 struct DpkgState
35 {
36 const char *state; // the dpkg state (e.g. "unpack")
37 const char *str; // the human readable translation of the state
38 };
39
40 // the dpkg states that the pkg will run through, the string is
41 // the package, the vector contains the dpkg states that the package
42 // will go through
43 map<string,vector<struct DpkgState> > PackageOps;
44 // the dpkg states that are already done; the string is the package
45 // the int is the state that is already done (e.g. a package that is
46 // going to be install is already in state "half-installed")
47 map<string,int> PackageOpsDone;
48 // progress reporting
49 int PackagesDone;
50 int PackagesTotal;
51
52 struct Item
53 {
54 enum Ops {Install, Configure, Remove, Purge} Op;
55 string File;
56 PkgIterator Pkg;
57 Item(Ops Op,PkgIterator Pkg,string File = "") : Op(Op),
58 File(File), Pkg(Pkg) {};
59 Item() {};
60
61 };
62 vector<Item> List;
63
64 // Helpers
65 bool RunScripts(const char *Cnf);
66 bool RunScriptsWithPkgs(const char *Cnf);
67 bool SendV2Pkgs(FILE *F);
68
69 // apport integration
70 void WriteApportReport(const char *pkgpath, const char *errormsg);
71
72 // input processing
73 void DoStdin(int master);
74 void DoTerminalPty(int master, FILE *out);
75 void DoDpkgStatusFd(int statusfd, int OutStatusFd);
76 void ProcessDpkgStatusLine(int OutStatusFd, char *line);
77
78 // The Actuall installation implementation
79 virtual bool Install(PkgIterator Pkg,string File);
80 virtual bool Configure(PkgIterator Pkg);
81 virtual bool Remove(PkgIterator Pkg,bool Purge = false);
82 virtual bool Go(int StatusFd=-1);
83 virtual void Reset();
84
85 public:
86
87 pkgDPkgPM(pkgDepCache *Cache);
88 virtual ~pkgDPkgPM();
89 };
90
91 #endif