merged from debian-apt
[ntk/apt.git] / apt-pkg / deb / debsrcrecords.h
CommitLineData
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
19class 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;
b2e465d6 27 char *StaticBinList[400];
11e7af84 28 unsigned long iOffset;
4ab24e53 29 char *Buffer;
19ec5723 30 unsigned int BufSize;
11e7af84
AL
31
32 public:
33
34 virtual bool Restart() {return Tags.Jump(Sect,0);};
35 virtual bool Step() {iOffset = Tags.Offset(); return Tags.Step(Sect);};
41c81fd8 36 virtual bool Jump(unsigned long const &Off) {iOffset = Off; return Tags.Jump(Sect,Off);};
11e7af84 37
b2e465d6
AL
38 virtual string Package() const {return Sect.FindS("Package");};
39 virtual string Version() const {return Sect.FindS("Version");};
40 virtual string Maintainer() const {return Sect.FindS("Maintainer");};
41 virtual string Section() const {return Sect.FindS("Section");};
11e7af84 42 virtual const char **Binaries();
41c81fd8 43 virtual bool BuildDepends(vector<BuildDepRec> &BuildDeps, bool const &ArchOnly, bool const &StripMultiArch = true);
11e7af84 44 virtual unsigned long Offset() {return iOffset;};
f8f410f5
AL
45 virtual string AsStr()
46 {
aaee8293 47 const char *Start=0,*Stop=0;
f8f410f5
AL
48 Sect.GetSection(Start,Stop);
49 return string(Start,Stop);
50 };
36f610f1 51 virtual bool Files(vector<pkgSrcRecords::File> &F);
b2e465d6 52
41c81fd8 53 debSrcRecordParser(string const &File,pkgIndexFile const *Index)
c4fc2fd7 54 : Parser(Index), Fd(File,FileFd::ReadOnlyGzip), Tags(&Fd,102400),
4ab24e53 55 Buffer(0), BufSize(0) {}
ff72bd0d 56 virtual ~debSrcRecordParser();
11e7af84
AL
57};
58
59#endif