]>
Commit | Line | Data |
---|---|---|
1 | // -*- mode: cpp; mode: fold -*- | |
2 | // Description /*{{{*/ | |
3 | // $Id: pkgrecords.h,v 1.6 2001/03/13 06:51:46 jgg Exp $ | |
4 | /* ###################################################################### | |
5 | ||
6 | Package Records - Allows access to complete package description records | |
7 | directly from the file. | |
8 | ||
9 | The package record system abstracts the actual parsing of the | |
10 | package files. This is different than the generators parser in that | |
11 | it is used to access information not generate information. No | |
12 | information touched by the generator should be parable from here as | |
13 | it can always be retreived directly from the cache. | |
14 | ||
15 | ##################################################################### */ | |
16 | /*}}}*/ | |
17 | #ifndef PKGLIB_PKGRECORDS_H | |
18 | #define PKGLIB_PKGRECORDS_H | |
19 | ||
20 | #include <apt-pkg/pkgcache.h> | |
21 | #include <apt-pkg/hashes.h> | |
22 | #include <apt-pkg/macros.h> | |
23 | ||
24 | #include <string> | |
25 | #include <vector> | |
26 | ||
27 | class pkgRecords /*{{{*/ | |
28 | { | |
29 | public: | |
30 | class Parser; | |
31 | ||
32 | private: | |
33 | /** \brief dpointer placeholder (for later in case we need it) */ | |
34 | void * const d; | |
35 | ||
36 | pkgCache &Cache; | |
37 | std::vector<Parser *>Files; | |
38 | ||
39 | public: | |
40 | // Lookup function | |
41 | Parser &Lookup(pkgCache::VerFileIterator const &Ver); | |
42 | Parser &Lookup(pkgCache::DescFileIterator const &Desc); | |
43 | ||
44 | // Construct destruct | |
45 | explicit pkgRecords(pkgCache &Cache); | |
46 | virtual ~pkgRecords(); | |
47 | }; | |
48 | /*}}}*/ | |
49 | class pkgRecords::Parser /*{{{*/ | |
50 | { | |
51 | protected: | |
52 | ||
53 | virtual bool Jump(pkgCache::VerFileIterator const &Ver) = 0; | |
54 | virtual bool Jump(pkgCache::DescFileIterator const &Desc) = 0; | |
55 | ||
56 | public: | |
57 | friend class pkgRecords; | |
58 | ||
59 | // These refer to the archive file for the Version | |
60 | virtual std::string FileName() {return std::string();}; | |
61 | virtual std::string SourcePkg() {return std::string();}; | |
62 | virtual std::string SourceVer() {return std::string();}; | |
63 | ||
64 | /** return all known hashes in this record. | |
65 | * | |
66 | * For authentication proposes packages come with hashsums which | |
67 | * this method is supposed to parse and return so that clients can | |
68 | * choose the hash to be used. | |
69 | */ | |
70 | virtual HashStringList Hashes() const { return HashStringList(); }; | |
71 | APT_DEPRECATED_MSG("Use .Hashes instead of a hardcoded hash algorithm") std::string MD5Hash() const { return GetHashFromHashes("MD5Sum"); }; | |
72 | APT_DEPRECATED_MSG("Use .Hashes instead of a hardcoded hash algorithm") std::string SHA1Hash() const { return GetHashFromHashes("SHA1"); }; | |
73 | APT_DEPRECATED_MSG("Use .Hashes instead of a hardcoded hash algorithm") std::string SHA256Hash() const { return GetHashFromHashes("SHA256"); }; | |
74 | APT_DEPRECATED_MSG("Use .Hashes instead of a hardcoded hash algorithm") std::string SHA512Hash() const { return GetHashFromHashes("SHA512"); }; | |
75 | ||
76 | // These are some general stats about the package | |
77 | virtual std::string Maintainer() {return std::string();}; | |
78 | /** return short description in language from record. | |
79 | * | |
80 | * @see #LongDesc | |
81 | */ | |
82 | virtual std::string ShortDesc(std::string const &/*lang*/) {return std::string();}; | |
83 | /** return long description in language from record. | |
84 | * | |
85 | * If \b lang is empty the "best" available language will be | |
86 | * returned as determined by the APT::Languages configuration. | |
87 | * If a (requested) language can't be found in this record an empty | |
88 | * string will be returned. | |
89 | */ | |
90 | virtual std::string LongDesc(std::string const &/*lang*/) {return std::string();}; | |
91 | std::string ShortDesc() {return ShortDesc("");}; | |
92 | std::string LongDesc() {return LongDesc("");}; | |
93 | ||
94 | virtual std::string Name() {return std::string();}; | |
95 | virtual std::string Homepage() {return std::string();} | |
96 | ||
97 | // An arbitrary custom field | |
98 | virtual std::string RecordField(const char * /*fieldName*/) { return std::string();}; | |
99 | ||
100 | // The record in binary form | |
101 | virtual void GetRec(const char *&Start,const char *&Stop) {Start = Stop = 0;}; | |
102 | ||
103 | Parser(); | |
104 | virtual ~Parser(); | |
105 | ||
106 | private: | |
107 | void * const d; | |
108 | APT_HIDDEN std::string GetHashFromHashes(char const * const type) const | |
109 | { | |
110 | HashStringList const hashes = Hashes(); | |
111 | HashString const * const hs = hashes.find(type); | |
112 | return hs != NULL ? hs->HashValue() : ""; | |
113 | }; | |
114 | }; | |
115 | /*}}}*/ | |
116 | #endif |