]>
Commit | Line | Data |
---|---|---|
b2e465d6 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
c9569a1e | 3 | // $Id: cachedb.h,v 1.4 2004/05/08 19:41:01 mdz Exp $ |
b2e465d6 AL |
4 | /* ###################################################################### |
5 | ||
6 | CacheDB | |
7 | ||
8 | Simple uniform interface to a cache database. | |
9 | ||
10 | ##################################################################### */ | |
11 | /*}}}*/ | |
12 | #ifndef CACHEDB_H | |
13 | #define CACHEDB_H | |
14 | ||
a311fb96 | 15 | #include <apt-pkg/hashes.h> |
472ff00e | 16 | #include <apt-pkg/debfile.h> |
b2e465d6 | 17 | |
c9569a1e | 18 | #include <db.h> |
b2e465d6 | 19 | #include <errno.h> |
472ff00e | 20 | #include <string> |
453b82a3 DK |
21 | #include <string.h> |
22 | #include <stdint.h> | |
23 | #include <stdio.h> | |
472ff00e | 24 | |
b2e465d6 | 25 | #include "contents.h" |
ce928105 | 26 | #include "sources.h" |
472ff00e | 27 | |
453b82a3 DK |
28 | class FileFd; |
29 | ||
ce928105 | 30 | |
b2e465d6 AL |
31 | class CacheDB |
32 | { | |
33 | protected: | |
34 | ||
35 | // Database state/access | |
36 | DBT Key; | |
37 | DBT Data; | |
38 | char TmpKey[600]; | |
39 | DB *Dbp; | |
40 | bool DBLoaded; | |
41 | bool ReadOnly; | |
8f3ba4e8 | 42 | std::string DBFile; |
b2e465d6 AL |
43 | |
44 | // Generate a key for the DB of a given type | |
37497bd5 | 45 | void _InitQuery(const char *Type) |
b2e465d6 AL |
46 | { |
47 | memset(&Key,0,sizeof(Key)); | |
48 | memset(&Data,0,sizeof(Data)); | |
49 | Key.data = TmpKey; | |
cde41ae8 | 50 | Key.size = snprintf(TmpKey,sizeof(TmpKey),"%s:%s",FileName.c_str(), Type); |
b2e465d6 AL |
51 | } |
52 | ||
37497bd5 MV |
53 | void InitQueryStats() { |
54 | _InitQuery("st"); | |
55 | } | |
56 | void InitQuerySource() { | |
57 | _InitQuery("cs"); | |
58 | } | |
59 | void InitQueryControl() { | |
60 | _InitQuery("cl"); | |
61 | } | |
62 | void InitQueryContent() { | |
63 | _InitQuery("cn"); | |
64 | } | |
65 | ||
b2e465d6 AL |
66 | inline bool Get() |
67 | { | |
68 | return Dbp->get(Dbp,0,&Key,&Data,0) == 0; | |
69 | }; | |
9209ec47 | 70 | inline bool Put(const void *In,unsigned long const &Length) |
b2e465d6 AL |
71 | { |
72 | if (ReadOnly == true) | |
73 | return true; | |
74 | Data.size = Length; | |
75 | Data.data = (void *)In; | |
76 | if (DBLoaded == true && (errno = Dbp->put(Dbp,0,&Key,&Data,0)) != 0) | |
77 | { | |
78 | DBLoaded = false; | |
79 | return false; | |
80 | } | |
81 | return true; | |
82 | } | |
cde41ae8 | 83 | bool OpenFile(); |
ce928105 MV |
84 | void CloseFile(); |
85 | ||
86 | bool OpenDebFile(); | |
87 | void CloseDebFile(); | |
88 | ||
243b2a38 MV |
89 | // GetCurStat needs some compat code, see lp #1274466) |
90 | bool GetCurStatCompatOldFormat(); | |
91 | bool GetCurStatCompatNewFormat(); | |
cde41ae8 | 92 | bool GetCurStat(); |
243b2a38 MV |
93 | |
94 | bool GetFileStat(bool const &doStat = false); | |
cde41ae8 | 95 | bool LoadControl(); |
9209ec47 | 96 | bool LoadContents(bool const &GenOnly); |
ce928105 | 97 | bool LoadSource(); |
a311fb96 DK |
98 | bool GetHashes(bool const GenOnly, unsigned int const DoHashes); |
99 | ||
b2e465d6 | 100 | // Stat info stored in the DB, Fixed types since it is written to disk. |
cde41ae8 | 101 | enum FlagList {FlControl = (1<<0),FlMD5=(1<<1),FlContents=(1<<2), |
bf3ad91f DK |
102 | FlSize=(1<<3), FlSHA1=(1<<4), FlSHA256=(1<<5), |
103 | FlSHA512=(1<<6), FlSource=(1<<7) | |
ce928105 | 104 | }; |
9a961efc | 105 | |
243b2a38 MV |
106 | // the on-disk format changed (FileSize increased to 64bit) in |
107 | // commit 650faab0 which will lead to corruption with old caches | |
108 | struct StatStoreOldFormat | |
109 | { | |
110 | uint32_t Flags; | |
111 | uint32_t mtime; | |
112 | uint32_t FileSize; | |
113 | uint8_t MD5[16]; | |
114 | uint8_t SHA1[20]; | |
115 | uint8_t SHA256[32]; | |
116 | } CurStatOldFormat; | |
117 | ||
118 | // WARNING: this struct is read/written to the DB so do not change the | |
119 | // layout of the fields (see lp #1274466), only append to it | |
b2e465d6 AL |
120 | struct StatStore |
121 | { | |
b2e465d6 | 122 | uint32_t Flags; |
cde41ae8 | 123 | uint32_t mtime; |
650faab0 | 124 | uint64_t FileSize; |
cde41ae8 MV |
125 | uint8_t MD5[16]; |
126 | uint8_t SHA1[20]; | |
127 | uint8_t SHA256[32]; | |
9a961efc | 128 | uint8_t SHA512[64]; |
b2e465d6 AL |
129 | } CurStat; |
130 | struct StatStore OldStat; | |
131 | ||
132 | // 'set' state | |
8f3ba4e8 | 133 | std::string FileName; |
b2e465d6 AL |
134 | FileFd *Fd; |
135 | debDebFile *DebFile; | |
136 | ||
137 | public: | |
138 | ||
139 | // Data collection helpers | |
140 | debDebFile::MemControlExtract Control; | |
141 | ContentsExtract Contents; | |
ce928105 | 142 | DscExtract Dsc; |
a311fb96 | 143 | HashStringList HashesList; |
ce928105 | 144 | |
b2e465d6 AL |
145 | // Runtime statistics |
146 | struct Stats | |
147 | { | |
148 | double Bytes; | |
149 | double MD5Bytes; | |
cde41ae8 MV |
150 | double SHA1Bytes; |
151 | double SHA256Bytes; | |
9a961efc | 152 | double SHA512Bytes; |
b2e465d6 AL |
153 | unsigned long Packages; |
154 | unsigned long Misses; | |
650faab0 | 155 | unsigned long long DeLinkBytes; |
b2e465d6 | 156 | |
cde41ae8 | 157 | inline void Add(const Stats &S) { |
9a961efc MV |
158 | Bytes += S.Bytes; |
159 | MD5Bytes += S.MD5Bytes; | |
160 | SHA1Bytes += S.SHA1Bytes; | |
cde41ae8 | 161 | SHA256Bytes += S.SHA256Bytes; |
9a961efc MV |
162 | SHA512Bytes += S.SHA512Bytes; |
163 | Packages += S.Packages; | |
164 | Misses += S.Misses; | |
165 | DeLinkBytes += S.DeLinkBytes; | |
166 | }; | |
dcaa1185 DK |
167 | Stats() : Bytes(0), MD5Bytes(0), SHA1Bytes(0), SHA256Bytes(0), |
168 | SHA512Bytes(0),Packages(0), Misses(0), DeLinkBytes(0) {}; | |
b2e465d6 AL |
169 | } Stats; |
170 | ||
21ea1dbb | 171 | bool ReadyDB(std::string const &DB = ""); |
b2e465d6 AL |
172 | inline bool DBFailed() {return Dbp != 0 && DBLoaded == false;}; |
173 | inline bool Loaded() {return DBLoaded == true;}; | |
174 | ||
650faab0 | 175 | inline unsigned long long GetFileSize(void) {return CurStat.FileSize;} |
cde41ae8 | 176 | |
8f3ba4e8 | 177 | bool SetFile(std::string const &FileName,struct stat St,FileFd *Fd); |
ce928105 MV |
178 | |
179 | // terrible old overloaded interface | |
a311fb96 DK |
180 | bool GetFileInfo(std::string const &FileName, |
181 | bool const &DoControl, | |
182 | bool const &DoContents, | |
183 | bool const &GenContentsOnly, | |
184 | bool const DoSource, | |
185 | unsigned int const DoHashes, | |
186 | bool const &checkMtime = false); | |
ce928105 | 187 | |
b2e465d6 AL |
188 | bool Finish(); |
189 | ||
190 | bool Clean(); | |
191 | ||
258b9e51 | 192 | explicit CacheDB(std::string const &DB); |
21ea1dbb | 193 | ~CacheDB(); |
b2e465d6 AL |
194 | }; |
195 | ||
196 | #endif |