]>
Commit | Line | Data |
---|---|---|
11e7af84 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
c33b707e | 3 | // $Id: debsrcrecords.h,v 1.8 2004/03/17 05:58:54 mdz Exp $ |
11e7af84 AL |
4 | /* ###################################################################### |
5 | ||
6 | Debian Source Package Records - Parser implementation for Debian style | |
7 | source indexes | |
8 | ||
9 | ##################################################################### */ | |
10 | /*}}}*/ | |
11 | #ifndef PKGLIB_DEBSRCRECORDS_H | |
12 | #define PKGLIB_DEBSRCRECORDS_H | |
13 | ||
11e7af84 AL |
14 | |
15 | #include <apt-pkg/srcrecords.h> | |
16 | #include <apt-pkg/tagfile.h> | |
b2e465d6 | 17 | #include <apt-pkg/fileutl.h> |
11e7af84 AL |
18 | |
19 | class debSrcRecordParser : public pkgSrcRecords::Parser | |
20 | { | |
ff72bd0d MV |
21 | /** \brief dpointer placeholder (for later in case we need it) */ |
22 | void *d; | |
23 | ||
b2e465d6 | 24 | FileFd Fd; |
11e7af84 AL |
25 | pkgTagFile Tags; |
26 | pkgTagSection Sect; | |
39fb1e24 | 27 | std::vector<const char*> StaticBinList; |
11e7af84 | 28 | unsigned long iOffset; |
4ab24e53 | 29 | char *Buffer; |
11e7af84 AL |
30 | |
31 | public: | |
32 | ||
33 | virtual bool Restart() {return Tags.Jump(Sect,0);}; | |
34 | virtual bool Step() {iOffset = Tags.Offset(); return Tags.Step(Sect);}; | |
41c81fd8 | 35 | virtual bool Jump(unsigned long const &Off) {iOffset = Off; return Tags.Jump(Sect,Off);}; |
11e7af84 | 36 | |
8f3ba4e8 DK |
37 | virtual std::string Package() const {return Sect.FindS("Package");}; |
38 | virtual std::string Version() const {return Sect.FindS("Version");}; | |
39 | virtual std::string Maintainer() const {return Sect.FindS("Maintainer");}; | |
40 | virtual std::string Section() const {return Sect.FindS("Section");}; | |
11e7af84 | 41 | virtual const char **Binaries(); |
8f3ba4e8 | 42 | virtual bool BuildDepends(std::vector<BuildDepRec> &BuildDeps, bool const &ArchOnly, bool const &StripMultiArch = true); |
11e7af84 | 43 | virtual unsigned long Offset() {return iOffset;}; |
8f3ba4e8 | 44 | virtual std::string AsStr() |
f8f410f5 | 45 | { |
aaee8293 | 46 | const char *Start=0,*Stop=0; |
f8f410f5 | 47 | Sect.GetSection(Start,Stop); |
8f3ba4e8 | 48 | return std::string(Start,Stop); |
f8f410f5 | 49 | }; |
8f3ba4e8 | 50 | virtual bool Files(std::vector<pkgSrcRecords::File> &F); |
b2e465d6 | 51 | |
8f3ba4e8 | 52 | debSrcRecordParser(std::string const &File,pkgIndexFile const *Index) |
468720c5 | 53 | : Parser(Index), Fd(File,FileFd::ReadOnly, FileFd::Extension), Tags(&Fd,102400), |
39fb1e24 | 54 | Buffer(NULL) {} |
ff72bd0d | 55 | virtual ~debSrcRecordParser(); |
11e7af84 AL |
56 | }; |
57 | ||
58 | #endif |