#ifndef PKGLIB_METAINDEX_H #define PKGLIB_METAINDEX_H #include #include #include #include #include #ifndef APT_10_CLEANER_HEADERS #include class pkgCacheGenerator; class OpProgress; #endif #ifndef APT_8_CLEANER_HEADERS #include #include #include using std::string; #endif class pkgAcquire; class IndexTarget; class pkgCacheGenerator; class OpProgress; class metaIndex { protected: std::vector *Indexes; const char *Type; std::string URI; std::string Dist; bool Trusted; public: // Various accessors virtual std::string GetURI() const {return URI;} virtual std::string GetDist() const {return Dist;} virtual const char* GetType() const {return Type;} // interface to to query it /** \return the path of the local file (or "" if its not available) */ virtual std::string LocalFileName() const; // Interface for acquire virtual std::string ArchiveURI(std::string const& File) const = 0; virtual bool GetIndexes(pkgAcquire *Owner, bool const &GetAll=false) const = 0; virtual std::vector GetIndexTargets() const = 0; virtual std::vector *GetIndexFiles() = 0; virtual bool IsTrusted() const = 0; virtual std::string Describe() const; virtual pkgCache::RlsFileIterator FindInCache(pkgCache &Cache, bool const ModifyCheck) const; virtual bool Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const; metaIndex(std::string const &URI, std::string const &Dist, char const * const Type); virtual ~metaIndex(); }; #endif