remove the caches in 'apt-get update', too, as they will be
[ntk/apt.git] / apt-pkg / cachefile.h
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 // $Id: cachefile.h,v 1.5 2002/04/27 04:28:04 jgg Exp $
4 /* ######################################################################
5
6 CacheFile - Simple wrapper class for opening, generating and whatnot
7
8 This class implements a simple 2 line mechanism to open various sorts
9 of caches. It can operate as root, as not root, show progress and so on,
10 it transparently handles everything necessary.
11
12 This means it can rebuild caches from the source list and instantiates
13 and prepares the standard policy mechanism.
14
15 ##################################################################### */
16 /*}}}*/
17 #ifndef PKGLIB_CACHEFILE_H
18 #define PKGLIB_CACHEFILE_H
19
20
21 #include <apt-pkg/depcache.h>
22 #include <apt-pkg/acquire.h>
23 #include <apt-pkg/policy.h>
24 #include <apt-pkg/sourcelist.h>
25
26 class pkgCacheFile
27 {
28 protected:
29
30 MMap *Map;
31 pkgCache *Cache;
32 pkgDepCache *DCache;
33 pkgSourceList *SrcList;
34
35 public:
36 pkgPolicy *Policy;
37
38 // We look pretty much exactly like a pointer to a dep cache
39 inline operator pkgCache &() {return *Cache;};
40 inline operator pkgCache *() {return Cache;};
41 inline operator pkgDepCache &() {return *DCache;};
42 inline operator pkgDepCache *() {return DCache;};
43 inline operator pkgPolicy &() {return *Policy;};
44 inline operator pkgPolicy *() {return Policy;};
45 inline operator pkgSourceList &() {return *SrcList;};
46 inline operator pkgSourceList *() {return SrcList;};
47 inline pkgDepCache *operator ->() {return DCache;};
48 inline pkgDepCache &operator *() {return *DCache;};
49 inline pkgDepCache::StateCache &operator [](pkgCache::PkgIterator const &I) {return (*DCache)[I];};
50 inline unsigned char &operator [](pkgCache::DepIterator const &I) {return (*DCache)[I];};
51
52 bool BuildCaches(OpProgress *Progress = NULL,bool WithLock = true);
53 __deprecated bool BuildCaches(OpProgress &Progress,bool const &WithLock = true) { return BuildCaches(&Progress, WithLock); };
54 bool BuildSourceList(OpProgress *Progress = NULL);
55 bool BuildPolicy(OpProgress *Progress = NULL);
56 bool BuildDepCache(OpProgress *Progress = NULL);
57 bool Open(OpProgress *Progress = NULL, bool WithLock = true);
58 inline bool ReadOnlyOpen(OpProgress *Progress = NULL) { return Open(Progress, false); };
59 __deprecated bool Open(OpProgress &Progress,bool const &WithLock = true) { return Open(&Progress, WithLock); };
60 static void RemoveCaches();
61 void Close();
62
63 inline pkgCache* GetPkgCache() { BuildCaches(NULL, false); return Cache; };
64 inline pkgDepCache* GetDepCache() { BuildDepCache(); return DCache; };
65 inline pkgPolicy* GetPolicy() { BuildPolicy(); return Policy; };
66 inline pkgSourceList* GetSourceList() { BuildSourceList(); return SrcList; };
67
68 inline bool IsPkgCacheBuilt() const { return (Cache != NULL); };
69 inline bool IsDepCacheBuilt() const { return (DCache != NULL); };
70 inline bool IsPolicyBuilt() const { return (Policy != NULL); };
71 inline bool IsSrcListBuilt() const { return (SrcList != NULL); };
72
73 pkgCacheFile();
74 virtual ~pkgCacheFile();
75 };
76
77 #endif