You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.9 KiB
58 lines
1.9 KiB
// -*- 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
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface "apt-pkg/debsrcrecords.h"
|
|
#endif
|
|
|
|
#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 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 ArchOnly);
|
|
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 File,pkgIndexFile const *Index)
|
|
: Parser(Index), Fd(File,FileFd::ReadOnly), Tags(&Fd,102400),
|
|
Buffer(0), BufSize(0) {}
|
|
};
|
|
|
|
#endif
|
|
|