]>
git.saurik.com Git - apt-legacy.git/blob - apt-pkg/indexfile.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: indexfile.h,v 1.6.2.1 2003/12/24 23:09:17 mdz Exp $
4 /* ######################################################################
6 Index File - Abstraction for an index of archive/source file.
8 There are 3 primary sorts of index files, all represented by this
12 Bianry index files decribing the local system
15 They are all bundled together here, and the interfaces for
16 sources.list, acquire, cache gen and record parsing all use this class
17 to acess the underlying representation.
19 ##################################################################### */
21 #ifndef PKGLIB_INDEXFILE_H
22 #define PKGLIB_INDEXFILE_H
25 #pragma interface "apt-pkg/indexfile.h"
29 #include <apt-pkg/pkgcache.h>
30 #include <apt-pkg/srcrecords.h>
31 #include <apt-pkg/pkgrecords.h>
36 class pkgCacheGenerator
;
49 // Global list of Items supported
50 static Type
**GlobalList
;
51 static unsigned long GlobalListLen
;
52 static Type
*GetType(const char *Type
);
56 virtual pkgRecords::Parser
*CreatePkgParser(pkgCache::PkgFileIterator
/*File*/) const {return 0;};
61 virtual const Type
*GetType() const = 0;
63 // Return descriptive strings of various sorts
64 virtual string
ArchiveInfo(pkgCache::VerIterator Ver
) const;
65 virtual string
SourceInfo(pkgSrcRecords::Parser
const &Record
,
66 pkgSrcRecords::File
const &File
) const;
67 virtual string
Describe(bool Short
= false) const = 0;
69 // Interface for acquire
70 virtual string
ArchiveURI(string
/*File*/) const {return string();};
72 // Interface for the record parsers
73 virtual pkgSrcRecords::Parser
*CreateSrcParser() const {return 0;};
75 // Interface for the Cache Generator
76 virtual bool Exists() const = 0;
77 virtual bool HasPackages() const = 0;
78 virtual unsigned long Size() const = 0;
79 virtual bool Merge(pkgCacheGenerator
&/*Gen*/,OpProgress
&/*Prog*/) const {return false;};
80 virtual bool MergeFileProvides(pkgCacheGenerator
&/*Gen*/,OpProgress
&/*Prog*/) const {return true;};
81 virtual pkgCache::PkgFileIterator
FindInCache(pkgCache
&Cache
) const;
83 bool IsTrusted() const { return Trusted
; };
85 pkgIndexFile(bool Trusted
): Trusted(Trusted
) {};
86 virtual ~pkgIndexFile() {};