apt-pkg/deb/dpkgpm.{cc,h}:
[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
09fa2df2
MV
26 // the buffer we use for the dpkg status-fd reading
27 char dpkgbuf[1024];
28 int dpkgbuf_pos;
2a7e07c7 29
09fa2df2 30 // progress reporting
2a7e07c7
MV
31 struct DpkgState
32 {
33 const char *state; // the dpkg state (e.g. "unpack")
34 const char *str; // the human readable translation of the state
35 };
09fa2df2
MV
36
37 // the dpkg states that the pkg will run through, the string is
38 // the package, the vector contains the dpkg states that the package
39 // will go through
40 map<string,vector<struct DpkgState> > PackageOps;
41 // the dpkg states that are already done; the string is the package
42 // the int is the state that is already done (e.g. a package that is
43 // going to be install is already in state "half-installed")
44 map<string,int> PackageOpsDone;
45 // progress reporting
46 int Done;
47 int Total;
48
49 protected:
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
ceabc520 74
03e39e59
AL
75 // The Actuall installation implementation
76 virtual bool Install(PkgIterator Pkg,string File);
77 virtual bool Configure(PkgIterator Pkg);
fc4b5c9f 78 virtual bool Remove(PkgIterator Pkg,bool Purge = false);
2a7e07c7 79 virtual bool Go(int StatusFd=-1);
281daf46 80 virtual void Reset();
03e39e59
AL
81
82 public:
83
b2e465d6 84 pkgDPkgPM(pkgDepCache *Cache);
03e39e59
AL
85 virtual ~pkgDPkgPM();
86};
87
88#endif