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