]>
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; |
2f6a2fbb | 54 | |
c8a4ce6c | 55 | debRecordParserBase(); |
2f6a2fbb DK |
56 | virtual ~debRecordParserBase(); |
57 | }; | |
58 | ||
59 | class APT_HIDDEN debRecordParser : public debRecordParserBase | |
60 | { | |
6c55f07a | 61 | void * const d; |
2f6a2fbb DK |
62 | protected: |
63 | FileFd File; | |
64 | pkgTagFile Tags; | |
65 | ||
3b302846 DK |
66 | virtual bool Jump(pkgCache::VerFileIterator const &Ver) APT_OVERRIDE; |
67 | virtual bool Jump(pkgCache::DescFileIterator const &Desc) APT_OVERRIDE; | |
2f6a2fbb DK |
68 | |
69 | public: | |
8f3ba4e8 | 70 | debRecordParser(std::string FileName,pkgCache &Cache); |
862bafea | 71 | virtual ~debRecordParser(); |
f55ece0e AL |
72 | }; |
73 | ||
0d29b9d4 | 74 | // custom record parser that reads deb files directly |
2f6a2fbb | 75 | class APT_HIDDEN debDebFileRecordParser : public debRecordParserBase |
0d29b9d4 | 76 | { |
6c55f07a | 77 | void * const d; |
2f6a2fbb DK |
78 | std::string debFileName; |
79 | std::string controlContent; | |
80 | ||
81 | APT_HIDDEN bool LoadContent(); | |
82 | protected: | |
83 | // single file files, so no jumping whatsoever | |
3b302846 DK |
84 | bool Jump(pkgCache::VerFileIterator const &) APT_OVERRIDE; |
85 | bool Jump(pkgCache::DescFileIterator const &) APT_OVERRIDE; | |
2f6a2fbb | 86 | |
0d29b9d4 | 87 | public: |
3b302846 | 88 | virtual std::string FileName() APT_OVERRIDE; |
2f6a2fbb | 89 | |
c8a4ce6c DK |
90 | debDebFileRecordParser(std::string FileName); |
91 | virtual ~debDebFileRecordParser(); | |
0d29b9d4 MV |
92 | }; |
93 | ||
f55ece0e | 94 | #endif |