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