]>
git.saurik.com Git - apt.git/blob - apt-pkg/deb/debsystem.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: debsystem.h,v 1.4 2003/01/11 07:16:33 jgg Exp $
4 /* ######################################################################
6 System - Debian version of the System Class
8 ##################################################################### */
10 #ifndef PKGLIB_DEBSYSTEM_H
11 #define PKGLIB_DEBSYSTEM_H
13 #include <apt-pkg/pkgsystem.h>
14 #include <apt-pkg/pkgcache.h>
15 #include <apt-pkg/cacheiterators.h>
20 class pkgPackageManager
;
21 class debSystemPrivate
;
24 #ifndef APT_10_CLEANER_HEADERS
28 class debSystem
: public pkgSystem
31 debSystemPrivate
* const d
;
32 APT_HIDDEN
bool CheckUpdates();
36 virtual bool Lock() APT_OVERRIDE
;
37 virtual bool UnLock(bool NoErrors
= false) APT_OVERRIDE
;
38 virtual pkgPackageManager
*CreatePM(pkgDepCache
*Cache
) const APT_OVERRIDE
;
39 virtual bool Initialize(Configuration
&Cnf
) APT_OVERRIDE
;
40 virtual bool ArchiveSupported(const char *Type
) APT_OVERRIDE
;
41 virtual signed Score(Configuration
const &Cnf
) APT_OVERRIDE
;
42 virtual bool AddStatusFiles(std::vector
<pkgIndexFile
*> &List
) APT_OVERRIDE
;
43 virtual bool FindIndex(pkgCache::PkgFileIterator File
,
44 pkgIndexFile
*&Found
) const APT_OVERRIDE
;
49 APT_HIDDEN
static std::string
GetDpkgExecutable();
50 APT_HIDDEN
static std::vector
<std::string
> GetDpkgBaseCommand();
51 APT_HIDDEN
static void DpkgChrootDirectory();
52 APT_HIDDEN
static pid_t
ExecDpkg(std::vector
<std::string
> const &sArgs
, int * const inputFd
, int * const outputFd
, bool const DiscardOutput
);
53 APT_HIDDEN
static bool SupportsMultiArch();
54 APT_HIDDEN
static std::vector
<std::string
> SupportedArchitectures();
57 extern debSystem debSys
;