X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/41cd4f9af1dd8247f9ff4f1fe6053246657a1faf..7824564bfde681eddf6969174bba7604d6f34848:/apt-pkg/indexrecords.h diff --git a/apt-pkg/indexrecords.h b/apt-pkg/indexrecords.h index ac0df470c..35e534c12 100644 --- a/apt-pkg/indexrecords.h +++ b/apt-pkg/indexrecords.h @@ -5,48 +5,90 @@ #ifndef PKGLIB_INDEXRECORDS_H #define PKGLIB_INDEXRECORDS_H - -#include -#include +#include #include #include +#include +#include + +#ifndef APT_8_CLEANER_HEADERS +#include +#endif +#ifndef APT_10_CLEANER_HEADERS +#include +#endif class indexRecords { - bool parseSumData(const char *&Start, const char *End, string &Name, - string &Hash, size_t &Size); + APT_HIDDEN bool parseSumData(const char *&Start, const char *End, std::string &Name, + std::string &Hash, unsigned long long &Size); public: struct checkSum; - string ErrorText; - + std::string ErrorText; + + private: + enum APT_HIDDEN { ALWAYS_TRUSTED, NEVER_TRUSTED, CHECK_TRUST } Trusted; + // dpointer (for later) + void * d; + protected: - string Dist; - string Suite; - string ExpectedDist; - std::map Entries; + std::string Dist; + std::string Suite; + std::string ExpectedDist; + time_t ValidUntil; + bool SupportsAcquireByHash; - public: + std::map Entries; + public: +#if APT_PKG_ABI >= 413 + indexRecords(const std::string &ExpectedDist = ""); +#else indexRecords(); - indexRecords(const string ExpectedDist); + indexRecords(const std::string ExpectedDist); +#endif // Lookup function - virtual const checkSum *Lookup(const string MetaKey); + virtual checkSum *Lookup(const std::string MetaKey); + /** \brief tests if a checksum for this file is available */ + bool Exists(std::string const &MetaKey) const; std::vector MetaKeys(); - virtual bool Load(string Filename); - string GetDist() const; - virtual bool CheckDist(const string MaybeDist) const; - string GetExpectedDist() const; - virtual ~indexRecords(){}; + virtual bool Load(std::string Filename); + virtual bool CheckDist(const std::string MaybeDist) const; + + std::string GetDist() const; + std::string GetSuite() const; + bool GetSupportsAcquireByHash() const; + time_t GetValidUntil() const; + std::string GetExpectedDist() const; + + /** \brief check if source is marked as always trusted */ + bool IsAlwaysTrusted() const; + /** \brief check if source is marked as never trusted */ + bool IsNeverTrusted() const; + + /** \brief sets an explicit trust value + * + * \b true means that the source should always be considered trusted, + * while \b false marks a source as always untrusted, even if we have + * a valid signature and everything. + */ + void SetTrusted(bool const Trusted); + + virtual ~indexRecords(); }; +APT_IGNORE_DEPRECATED_PUSH struct indexRecords::checkSum { - string MetaKeyFilename; - string MD5Hash; - size_t Size; + std::string MetaKeyFilename; + HashStringList Hashes; + unsigned long long Size; + + APT_DEPRECATED HashString Hash; }; +APT_IGNORE_DEPRECATED_POP #endif