]> git.saurik.com Git - apt.git/blame - apt-pkg/deb/dpkgpm.h
- when writting apport reports, attach the dpkg
[apt.git] / apt-pkg / deb / dpkgpm.h
CommitLineData
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 18using std::vector;
09fa2df2
MV
19using std::map;
20
233b185f 21
03e39e59
AL
22class 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;
8ecd1fed
MV
29 FILE *term_out;
30
03e39e59 31 protected:
5e457a93 32 int pkgFailures;
2a7e07c7 33
09fa2df2 34 // progress reporting
2a7e07c7
MV
35 struct DpkgState
36 {
37 const char *state; // the dpkg state (e.g. "unpack")
38 const char *str; // the human readable translation of the state
39 };
09fa2df2
MV
40
41 // the dpkg states that the pkg will run through, the string is
42 // the package, the vector contains the dpkg states that the package
43 // will go through
44 map<string,vector<struct DpkgState> > PackageOps;
45 // the dpkg states that are already done; the string is the package
46 // the int is the state that is already done (e.g. a package that is
47 // going to be install is already in state "half-installed")
48 map<string,int> PackageOpsDone;
49 // progress reporting
ff56e980
MV
50 int PackagesDone;
51 int PackagesTotal;
09fa2df2 52
03e39e59
AL
53 struct Item
54 {
fc4b5c9f 55 enum Ops {Install, Configure, Remove, Purge} Op;
03e39e59
AL
56 string File;
57 PkgIterator Pkg;
b2e465d6 58 Item(Ops Op,PkgIterator Pkg,string File = "") : Op(Op),
03e39e59
AL
59 File(File), Pkg(Pkg) {};
60 Item() {};
61
62 };
63 vector<Item> List;
6dd55be7
AL
64
65 // Helpers
66 bool RunScripts(const char *Cnf);
db0c350f 67 bool RunScriptsWithPkgs(const char *Cnf);
b2e465d6 68 bool SendV2Pkgs(FILE *F);
afb1e2e3 69
5e457a93
MV
70 // apport integration
71 void WriteApportReport(const char *pkgpath, const char *errormsg);
72
ceabc520
MV
73 // input processing
74 void DoStdin(int master);
8ecd1fed 75 void DoTerminalPty(int master);
09fa2df2
MV
76 void DoDpkgStatusFd(int statusfd, int OutStatusFd);
77 void ProcessDpkgStatusLine(int OutStatusFd, char *line);
6191b008 78
03e39e59
AL
79 // The Actuall installation implementation
80 virtual bool Install(PkgIterator Pkg,string File);
81 virtual bool Configure(PkgIterator Pkg);
fc4b5c9f 82 virtual bool Remove(PkgIterator Pkg,bool Purge = false);
2a7e07c7 83 virtual bool Go(int StatusFd=-1);
281daf46 84 virtual void Reset();
03e39e59
AL
85
86 public:
87
b2e465d6 88 pkgDPkgPM(pkgDepCache *Cache);
03e39e59
AL
89 virtual ~pkgDPkgPM();
90};
91
92#endif