]>
git.saurik.com Git - apt.git/blob - apt-pkg/deb/dpkgpm.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: dpkgpm.h,v 1.8 2001/05/07 05:05:13 jgg Exp $
4 /* ######################################################################
6 DPKG Package Manager - Provide an interface to dpkg
8 ##################################################################### */
10 #ifndef PKGLIB_DPKGPM_H
11 #define PKGLIB_DPKGPM_H
13 #include <apt-pkg/packagemanager.h>
22 class pkgDPkgPM
: public pkgPackageManager
26 bool stdin_is_dev_null
;
28 // the buffer we use for the dpkg status-fd reading
38 const char *state
; // the dpkg state (e.g. "unpack")
39 const char *str
; // the human readable translation of the state
42 // the dpkg states that the pkg will run through, the string is
43 // the package, the vector contains the dpkg states that the package
45 map
<string
,vector
<struct DpkgState
> > PackageOps
;
46 // the dpkg states that are already done; the string is the package
47 // the int is the state that is already done (e.g. a package that is
48 // going to be install is already in state "half-installed")
49 map
<string
,unsigned int> PackageOpsDone
;
51 unsigned int PackagesDone
;
52 unsigned int PackagesTotal
;
56 enum Ops
{Install
, Configure
, Remove
, Purge
, ConfigurePending
, TriggersPending
} Op
;
59 Item(Ops Op
,PkgIterator Pkg
,string File
= "") : Op(Op
),
60 File(File
), Pkg(Pkg
) {};
67 bool RunScriptsWithPkgs(const char *Cnf
);
68 bool SendV2Pkgs(FILE *F
);
75 void DoStdin(int master
);
76 void DoTerminalPty(int master
);
77 void DoDpkgStatusFd(int statusfd
, int OutStatusFd
);
78 void ProcessDpkgStatusLine(int OutStatusFd
, char *line
);
80 // The Actuall installation implementation
81 virtual bool Install(PkgIterator Pkg
,string File
);
82 virtual bool Configure(PkgIterator Pkg
);
83 virtual bool Remove(PkgIterator Pkg
,bool Purge
= false);
84 virtual bool Go(int StatusFd
=-1);
89 pkgDPkgPM(pkgDepCache
*Cache
);