| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // -*- mode: cpp; mode: fold -*-
- // Description /*{{{*/
- // $Id: debsrcrecords.h,v 1.8 2004/03/17 05:58:54 mdz Exp $
- /* ######################################################################
-
- Debian Source Package Records - Parser implementation for Debian style
- source indexes
-
- ##################################################################### */
- /*}}}*/
- #ifndef PKGLIB_DEBSRCRECORDS_H
- #define PKGLIB_DEBSRCRECORDS_H
- #include <apt-pkg/srcrecords.h>
- #include <apt-pkg/tagfile.h>
- #include <apt-pkg/fileutl.h>
- class debSrcRecordParser : public pkgSrcRecords::Parser
- {
- FileFd Fd;
- pkgTagFile Tags;
- pkgTagSection Sect;
- char *StaticBinList[400];
- unsigned long iOffset;
- char *Buffer;
- unsigned int BufSize;
-
- public:
- virtual bool Restart() {return Tags.Jump(Sect,0);};
- virtual bool Step() {iOffset = Tags.Offset(); return Tags.Step(Sect);};
- virtual bool Jump(unsigned long const &Off) {iOffset = Off; return Tags.Jump(Sect,Off);};
- virtual string Package() const {return Sect.FindS("Package");};
- virtual string Version() const {return Sect.FindS("Version");};
- virtual string Maintainer() const {return Sect.FindS("Maintainer");};
- virtual string Section() const {return Sect.FindS("Section");};
- virtual const char **Binaries();
- virtual bool BuildDepends(vector<BuildDepRec> &BuildDeps, bool const &ArchOnly, bool const &StripMultiArch = true);
- virtual unsigned long Offset() {return iOffset;};
- virtual string AsStr()
- {
- const char *Start=0,*Stop=0;
- Sect.GetSection(Start,Stop);
- return string(Start,Stop);
- };
- virtual bool Files(vector<pkgSrcRecords::File> &F);
- debSrcRecordParser(string const &File,pkgIndexFile const *Index)
- : Parser(Index), Fd(File,FileFd::ReadOnlyGzip), Tags(&Fd,102400),
- Buffer(0), BufSize(0) {}
- ~debSrcRecordParser();
- };
- #endif
|