]>
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 MV |
41 | /** \brief dpointer placeholder (for later in case we need it) */ |
42 | void *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 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); | |
0d29b9d4 MV |
58 | APT_HIDDEN unsigned char ParseMultiArch(bool const showErrors); |
59 | ||
f55a958f | 60 | public: |
b2e465d6 | 61 | |
dce45dbe | 62 | APT_PUBLIC static unsigned char GetPrio(std::string Str); |
b2e465d6 | 63 | |
f55a958f | 64 | // These all operate against the current section |
8f3ba4e8 DK |
65 | virtual std::string Package(); |
66 | virtual std::string Architecture(); | |
857e9c13 | 67 | virtual bool ArchitectureAll(); |
8f3ba4e8 | 68 | virtual std::string Version(); |
32b9a14c | 69 | virtual bool NewVersion(pkgCache::VerIterator &Ver); |
ffe3c68e DK |
70 | virtual std::string Description(std::string const &lang); |
71 | virtual std::vector<std::string> AvailableDescriptionLanguages(); | |
a52f938b | 72 | virtual MD5SumValue Description_md5(); |
204fbdcc | 73 | virtual unsigned short VersionHash(); |
ccf6bdb3 | 74 | #if APT_PKG_ABI >= 413 |
68134bda DK |
75 | virtual bool SameVersion(unsigned short const Hash, pkgCache::VerIterator const &Ver); |
76 | #endif | |
32b9a14c DK |
77 | virtual bool UsePackage(pkgCache::PkgIterator &Pkg, |
78 | pkgCache::VerIterator &Ver); | |
4ad8619b DK |
79 | virtual map_filesize_t Offset() {return iOffset;}; |
80 | virtual map_filesize_t Size() {return Section.size();}; | |
f55a958f AL |
81 | |
82 | virtual bool Step(); | |
b07aeb1a DK |
83 | |
84 | bool LoadReleaseInfo(pkgCache::RlsFileIterator &FileI,FileFd &File, | |
85 | std::string const §ion); | |
565ded7b | 86 | |
dce45dbe | 87 | APT_PUBLIC static const char *ParseDepends(const char *Start,const char *Stop, |
565ded7b | 88 | std::string &Package,std::string &Ver,unsigned int &Op); |
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); | |
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); | |
dce45dbe | 95 | APT_PUBLIC static const char *ParseDepends(const char *Start,const char *Stop, |
565ded7b JS |
96 | std::string &Package,std::string &Ver,unsigned int &Op, |
97 | bool const &ParseArchFlags, bool const &StripMultiArch, | |
98 | bool const &ParseRestrictionsList); | |
99 | ||
dce45dbe | 100 | APT_PUBLIC static const char *ConvertRelation(const char *I,unsigned int &Op); |
b2e465d6 | 101 | |
8f3ba4e8 | 102 | debListParser(FileFd *File, std::string const &Arch = ""); |
862bafea | 103 | virtual ~debListParser(); |
0d29b9d4 | 104 | }; |
e33dbfe5 | 105 | |
dce45dbe | 106 | class APT_HIDDEN debDebFileParser : public debListParser |
0d29b9d4 MV |
107 | { |
108 | private: | |
109 | std::string DebFile; | |
110 | ||
111 | public: | |
112 | debDebFileParser(FileFd *File, std::string const &DebFile); | |
113 | virtual bool UsePackage(pkgCache::PkgIterator &Pkg, | |
114 | pkgCache::VerIterator &Ver); | |
f55a958f AL |
115 | }; |
116 | ||
dce45dbe | 117 | class APT_HIDDEN debTranslationsParser : public debListParser |
bc1c9081 MV |
118 | { |
119 | public: | |
120 | // a translation can never be a real package | |
121 | virtual std::string Architecture() { return ""; } | |
122 | virtual std::string Version() { return ""; } | |
123 | ||
124 | debTranslationsParser(FileFd *File, std::string const &Arch = "") | |
125 | : debListParser(File, Arch) {}; | |
126 | }; | |
127 | ||
f55a958f | 128 | #endif |