]>
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>
14 #include <apt-pkg/pkgcache.h>
15 #include <apt-pkg/macros.h>
22 #ifndef APT_10_CLEANER_HEADERS
23 #include <apt-pkg/init.h>
27 namespace APT
{ namespace Progress
{ class PackageManager
; } }
29 #ifndef APT_8_CLEANER_HEADERS
34 class pkgDPkgPMPrivate
;
37 class pkgDPkgPM
: public pkgPackageManager
42 /** \brief record the disappear action and handle accordingly
44 dpkg let packages disappear then they have no files any longer and
45 nothing depends on them. We need to collect this as dpkg as well as
46 APT doesn't know beforehand that the package will disappear, so the
47 only possible option is to tell the user afterwards about it.
48 To enhance the experience we also try to forward the auto-install
49 flag so the disappear-causer(s) are not autoremoved next time -
50 for the transfer to happen the disappeared version needs to depend
51 on the package the flag should be forwarded to and this package
52 needs to declare a Replaces on the disappeared package.
53 \param pkgname Name of the package that disappeared
55 APT_HIDDEN
void handleDisappearAction(std::string
const &pkgname
);
63 const char *state
; // the dpkg state (e.g. "unpack")
64 const char *str
; // the human readable translation of the state
67 // the dpkg states that the pkg will run through, the string is
68 // the package, the vector contains the dpkg states that the package
70 std::map
<std::string
,std::vector
<struct DpkgState
> > PackageOps
;
71 // the dpkg states that are already done; the string is the package
72 // the int is the state that is already done (e.g. a package that is
73 // going to be install is already in state "half-installed")
74 std::map
<std::string
,unsigned int> PackageOpsDone
;
77 unsigned int PackagesDone
;
78 unsigned int PackagesTotal
;
82 enum Ops
{Install
, Configure
, Remove
, Purge
, ConfigurePending
, TriggersPending
} Op
;
85 Item(Ops Op
,PkgIterator Pkg
,std::string File
= "") : Op(Op
),
86 File(File
), Pkg(Pkg
) {};
90 std::vector
<Item
> List
;
93 bool RunScriptsWithPkgs(const char *Cnf
);
94 APT_DEPRECATED
bool SendV2Pkgs(FILE *F
);
95 bool SendPkgsInfo(FILE * const F
, unsigned int const &Version
);
96 void WriteHistoryTag(std::string
const &tag
, std::string value
);
97 std::string
ExpandShortPackageName(pkgDepCache
&Cache
,
98 const std::string
&short_pkgname
);
101 void SendTerminalProgress(float percentage
);
103 // apport integration
104 void WriteApportReport(const char *pkgpath
, const char *errormsg
);
111 void BuildPackagesProgressMap();
112 void StartPtyMagic();
113 void SetupSlavePtyMagic();
117 void DoStdin(int master
);
118 void DoTerminalPty(int master
);
119 void DoDpkgStatusFd(int statusfd
);
120 void ProcessDpkgStatusLine(char *line
);
122 // The Actuall installation implementation
123 virtual bool Install(PkgIterator Pkg
,std::string File
);
124 virtual bool Configure(PkgIterator Pkg
);
125 virtual bool Remove(PkgIterator Pkg
,bool Purge
= false);
127 virtual bool Go(APT::Progress::PackageManager
*progress
);
128 virtual bool Go(int StatusFd
=-1);
130 virtual void Reset();
134 pkgDPkgPM(pkgDepCache
*Cache
);
135 virtual ~pkgDPkgPM();
138 void SigINT(int sig
);