]>
git.saurik.com Git - apt.git/blob - apt-pkg/pkgcache.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: pkgcache.h,v 1.5 1998/07/07 04:17:03 jgg Exp $
4 /* ######################################################################
6 Cache - Structure definitions for the cache file
8 Please see doc/pkglib/cache.sgml for a more detailed description of
9 this format. Also be sure to keep that file up-to-date!!
11 Clients should always use the CacheIterators classes for access to the
12 cache. They provide a simple STL-like method for traversing the links
15 See pkgcachegen.h for information about generating cache structures.
17 ##################################################################### */
19 // Header section: pkglib
20 #ifndef PKGLIB_PKGCACHE_H
21 #define PKGLIB_PKGCACHE_H
24 #pragma interface "pkglib/pkgcache.h"
29 #include <pkglib/mmap.h>
34 // Cache element predeclarations
49 class PkgFileIterator
;
50 class VerFileIterator
;
55 friend PkgFileIterator
;
56 friend VerFileIterator
;
58 // These are all the constants used in the cache structures
61 enum DepType
{Depends
=1,PreDepends
=2,Suggests
=3,Recommends
=4,
62 Conflicts
=5,Replaces
=6};
63 enum DepCompareOp
{Or
=0x10,NoOp
=0,LessEq
=0x1,GreaterEq
=0x2,Less
=0x3,
64 Greater
=0x4,Equals
=0x5,NotEquals
=0x6};
69 enum VerPriority
{Important
=1,Required
=2,Standard
=3,Optional
=5,Extra
=5};
70 enum PkgSelectedState
{Unknown
=0,Install
=1,Hold
=2,DeInstall
=3,Purge
=4};
71 enum PkgInstState
{Ok
=0,ReInstReq
=1,HoldInst
=2,HoldReInstReq
=3};
72 enum PkgCurrentState
{NotInstalled
=0,UnPacked
=1,HalfConfigured
=2,
73 UnInstalled
=3,HalfInstalled
=4,ConfigFiles
=5,Installed
=6};
78 enum PkgFlags
{Auto
=(1<<0),New
=(1<<1),Obsolete
=(1<<2),Essential
=(1<<3),
79 ImmediateConf
=(1<<4)};
80 enum PkgFFlags
{NotSource
=(1<<0)};
85 // Memory mapped cache file
92 static unsigned long sHash(string S
);
93 static unsigned long sHash(const char *S
);
97 // Pointers to the arrays of items
101 PackageFile
*PkgFileP
;
105 StringItem
*StringItemP
;
108 virtual bool ReMap();
109 inline bool Sync() {return Map
.Sync();};
111 // String hashing function (512 range)
112 inline unsigned long Hash(string S
) const {return sHash(S
);};
113 inline unsigned long Hash(const char *S
) const {return sHash(S
);};
115 // Usefull transformation things
116 const char *Priority(unsigned char Priority
);
119 PkgIterator
FindPkg(string Name
);
120 Header
&Head() {return *HeaderP
;};
121 inline PkgIterator
PkgBegin();
122 inline PkgIterator
PkgEnd();
125 virtual ~pkgCache() {};
129 struct pkgCache::Header
131 // Signature information
132 unsigned long Signature
;
137 // Size of structure values
138 unsigned short HeaderSz
;
139 unsigned short PackageSz
;
140 unsigned short PackageFileSz
;
141 unsigned short VersionSz
;
142 unsigned short DependencySz
;
143 unsigned short ProvidesSz
;
144 unsigned short VerFileSz
;
147 unsigned long PackageCount
;
148 unsigned long VersionCount
;
149 unsigned long DependsCount
;
150 unsigned long PackageFileCount
;
153 unsigned long FileList
; // struct PackageFile
154 unsigned long StringList
; // struct StringItem
156 /* Allocation pools, there should be one of these for each structure
157 excluding the header */
158 DynamicMMap::Pool Pools
[7];
160 // Rapid package name lookup
161 unsigned long HashTable
[512];
163 bool CheckSizes(Header
&Against
) const;
167 struct pkgCache::Package
170 unsigned long Name
; // Stringtable
171 unsigned long VersionList
; // Version
172 unsigned long TargetVer
; // Version
173 unsigned long CurrentVer
; // Version
174 unsigned long TargetDist
; // StringTable (StringItem)
175 unsigned long Section
; // StringTable (StringItem)
178 unsigned long NextPackage
; // Package
179 unsigned long RevDepends
; // Dependency
180 unsigned long ProvidesList
; // Provides
182 // Install/Remove/Purge etc
183 unsigned char SelectedState
; // What
184 unsigned char InstState
; // Flags
185 unsigned char CurrentState
; // State
191 struct pkgCache::PackageFile
194 unsigned long FileName
; // Stringtable
195 unsigned long Version
; // Stringtable
196 unsigned long Distribution
; // Stringtable
200 unsigned long NextFile
; // PackageFile
203 time_t mtime
; // Modification time for the file
206 struct pkgCache::VerFile
208 unsigned long File
; // PackageFile
209 unsigned long NextFile
; // PkgVerFile
210 unsigned long Offset
;
214 struct pkgCache::Version
216 unsigned long VerStr
; // Stringtable
217 unsigned long Section
; // StringTable (StringItem)
220 unsigned long FileList
; // VerFile
221 unsigned long NextVer
; // Version
222 unsigned long DependsList
; // Dependency
223 unsigned long ParentPkg
; // Package
224 unsigned long ProvidesList
; // Provides
227 unsigned long InstalledSize
;
229 unsigned char Priority
;
232 struct pkgCache::Dependency
234 unsigned long Version
; // Stringtable
235 unsigned long Package
; // Package
236 unsigned long NextDepends
; // Dependency
237 unsigned long NextRevDepends
; // Dependency
238 unsigned long ParentVer
; // Version
240 // Specific types of depends
242 unsigned char CompareOp
;
246 struct pkgCache::Provides
248 unsigned long ParentPkg
; // Pacakge
249 unsigned long Version
; // Version
250 unsigned long ProvideVersion
; // Stringtable
251 unsigned long NextProvides
; // Provides
252 unsigned long NextPkgProv
; // Provides
255 struct pkgCache::StringItem
257 unsigned long String
; // Stringtable
258 unsigned long NextItem
; // StringItem
261 #include <pkglib/cacheiterators.h>
263 inline pkgCache::PkgIterator
pkgCache::PkgBegin()
264 {return PkgIterator(*this);};
265 inline pkgCache::PkgIterator
pkgCache::PkgEnd()
266 {return PkgIterator(*this,PkgP
);};