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