]>
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 | { |
0d29b9d4 | 30 | protected: |
f55ece0e | 31 | pkgTagSection Section; |
7e798dd7 | 32 | |
2f6a2fbb | 33 | public: |
7e798dd7 | 34 | // These refer to the archive file for the Version |
8f3ba4e8 | 35 | virtual std::string FileName(); |
8f3ba4e8 DK |
36 | virtual std::string SourcePkg(); |
37 | virtual std::string SourceVer(); | |
b3501edb DK |
38 | |
39 | virtual HashStringList Hashes() const; | |
40 | ||
7e798dd7 | 41 | // These are some general stats about the package |
8f3ba4e8 | 42 | virtual std::string Maintainer(); |
ffe3c68e DK |
43 | virtual std::string ShortDesc(std::string const &lang); |
44 | virtual std::string LongDesc(std::string const &lang); | |
8f3ba4e8 DK |
45 | virtual std::string Name(); |
46 | virtual std::string Homepage(); | |
b2e465d6 | 47 | |
75bda619 | 48 | // An arbitrary custom field |
8f3ba4e8 | 49 | virtual std::string RecordField(const char *fieldName); |
75bda619 | 50 | |
b2e465d6 | 51 | virtual void GetRec(const char *&Start,const char *&Stop); |
2f6a2fbb DK |
52 | |
53 | debRecordParserBase() : Parser() {} | |
54 | virtual ~debRecordParserBase(); | |
55 | }; | |
56 | ||
57 | class APT_HIDDEN debRecordParser : public debRecordParserBase | |
58 | { | |
59 | protected: | |
60 | FileFd File; | |
61 | pkgTagFile Tags; | |
62 | ||
63 | virtual bool Jump(pkgCache::VerFileIterator const &Ver); | |
64 | virtual bool Jump(pkgCache::DescFileIterator const &Desc); | |
65 | ||
66 | public: | |
8f3ba4e8 | 67 | debRecordParser(std::string FileName,pkgCache &Cache); |
862bafea | 68 | virtual ~debRecordParser(); |
f55ece0e AL |
69 | }; |
70 | ||
0d29b9d4 | 71 | // custom record parser that reads deb files directly |
2f6a2fbb | 72 | class APT_HIDDEN debDebFileRecordParser : public debRecordParserBase |
0d29b9d4 | 73 | { |
2f6a2fbb DK |
74 | std::string debFileName; |
75 | std::string controlContent; | |
76 | ||
77 | APT_HIDDEN bool LoadContent(); | |
78 | protected: | |
79 | // single file files, so no jumping whatsoever | |
80 | bool Jump(pkgCache::VerFileIterator const &) { return LoadContent(); } | |
81 | bool Jump(pkgCache::DescFileIterator const &) { return LoadContent(); } | |
82 | ||
0d29b9d4 | 83 | public: |
2f6a2fbb DK |
84 | virtual std::string FileName() { return debFileName; } |
85 | ||
86 | debDebFileRecordParser(std::string FileName) | |
87 | : debRecordParserBase(), debFileName(FileName) {}; | |
0d29b9d4 MV |
88 | }; |
89 | ||
f55ece0e | 90 | #endif |