]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/cachefile.h
merge lp:~mvo/apt/sha512-template to get fixes for the
[apt.git] / apt-pkg / cachefile.h
index 1647aff8eb095ce06f2ba5ed71ee4e27d26cb7eb..d07337d387d216b180fc1798c38961fa2a840e9d 100644 (file)
 
 #include <apt-pkg/depcache.h>
 #include <apt-pkg/acquire.h>
+#include <apt-pkg/policy.h>
 #include <apt-pkg/sourcelist.h>
 
-class pkgPolicy;
-class pkgSourceList;
 class pkgCacheFile
 {
+   /** \brief dpointer placeholder (for later in case we need it) */
+   void *d;
+
    protected:
    
    MMap *Map;
    pkgCache *Cache;
    pkgDepCache *DCache;
-   pkgPolicy *Policy;
    pkgSourceList *SrcList;
 
    public:
+   pkgPolicy *Policy;
 
    // We look pretty much exactly like a pointer to a dep cache
    inline operator pkgCache &() {return *Cache;};
@@ -65,6 +67,11 @@ class pkgCacheFile
    inline pkgPolicy* GetPolicy() { BuildPolicy(); return Policy; };
    inline pkgSourceList* GetSourceList() { BuildSourceList(); return SrcList; };
 
+   inline bool IsPkgCacheBuilt() const { return (Cache != NULL); };
+   inline bool IsDepCacheBuilt() const { return (DCache != NULL); };
+   inline bool IsPolicyBuilt() const { return (Policy != NULL); };
+   inline bool IsSrcListBuilt() const { return (SrcList != NULL); };
+
    pkgCacheFile();
    virtual ~pkgCacheFile();
 };