remove an extra argument for the error mesage format
[ntk/apt.git] / apt-pkg / deb / deblistparser.h
CommitLineData
f55a958f
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
b2e465d6 3// $Id: deblistparser.h,v 1.9 2001/02/20 07:03:17 jgg Exp $
f55a958f
AL
4/* ######################################################################
5
6 Debian Package List Parser - This implements the abstract parser
7 interface for Debian package files
8
9 ##################################################################### */
10 /*}}}*/
f55a958f
AL
11#ifndef PKGLIB_DEBLISTPARSER_H
12#define PKGLIB_DEBLISTPARSER_H
13
094a497d 14#include <apt-pkg/pkgcachegen.h>
a52f938b 15#include <apt-pkg/indexfile.h>
094a497d 16#include <apt-pkg/tagfile.h>
f55a958f
AL
17
18class debListParser : public pkgCacheGenerator::ListParser
19{
b2e465d6
AL
20 public:
21
f55a958f
AL
22 // Parser Helper
23 struct WordList
24 {
b2e465d6 25 const char *Str;
f55a958f
AL
26 unsigned char Val;
27 };
6d38011b 28
b2e465d6 29 private:
ff72bd0d
MV
30 /** \brief dpointer placeholder (for later in case we need it) */
31 void *d;
6d38011b 32
36b8ebbb 33 protected:
b2e465d6
AL
34 pkgTagFile Tags;
35 pkgTagSection Section;
36 unsigned long iOffset;
37 string Arch;
dcfa253f
DK
38 std::vector<std::string> Architectures;
39 bool MultiArchEnabled;
40
f55a958f 41 unsigned long UniqFindTagWrite(const char *Tag);
6d38011b 42 virtual bool ParseStatus(pkgCache::PkgIterator &Pkg,pkgCache::VerIterator &Ver);
32b9a14c 43 bool ParseDepends(pkgCache::VerIterator &Ver,const char *Tag,
dcb79bae 44 unsigned int Type);
32b9a14c 45 bool ParseProvides(pkgCache::VerIterator &Ver);
60dcec6d 46 bool NewProvidesAllArch(pkgCache::VerIterator &Ver, string const &Package, string const &Version);
b2e465d6 47 static bool GrabWord(string Word,WordList *List,unsigned char &Out);
f55a958f
AL
48
49 public:
b2e465d6
AL
50
51 static unsigned char GetPrio(string Str);
52
f55a958f
AL
53 // These all operate against the current section
54 virtual string Package();
5bf15716 55 virtual string Architecture();
857e9c13 56 virtual bool ArchitectureAll();
f55a958f 57 virtual string Version();
32b9a14c 58 virtual bool NewVersion(pkgCache::VerIterator &Ver);
a52f938b
OS
59 virtual string Description();
60 virtual string DescriptionLanguage();
61 virtual MD5SumValue Description_md5();
204fbdcc 62 virtual unsigned short VersionHash();
32b9a14c
DK
63 virtual bool UsePackage(pkgCache::PkgIterator &Pkg,
64 pkgCache::VerIterator &Ver);
dcb79bae
AL
65 virtual unsigned long Offset() {return iOffset;};
66 virtual unsigned long Size() {return Section.size();};
f55a958f
AL
67
68 virtual bool Step();
b2e465d6 69
32b9a14c 70 bool LoadReleaseInfo(pkgCache::PkgFileIterator &FileI,FileFd &File,
e011829d 71 string section);
f55a958f 72
b2e465d6
AL
73 static const char *ParseDepends(const char *Start,const char *Stop,
74 string &Package,string &Ver,unsigned int &Op,
41c81fd8 75 bool const &ParseArchFlags = false,
889c669b 76 bool const &StripMultiArch = true);
b2e465d6
AL
77 static const char *ConvertRelation(const char *I,unsigned int &Op);
78
5dd4c8b8 79 debListParser(FileFd *File, string const &Arch = "");
ff72bd0d 80 virtual ~debListParser() {};
f55a958f
AL
81};
82
83#endif