]>
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 | #include <apt-pkg/srcrecords.h> |
15 | #include <apt-pkg/tagfile.h> | |
b2e465d6 | 16 | #include <apt-pkg/fileutl.h> |
11e7af84 | 17 | |
453b82a3 DK |
18 | #include <stddef.h> |
19 | #include <string> | |
20 | #include <vector> | |
21 | ||
22 | class pkgIndexFile; | |
23 | ||
11e7af84 AL |
24 | class debSrcRecordParser : public pkgSrcRecords::Parser |
25 | { | |
ff72bd0d MV |
26 | /** \brief dpointer placeholder (for later in case we need it) */ |
27 | void *d; | |
28 | ||
b2e465d6 | 29 | FileFd Fd; |
11e7af84 AL |
30 | pkgTagFile Tags; |
31 | pkgTagSection Sect; | |
39fb1e24 | 32 | std::vector<const char*> StaticBinList; |
11e7af84 | 33 | unsigned long iOffset; |
4ab24e53 | 34 | char *Buffer; |
11e7af84 AL |
35 | |
36 | public: | |
37 | ||
6a9c9d63 | 38 | virtual bool Restart() {return Jump(0);}; |
11e7af84 | 39 | virtual bool Step() {iOffset = Tags.Offset(); return Tags.Step(Sect);}; |
41c81fd8 | 40 | virtual bool Jump(unsigned long const &Off) {iOffset = Off; return Tags.Jump(Sect,Off);}; |
11e7af84 | 41 | |
8f3ba4e8 DK |
42 | virtual std::string Package() const {return Sect.FindS("Package");}; |
43 | virtual std::string Version() const {return Sect.FindS("Version");}; | |
44 | virtual std::string Maintainer() const {return Sect.FindS("Maintainer");}; | |
45 | virtual std::string Section() const {return Sect.FindS("Section");}; | |
11e7af84 | 46 | virtual const char **Binaries(); |
8f3ba4e8 | 47 | virtual bool BuildDepends(std::vector<BuildDepRec> &BuildDeps, bool const &ArchOnly, bool const &StripMultiArch = true); |
11e7af84 | 48 | virtual unsigned long Offset() {return iOffset;}; |
8f3ba4e8 | 49 | virtual std::string AsStr() |
f8f410f5 | 50 | { |
aaee8293 | 51 | const char *Start=0,*Stop=0; |
f8f410f5 | 52 | Sect.GetSection(Start,Stop); |
8f3ba4e8 | 53 | return std::string(Start,Stop); |
f8f410f5 | 54 | }; |
8f3ba4e8 | 55 | virtual bool Files(std::vector<pkgSrcRecords::File> &F); |
b2e465d6 | 56 | |
8f3ba4e8 | 57 | debSrcRecordParser(std::string const &File,pkgIndexFile const *Index) |
6a9c9d63 DK |
58 | : Parser(Index), Fd(File,FileFd::ReadOnly, FileFd::Extension), Tags(&Fd,102400), |
59 | iOffset(0), Buffer(NULL) {} | |
ff72bd0d | 60 | virtual ~debSrcRecordParser(); |
11e7af84 AL |
61 | }; |
62 | ||
63 | #endif |