]>
Commit | Line | Data |
---|---|---|
f55ece0e AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
a7c835af | 3 | // $Id: debrecords.h,v 1.8 2001/03/13 06:51:46 jgg Exp $ |
f55ece0e AL |
4 | /* ###################################################################### |
5 | ||
6 | Debian Package Records - Parser for debian package records | |
7 | ||
8 | This provides display-type parsing for the Packages file. This is | |
9 | different than the the list parser which provides cache generation | |
10 | services. There should be no overlap between these two. | |
11 | ||
12 | ##################################################################### */ | |
13 | /*}}}*/ | |
f55ece0e AL |
14 | #ifndef PKGLIB_DEBRECORDS_H |
15 | #define PKGLIB_DEBRECORDS_H | |
16 | ||
f55ece0e AL |
17 | #include <apt-pkg/pkgrecords.h> |
18 | #include <apt-pkg/tagfile.h> | |
472ff00e | 19 | #include <apt-pkg/fileutl.h> |
453b82a3 DK |
20 | #include <apt-pkg/pkgcache.h> |
21 | ||
22 | #include <string> | |
f55ece0e | 23 | |
b9dadc24 DK |
24 | #ifndef APT_8_CLEANER_HEADERS |
25 | #include <apt-pkg/indexfile.h> | |
26 | #endif | |
27 | ||
2f6a2fbb | 28 | class APT_HIDDEN debRecordParserBase : public pkgRecords::Parser |
f55ece0e | 29 | { |
6c55f07a | 30 | void * const d; |
0d29b9d4 | 31 | protected: |
f55ece0e | 32 | pkgTagSection Section; |
7e798dd7 | 33 | |
2f6a2fbb | 34 | public: |
7e798dd7 | 35 | // These refer to the archive file for the Version |
3b302846 DK |
36 | virtual std::string FileName() APT_OVERRIDE; |
37 | virtual std::string SourcePkg() APT_OVERRIDE; | |
38 | virtual std::string SourceVer() APT_OVERRIDE; | |
b3501edb | 39 | |
3b302846 | 40 | virtual HashStringList Hashes() const APT_OVERRIDE; |
b3501edb | 41 | |
7e798dd7 | 42 | // These are some general stats about the package |
3b302846 DK |
43 | virtual std::string Maintainer() APT_OVERRIDE; |
44 | virtual std::string ShortDesc(std::string const &lang) APT_OVERRIDE; | |
45 | virtual std::string LongDesc(std::string const &lang) APT_OVERRIDE; | |
46 | virtual std::string Name() APT_OVERRIDE; | |
ef1e4dfd | 47 | virtual std::string Display() APT_OVERRIDE; |
3b302846 | 48 | virtual std::string Homepage() APT_OVERRIDE; |
b2e465d6 | 49 | |
75bda619 | 50 | // An arbitrary custom field |
3b302846 | 51 | virtual std::string RecordField(const char *fieldName) APT_OVERRIDE; |
75bda619 | 52 | |
3b302846 | 53 | virtual void GetRec(const char *&Start,const char *&Stop) APT_OVERRIDE; |
f3514c6d | 54 | virtual bool Find(const char *Tag,const char *&Start, const char *&End) APT_OVERRIDE; |
2f6a2fbb | 55 | |
c8a4ce6c | 56 | debRecordParserBase(); |
2f6a2fbb DK |
57 | virtual ~debRecordParserBase(); |
58 | }; | |
59 | ||
60 | class APT_HIDDEN debRecordParser : public debRecordParserBase | |
61 | { | |
6c55f07a | 62 | void * const d; |
2f6a2fbb DK |
63 | protected: |
64 | FileFd File; | |
65 | pkgTagFile Tags; | |
66 | ||
3b302846 DK |
67 | virtual bool Jump(pkgCache::VerFileIterator const &Ver) APT_OVERRIDE; |
68 | virtual bool Jump(pkgCache::DescFileIterator const &Desc) APT_OVERRIDE; | |
2f6a2fbb DK |
69 | |
70 | public: | |
8f3ba4e8 | 71 | debRecordParser(std::string FileName,pkgCache &Cache); |
862bafea | 72 | virtual ~debRecordParser(); |
f55ece0e AL |
73 | }; |
74 | ||
0d29b9d4 | 75 | // custom record parser that reads deb files directly |
2f6a2fbb | 76 | class APT_HIDDEN debDebFileRecordParser : public debRecordParserBase |
0d29b9d4 | 77 | { |
6c55f07a | 78 | void * const d; |
2f6a2fbb DK |
79 | std::string debFileName; |
80 | std::string controlContent; | |
81 | ||
82 | APT_HIDDEN bool LoadContent(); | |
83 | protected: | |
84 | // single file files, so no jumping whatsoever | |
3b302846 DK |
85 | bool Jump(pkgCache::VerFileIterator const &) APT_OVERRIDE; |
86 | bool Jump(pkgCache::DescFileIterator const &) APT_OVERRIDE; | |
2f6a2fbb | 87 | |
0d29b9d4 | 88 | public: |
3b302846 | 89 | virtual std::string FileName() APT_OVERRIDE; |
2f6a2fbb | 90 | |
c8a4ce6c DK |
91 | debDebFileRecordParser(std::string FileName); |
92 | virtual ~debDebFileRecordParser(); | |
0d29b9d4 MV |
93 | }; |
94 | ||
f55ece0e | 95 | #endif |