X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/245dde96193702f7f51389d3583dee547f8ba366..d59671c9eef322c10abba22b0257fef37979dfd4:/apt-pkg/edsp/edspsystem.h?ds=sidebyside diff --git a/apt-pkg/edsp/edspsystem.h b/apt-pkg/edsp/edspsystem.h index 1e27d2cb0..2c429c3d6 100644 --- a/apt-pkg/edsp/edspsystem.h +++ b/apt-pkg/edsp/edspsystem.h @@ -14,32 +14,44 @@ #include #include +#include #include +#include + class Configuration; class pkgDepCache; class pkgIndexFile; class pkgPackageManager; -class edspIndex; -class APT_HIDDEN edspSystem : public pkgSystem +class APT_HIDDEN edspLikeSystem : public pkgSystem { - /** \brief dpointer placeholder (for later in case we need it) */ - void *d; +protected: + std::unique_ptr StatusFile; + +public: + virtual bool Lock() APT_OVERRIDE APT_CONST; + virtual bool UnLock(bool NoErrors = false) APT_OVERRIDE APT_CONST; + virtual pkgPackageManager *CreatePM(pkgDepCache *Cache) const APT_OVERRIDE APT_CONST; + virtual bool Initialize(Configuration &Cnf) APT_OVERRIDE; + virtual bool ArchiveSupported(const char *Type) APT_OVERRIDE APT_CONST; + virtual signed Score(Configuration const &Cnf) APT_OVERRIDE; + virtual bool FindIndex(pkgCache::PkgFileIterator File, + pkgIndexFile *&Found) const APT_OVERRIDE; - edspIndex *StatusFile; + edspLikeSystem(char const * const Label); + virtual ~edspLikeSystem(); +}; - public: +class APT_HIDDEN edspSystem : public edspLikeSystem +{ + std::string tempDir; + std::string tempStatesFile; + std::string tempPrefsFile; - virtual bool Lock() APT_CONST; - virtual bool UnLock(bool NoErrors = false) APT_CONST; - virtual pkgPackageManager *CreatePM(pkgDepCache *Cache) const APT_CONST; - virtual bool Initialize(Configuration &Cnf); - virtual bool ArchiveSupported(const char *Type) APT_CONST; - virtual signed Score(Configuration const &Cnf); - virtual bool AddStatusFiles(std::vector &List); - virtual bool FindIndex(pkgCache::PkgFileIterator File, - pkgIndexFile *&Found) const; +public: + virtual bool Initialize(Configuration &Cnf) APT_OVERRIDE; + virtual bool AddStatusFiles(std::vector &List) APT_OVERRIDE; edspSystem(); virtual ~edspSystem();