]>
Commit | Line | Data |
---|---|---|
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> | |
ce62f1de | 18 | #include <apt-pkg/macros.h> |
453b82a3 DK |
19 | |
20 | #include <string> | |
21 | #include <vector> | |
f55a958f | 22 | |
b9dadc24 DK |
23 | #ifndef APT_8_CLEANER_HEADERS |
24 | #include <apt-pkg/indexfile.h> | |
25 | #endif | |
26 | ||
453b82a3 DK |
27 | class FileFd; |
28 | ||
dce45dbe | 29 | class APT_HIDDEN debListParser : public pkgCacheGenerator::ListParser |
f55a958f | 30 | { |
b2e465d6 AL |
31 | public: |
32 | ||
f55a958f AL |
33 | // Parser Helper |
34 | struct WordList | |
35 | { | |
b2e465d6 | 36 | const char *Str; |
f55a958f AL |
37 | unsigned char Val; |
38 | }; | |
6d38011b | 39 | |
b2e465d6 | 40 | private: |
ff72bd0d | 41 | /** \brief dpointer placeholder (for later in case we need it) */ |
6c55f07a | 42 | void * const d; |
6d38011b | 43 | |
36b8ebbb | 44 | protected: |
b2e465d6 AL |
45 | pkgTagFile Tags; |
46 | pkgTagSection Section; | |
4ad8619b | 47 | map_filesize_t iOffset; |
8f3ba4e8 | 48 | std::string Arch; |
dcfa253f DK |
49 | std::vector<std::string> Architectures; |
50 | bool MultiArchEnabled; | |
51 | ||
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 | 56 | static bool GrabWord(std::string Word,WordList *List,unsigned char &Out); |
0d29b9d4 MV |
57 | APT_HIDDEN unsigned char ParseMultiArch(bool const showErrors); |
58 | ||
f55a958f | 59 | public: |
b2e465d6 | 60 | |
dce45dbe | 61 | APT_PUBLIC static unsigned char GetPrio(std::string Str); |
b2e465d6 | 62 | |
f55a958f | 63 | // These all operate against the current section |
3b302846 DK |
64 | virtual std::string Package() APT_OVERRIDE; |
65 | virtual std::string Architecture() APT_OVERRIDE; | |
66 | virtual bool ArchitectureAll() APT_OVERRIDE; | |
67 | virtual std::string Version() APT_OVERRIDE; | |
68 | virtual bool NewVersion(pkgCache::VerIterator &Ver) APT_OVERRIDE; | |
69 | virtual std::string Description(std::string const &lang) APT_OVERRIDE; | |
70 | virtual std::vector<std::string> AvailableDescriptionLanguages() APT_OVERRIDE; | |
71 | virtual MD5SumValue Description_md5() APT_OVERRIDE; | |
72 | virtual unsigned short VersionHash() APT_OVERRIDE; | |
3b302846 | 73 | virtual bool SameVersion(unsigned short const Hash, pkgCache::VerIterator const &Ver) APT_OVERRIDE; |
32b9a14c | 74 | virtual bool UsePackage(pkgCache::PkgIterator &Pkg, |
3b302846 DK |
75 | pkgCache::VerIterator &Ver) APT_OVERRIDE; |
76 | virtual map_filesize_t Offset() APT_OVERRIDE {return iOffset;}; | |
77 | virtual map_filesize_t Size() APT_OVERRIDE {return Section.size();}; | |
f55a958f | 78 | |
3b302846 | 79 | virtual bool Step() APT_OVERRIDE; |
b07aeb1a DK |
80 | |
81 | bool LoadReleaseInfo(pkgCache::RlsFileIterator &FileI,FileFd &File, | |
82 | std::string const §ion); | |
565ded7b | 83 | |
dce45dbe | 84 | APT_PUBLIC static const char *ParseDepends(const char *Start,const char *Stop, |
565ded7b | 85 | std::string &Package,std::string &Ver,unsigned int &Op); |
dce45dbe | 86 | APT_PUBLIC static const char *ParseDepends(const char *Start,const char *Stop, |
565ded7b JS |
87 | std::string &Package,std::string &Ver,unsigned int &Op, |
88 | bool const &ParseArchFlags); | |
dce45dbe | 89 | APT_PUBLIC static const char *ParseDepends(const char *Start,const char *Stop, |
565ded7b JS |
90 | std::string &Package,std::string &Ver,unsigned int &Op, |
91 | bool const &ParseArchFlags, bool const &StripMultiArch); | |
dce45dbe | 92 | APT_PUBLIC static const char *ParseDepends(const char *Start,const char *Stop, |
565ded7b JS |
93 | std::string &Package,std::string &Ver,unsigned int &Op, |
94 | bool const &ParseArchFlags, bool const &StripMultiArch, | |
95 | bool const &ParseRestrictionsList); | |
96 | ||
dce45dbe | 97 | APT_PUBLIC static const char *ConvertRelation(const char *I,unsigned int &Op); |
b2e465d6 | 98 | |
8f3ba4e8 | 99 | debListParser(FileFd *File, std::string const &Arch = ""); |
862bafea | 100 | virtual ~debListParser(); |
0d29b9d4 | 101 | }; |
e33dbfe5 | 102 | |
dce45dbe | 103 | class APT_HIDDEN debDebFileParser : public debListParser |
0d29b9d4 MV |
104 | { |
105 | private: | |
106 | std::string DebFile; | |
107 | ||
108 | public: | |
109 | debDebFileParser(FileFd *File, std::string const &DebFile); | |
110 | virtual bool UsePackage(pkgCache::PkgIterator &Pkg, | |
3b302846 | 111 | pkgCache::VerIterator &Ver) APT_OVERRIDE; |
f55a958f AL |
112 | }; |
113 | ||
dce45dbe | 114 | class APT_HIDDEN debTranslationsParser : public debListParser |
bc1c9081 MV |
115 | { |
116 | public: | |
117 | // a translation can never be a real package | |
3b302846 DK |
118 | virtual std::string Architecture() APT_OVERRIDE { return ""; } |
119 | virtual std::string Version() APT_OVERRIDE { return ""; } | |
bc1c9081 MV |
120 | |
121 | debTranslationsParser(FileFd *File, std::string const &Arch = "") | |
122 | : debListParser(File, Arch) {}; | |
123 | }; | |
124 | ||
f55a958f | 125 | #endif |