]>
Commit | Line | Data |
---|---|---|
578bfd0a AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
45415543 | 3 | // $Id: pkgcachegen.h,v 1.19 2002/07/08 03:13:30 jgg Exp $ |
578bfd0a AL |
4 | /* ###################################################################### |
5 | ||
6 | Package Cache Generator - Generator for the cache structure. | |
7 | ||
8 | This builds the cache structure from the abstract package list parser. | |
6fc33863 AL |
9 | Each archive source has it's own list parser that is instantiated by |
10 | the caller to provide data for the generator. | |
11 | ||
12 | Parts of the cache are created by this generator class while other | |
13 | parts are created by the list parser. The list parser is responsible | |
14 | for creating version, depends and provides structures, and some of | |
15 | their contents | |
578bfd0a AL |
16 | |
17 | ##################################################################### */ | |
18 | /*}}}*/ | |
578bfd0a AL |
19 | #ifndef PKGLIB_PKGCACHEGEN_H |
20 | #define PKGLIB_PKGCACHEGEN_H | |
21 | ||
6c139d6e | 22 | |
094a497d | 23 | #include <apt-pkg/pkgcache.h> |
a52f938b | 24 | #include <apt-pkg/md5.h> |
b35d2f5f AL |
25 | |
26 | class pkgSourceList; | |
27 | class OpProgress; | |
2d11135a | 28 | class MMap; |
b2e465d6 | 29 | class pkgIndexFile; |
578bfd0a | 30 | |
92fcbfc1 | 31 | class pkgCacheGenerator /*{{{*/ |
578bfd0a | 32 | { |
f9eec0e7 AL |
33 | private: |
34 | ||
35 | pkgCache::StringItem *UniqHash[26]; | |
36 | ||
578bfd0a AL |
37 | public: |
38 | ||
39 | class ListParser; | |
b2e465d6 | 40 | friend class ListParser; |
578bfd0a AL |
41 | |
42 | protected: | |
43 | ||
44 | DynamicMMap ⤅ | |
45 | pkgCache Cache; | |
ddc1d8d0 | 46 | OpProgress *Progress; |
404ec98e | 47 | |
578bfd0a AL |
48 | string PkgFileName; |
49 | pkgCache::PackageFile *CurrentFile; | |
45415543 AL |
50 | |
51 | // Flag file dependencies | |
52 | bool FoundFileDeps; | |
578bfd0a | 53 | |
5bf15716 DK |
54 | bool NewGroup(pkgCache::GrpIterator &Grp,const string &Name); |
55 | bool NewPackage(pkgCache::PkgIterator &Pkg,const string &Name, const string &Arch); | |
f55a958f | 56 | bool NewFileVer(pkgCache::VerIterator &Ver,ListParser &List); |
a52f938b | 57 | bool NewFileDesc(pkgCache::DescIterator &Desc,ListParser &List); |
25396fb0 DK |
58 | bool NewDepends(pkgCache::PkgIterator &Pkg, pkgCache::VerIterator &Ver, |
59 | string const &Version, unsigned int const &Op, | |
60 | unsigned int const &Type, map_ptrloc *OldDepLast); | |
171c75f1 | 61 | unsigned long NewVersion(pkgCache::VerIterator &Ver,const string &VerStr,unsigned long Next); |
a52f938b | 62 | map_ptrloc NewDescription(pkgCache::DescIterator &Desc,const string &Lang,const MD5SumValue &md5sum,map_ptrloc Next); |
578bfd0a | 63 | |
b2e465d6 AL |
64 | public: |
65 | ||
f55a958f | 66 | unsigned long WriteUniqString(const char *S,unsigned int Size); |
171c75f1 | 67 | inline unsigned long WriteUniqString(const string &S) {return WriteUniqString(S.c_str(),S.length());}; |
813c8eea | 68 | |
ddc1d8d0 | 69 | void DropProgress() {Progress = 0;}; |
171c75f1 | 70 | bool SelectFile(const string &File,const string &Site,pkgIndexFile const &Index, |
b2e465d6 | 71 | unsigned long Flags = 0); |
ddc1d8d0 | 72 | bool MergeList(ListParser &List,pkgCache::VerIterator *Ver = 0); |
ad00ae81 | 73 | inline pkgCache &GetCache() {return Cache;}; |
b0b4efb9 AL |
74 | inline pkgCache::PkgFileIterator GetCurFile() |
75 | {return pkgCache::PkgFileIterator(Cache,CurrentFile);}; | |
45415543 AL |
76 | |
77 | bool HasFileDeps() {return FoundFileDeps;}; | |
78 | bool MergeFileProvides(ListParser &List); | |
2e5f4e45 DK |
79 | bool FinishCache(OpProgress *Progress); |
80 | ||
81 | static bool MakeStatusCache(pkgSourceList &List,OpProgress *Progress, | |
82 | MMap **OutMap = 0,bool AllowMem = false); | |
83 | static bool MakeOnlyStatusCache(OpProgress *Progress,DynamicMMap **OutMap); | |
25396fb0 | 84 | |
b2e465d6 | 85 | pkgCacheGenerator(DynamicMMap *Map,OpProgress *Progress); |
578bfd0a AL |
86 | ~pkgCacheGenerator(); |
87 | }; | |
92fcbfc1 DK |
88 | /*}}}*/ |
89 | // This is the abstract package list parser class. /*{{{*/ | |
f55ece0e AL |
90 | class pkgCacheGenerator::ListParser |
91 | { | |
92 | pkgCacheGenerator *Owner; | |
b2e465d6 | 93 | friend class pkgCacheGenerator; |
f55ece0e | 94 | |
f9eec0e7 AL |
95 | // Some cache items |
96 | pkgCache::VerIterator OldDepVer; | |
349cd3b8 | 97 | map_ptrloc *OldDepLast; |
45415543 AL |
98 | |
99 | // Flag file dependencies | |
100 | bool FoundFileDeps; | |
f9eec0e7 | 101 | |
f55ece0e | 102 | protected: |
813c8eea | 103 | |
f55ece0e AL |
104 | inline unsigned long WriteUniqString(string S) {return Owner->WriteUniqString(S);}; |
105 | inline unsigned long WriteUniqString(const char *S,unsigned int Size) {return Owner->WriteUniqString(S,Size);}; | |
171c75f1 | 106 | inline unsigned long WriteString(const string &S) {return Owner->Map.WriteString(S);}; |
f55ece0e | 107 | inline unsigned long WriteString(const char *S,unsigned int Size) {return Owner->Map.WriteString(S,Size);}; |
5bf15716 | 108 | bool NewDepends(pkgCache::VerIterator Ver,const string &Package, const string &Arch, |
171c75f1 | 109 | const string &Version,unsigned int Op, |
f55ece0e | 110 | unsigned int Type); |
67e0766f DK |
111 | bool NewProvides(pkgCache::VerIterator Ver,const string &PkgName, |
112 | const string &PkgArch, const string &Version); | |
f55ece0e AL |
113 | |
114 | public: | |
115 | ||
116 | // These all operate against the current section | |
117 | virtual string Package() = 0; | |
5bf15716 | 118 | virtual string Architecture() = 0; |
857e9c13 | 119 | virtual bool ArchitectureAll() = 0; |
f55ece0e AL |
120 | virtual string Version() = 0; |
121 | virtual bool NewVersion(pkgCache::VerIterator Ver) = 0; | |
a52f938b OS |
122 | virtual string Description() = 0; |
123 | virtual string DescriptionLanguage() = 0; | |
124 | virtual MD5SumValue Description_md5() = 0; | |
204fbdcc | 125 | virtual unsigned short VersionHash() = 0; |
f55ece0e AL |
126 | virtual bool UsePackage(pkgCache::PkgIterator Pkg, |
127 | pkgCache::VerIterator Ver) = 0; | |
128 | virtual unsigned long Offset() = 0; | |
129 | virtual unsigned long Size() = 0; | |
130 | ||
131 | virtual bool Step() = 0; | |
132 | ||
45415543 AL |
133 | inline bool HasFileDeps() {return FoundFileDeps;}; |
134 | virtual bool CollectFileProvides(pkgCache &Cache, | |
135 | pkgCache::VerIterator Ver) {return true;}; | |
136 | ||
137 | ListParser() : FoundFileDeps(false) {}; | |
f55ece0e AL |
138 | virtual ~ListParser() {}; |
139 | }; | |
92fcbfc1 | 140 | /*}}}*/ |
2e5f4e45 | 141 | |
b2e465d6 AL |
142 | bool pkgMakeStatusCache(pkgSourceList &List,OpProgress &Progress, |
143 | MMap **OutMap = 0,bool AllowMem = false); | |
144 | bool pkgMakeOnlyStatusCache(OpProgress &Progress,DynamicMMap **OutMap); | |
145 | ||
2e5f4e45 | 146 | |
b2e465d6 AL |
147 | #ifdef APT_COMPATIBILITY |
148 | #if APT_COMPATIBILITY != 986 | |
149 | #warning "Using APT_COMPATIBILITY" | |
150 | #endif | |
151 | MMap *pkgMakeStatusCacheMem(pkgSourceList &List,OpProgress &Progress) | |
152 | { | |
153 | MMap *Map = 0; | |
2e5f4e45 | 154 | if (pkgCacheGenerator::MakeStatusCache(List,&Progress,&Map,true) == false) |
b2e465d6 AL |
155 | return 0; |
156 | return Map; | |
157 | } | |
158 | #endif | |
ddc1d8d0 | 159 | |
578bfd0a | 160 | #endif |