]>
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>
18 #ifndef APT_8_CLEANER_HEADERS
23 class pkgDPkgPMPrivate
;
25 class pkgDPkgPM
: public pkgPackageManager
30 /** \brief record the disappear action and handle accordingly
32 dpkg let packages disappear then they have no files any longer and
33 nothing depends on them. We need to collect this as dpkg as well as
34 APT doesn't know beforehand that the package will disappear, so the
35 only possible option is to tell the user afterwards about it.
36 To enhance the experience we also try to forward the auto-install
37 flag so the disappear-causer(s) are not autoremoved next time -
38 for the transfer to happen the disappeared version needs to depend
39 on the package the flag should be forwarded to and this package
40 needs to declare a Replaces on the disappeared package.
41 \param pkgname Name of the package that disappeared
43 void handleDisappearAction(std::string
const &pkgname
);
51 const char *state
; // the dpkg state (e.g. "unpack")
52 const char *str
; // the human readable translation of the state
55 // the dpkg states that the pkg will run through, the string is
56 // the package, the vector contains the dpkg states that the package
58 std::map
<std::string
,std::vector
<struct DpkgState
> > PackageOps
;
59 // the dpkg states that are already done; the string is the package
60 // the int is the state that is already done (e.g. a package that is
61 // going to be install is already in state "half-installed")
62 std::map
<std::string
,unsigned int> PackageOpsDone
;
65 unsigned int PackagesDone
;
66 unsigned int PackagesTotal
;
70 enum Ops
{Install
, Configure
, Remove
, Purge
, ConfigurePending
, TriggersPending
} Op
;
73 Item(Ops Op
,PkgIterator Pkg
,std::string File
= "") : Op(Op
),
74 File(File
), Pkg(Pkg
) {};
78 std::vector
<Item
> List
;
81 bool RunScriptsWithPkgs(const char *Cnf
);
82 bool SendV2Pkgs(FILE *F
);
83 void WriteHistoryTag(std::string
const &tag
, std::string value
);
86 void WriteApportReport(const char *pkgpath
, const char *errormsg
);
93 void DoStdin(int master
);
94 void DoTerminalPty(int master
);
95 void DoDpkgStatusFd(int statusfd
, int OutStatusFd
);
96 void ProcessDpkgStatusLine(int OutStatusFd
, char *line
);
98 // The Actuall installation implementation
99 virtual bool Install(PkgIterator Pkg
,std::string File
);
100 virtual bool Configure(PkgIterator Pkg
);
101 virtual bool Remove(PkgIterator Pkg
,bool Purge
= false);
102 virtual bool Go(int StatusFd
=-1);
103 virtual void Reset();
107 pkgDPkgPM(pkgDepCache
*Cache
);
108 virtual ~pkgDPkgPM();
111 void SigINT(int sig
);