factor out parsing of MultiArch flag
[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
AL
14#include <apt-pkg/pkgcachegen.h>
15#include <apt-pkg/tagfile.h>
453b82a3
DK
16#include <apt-pkg/md5.h>
17#include <apt-pkg/pkgcache.h>
18
19#include <string>
20#include <vector>
f55a958f 21
b9dadc24
DK
22#ifndef APT_8_CLEANER_HEADERS
23#include <apt-pkg/indexfile.h>
24#endif
25
453b82a3
DK
26class FileFd;
27
f55a958f
AL
28class debListParser : public pkgCacheGenerator::ListParser
29{
b2e465d6
AL
30 public:
31
f55a958f
AL
32 // Parser Helper
33 struct WordList
34 {
b2e465d6 35 const char *Str;
f55a958f
AL
36 unsigned char Val;
37 };
6d38011b 38
b2e465d6 39 private:
ff72bd0d
MV
40 /** \brief dpointer placeholder (for later in case we need it) */
41 void *d;
6d38011b 42
36b8ebbb 43 protected:
b2e465d6
AL
44 pkgTagFile Tags;
45 pkgTagSection Section;
46 unsigned long iOffset;
8f3ba4e8 47 std::string Arch;
dcfa253f
DK
48 std::vector<std::string> Architectures;
49 bool MultiArchEnabled;
50
f55a958f 51 unsigned long UniqFindTagWrite(const char *Tag);
6d38011b 52 virtual bool ParseStatus(pkgCache::PkgIterator &Pkg,pkgCache::VerIterator &Ver);
32b9a14c 53 bool ParseDepends(pkgCache::VerIterator &Ver,const char *Tag,
dcb79bae 54 unsigned int Type);
32b9a14c 55 bool ParseProvides(pkgCache::VerIterator &Ver);
8f3ba4e8
DK
56 bool NewProvidesAllArch(pkgCache::VerIterator &Ver, std::string const &Package, std::string const &Version);
57 static bool GrabWord(std::string Word,WordList *List,unsigned char &Out);
f55a958f
AL
58
59 public:
b2e465d6 60
8f3ba4e8 61 static unsigned char GetPrio(std::string Str);
b2e465d6 62
f55a958f 63 // These all operate against the current section
8f3ba4e8
DK
64 virtual std::string Package();
65 virtual std::string Architecture();
857e9c13 66 virtual bool ArchitectureAll();
8f3ba4e8 67 virtual std::string Version();
32b9a14c 68 virtual bool NewVersion(pkgCache::VerIterator &Ver);
8f3ba4e8
DK
69 virtual std::string Description();
70 virtual std::string DescriptionLanguage();
a52f938b 71 virtual MD5SumValue Description_md5();
204fbdcc 72 virtual unsigned short VersionHash();
32b9a14c
DK
73 virtual bool UsePackage(pkgCache::PkgIterator &Pkg,
74 pkgCache::VerIterator &Ver);
dcb79bae
AL
75 virtual unsigned long Offset() {return iOffset;};
76 virtual unsigned long Size() {return Section.size();};
f55a958f
AL
77
78 virtual bool Step();
b2e465d6 79
32b9a14c 80 bool LoadReleaseInfo(pkgCache::PkgFileIterator &FileI,FileFd &File,
8f3ba4e8 81 std::string section);
565ded7b
JS
82
83 static const char *ParseDepends(const char *Start,const char *Stop,
84 std::string &Package,std::string &Ver,unsigned int &Op);
b2e465d6 85 static const char *ParseDepends(const char *Start,const char *Stop,
565ded7b
JS
86 std::string &Package,std::string &Ver,unsigned int &Op,
87 bool const &ParseArchFlags);
88 static const char *ParseDepends(const char *Start,const char *Stop,
89 std::string &Package,std::string &Ver,unsigned int &Op,
90 bool const &ParseArchFlags, bool const &StripMultiArch);
91 static const char *ParseDepends(const char *Start,const char *Stop,
92 std::string &Package,std::string &Ver,unsigned int &Op,
93 bool const &ParseArchFlags, bool const &StripMultiArch,
94 bool const &ParseRestrictionsList);
95
b2e465d6
AL
96 static const char *ConvertRelation(const char *I,unsigned int &Op);
97
8f3ba4e8 98 debListParser(FileFd *File, std::string const &Arch = "");
ff72bd0d 99 virtual ~debListParser() {};
e33dbfe5
DK
100
101 private:
102 unsigned char ParseMultiArch(bool const showErrors);
f55a958f
AL
103};
104
105#endif