]>
Commit | Line | Data |
---|---|---|
578bfd0a AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
578bfd0a AL |
3 | /* ###################################################################### |
4 | ||
5 | Fast scanner for RFC-822 type header information | |
6 | ||
7 | This parser handles Debian package files (and others). Their form is | |
b2e465d6 | 8 | RFC-822 type header fields in groups separated by a blank line. |
578bfd0a | 9 | |
6fc33863 | 10 | The parser reads the file and provides methods to step linearly |
578bfd0a AL |
11 | over it or to jump to a pre-recorded start point and read that record. |
12 | ||
13 | A second class is used to perform pre-parsing of the record. It works | |
14 | by indexing the start of each header field and providing lookup | |
15 | functions for header fields. | |
16 | ||
17 | ##################################################################### */ | |
18 | /*}}}*/ | |
578bfd0a AL |
19 | #ifndef PKGLIB_TAGFILE_H |
20 | #define PKGLIB_TAGFILE_H | |
21 | ||
ce62f1de DK |
22 | #include <apt-pkg/macros.h> |
23 | ||
b2e465d6 | 24 | #include <stdio.h> |
f2adfc08 | 25 | #include <stdint.h> |
1abbce9e | 26 | |
472ff00e | 27 | #include <string> |
8710a36a DK |
28 | #include <vector> |
29 | #include <list> | |
472ff00e | 30 | |
b9dadc24 DK |
31 | #ifndef APT_8_CLEANER_HEADERS |
32 | #include <apt-pkg/fileutl.h> | |
33 | #endif | |
34 | ||
472ff00e | 35 | class FileFd; |
bc4ccfeb | 36 | class pkgTagSectionPrivate; |
55153bf9 | 37 | class pkgTagFilePrivate; |
472ff00e | 38 | |
55153bf9 DK |
39 | /** \class pkgTagSection parses a single deb822 stanza and provides various Find methods |
40 | * to extract the included values. It can also be used to modify and write a | |
41 | * valid deb822 stanza optionally (re)ordering the fields inside the stanza. | |
42 | * | |
43 | * Beware: This class does \b NOT support (#-)comments in in- or output! | |
44 | * If the input contains comments they have to be stripped first like pkgTagFile | |
45 | * does with SUPPORT_COMMENTS flag set. */ | |
578bfd0a AL |
46 | class pkgTagSection |
47 | { | |
48 | const char *Section; | |
bc4ccfeb | 49 | unsigned int AlphaIndexes[0x100]; |
8710a36a | 50 | |
6c55f07a | 51 | pkgTagSectionPrivate * const d; |
c176c4d0 | 52 | |
81e9789b MV |
53 | protected: |
54 | const char *Stop; | |
55 | ||
578bfd0a | 56 | public: |
8d058ea5 | 57 | |
578bfd0a AL |
58 | inline bool operator ==(const pkgTagSection &rhs) {return Section == rhs.Section;}; |
59 | inline bool operator !=(const pkgTagSection &rhs) {return Section != rhs.Section;}; | |
8d058ea5 | 60 | |
b2e465d6 | 61 | bool Find(const char *Tag,const char *&Start, const char *&End) const; |
c8b860fb | 62 | bool Find(const char *Tag,unsigned int &Pos) const; |
8f3ba4e8 | 63 | std::string FindS(const char *Tag) const; |
8d058ea5 | 64 | std::string FindRawS(const char *Tag) const; |
a2fdb57f MV |
65 | signed int FindI(const char *Tag,signed long Default = 0) const; |
66 | bool FindB(const char *Tag, bool const &Default = false) const; | |
e2c66de5 | 67 | unsigned long long FindULL(const char *Tag, unsigned long long const &Default = 0) const; |
dfe66c72 DK |
68 | bool FindFlag(const char * const Tag,uint8_t &Flags, |
69 | uint8_t const Flag) const; | |
70 | bool static FindFlag(uint8_t &Flags, uint8_t const Flag, | |
71 | const char* const Start, const char* const Stop); | |
500827ed AL |
72 | bool FindFlag(const char *Tag,unsigned long &Flags, |
73 | unsigned long Flag) const; | |
d64e130a | 74 | bool static FindFlag(unsigned long &Flags, unsigned long Flag, |
fe0f7911 | 75 | const char* Start, const char* Stop); |
8710a36a DK |
76 | |
77 | /** \brief searches the boundaries of the current section | |
78 | * | |
79 | * While parameter Start marks the beginning of the section, this method | |
80 | * will search for the first double newline in the data stream which marks | |
81 | * the end of the section. It also does a first pass over the content of | |
82 | * the section parsing it as encountered for processing later on by Find | |
83 | * | |
84 | * @param Start is the beginning of the section | |
85 | * @param MaxLength is the size of valid data in the stream pointed to by Start | |
86 | * @param Restart if enabled internal state will be cleared, otherwise it is | |
87 | * assumed that now more data is available in the stream and the parsing will | |
88 | * start were it encountered insufficent data the last time. | |
89 | * | |
90 | * @return \b true if section end was found, \b false otherwise. | |
91 | * Beware that internal state will be inconsistent if \b false is returned! | |
92 | */ | |
93 | APT_MUSTCHECK bool Scan(const char *Start, unsigned long MaxLength, bool const Restart = true); | |
fa5404ab | 94 | |
b2e465d6 AL |
95 | inline unsigned long size() const {return Stop - Section;}; |
96 | void Trim(); | |
81e9789b | 97 | virtual void TrimRecord(bool BeforeRecord, const char* &End); |
8710a36a DK |
98 | |
99 | /** \brief amount of Tags in the current section | |
100 | * | |
101 | * Note: if a Tag is mentioned repeatly it will be counted multiple | |
c029a836 | 102 | * times, but only the last occurrence is available via Find methods. |
8710a36a DK |
103 | */ |
104 | unsigned int Count() const; | |
105 | bool Exists(const char* const Tag) const; | |
106 | ||
bc4ccfeb | 107 | void Get(const char *&Start,const char *&Stop,unsigned int I) const; |
8710a36a | 108 | |
b2e465d6 | 109 | inline void GetSection(const char *&Start,const char *&Stop) const |
a05599f1 AL |
110 | { |
111 | Start = Section; | |
112 | Stop = this->Stop; | |
113 | }; | |
8d058ea5 | 114 | |
b40394c0 | 115 | pkgTagSection(); |
862bafea | 116 | virtual ~pkgTagSection(); |
8d058ea5 DK |
117 | |
118 | struct Tag | |
119 | { | |
120 | enum ActionType { REMOVE, RENAME, REWRITE } Action; | |
121 | std::string Name; | |
122 | std::string Data; | |
123 | ||
124 | static Tag Remove(std::string const &Name); | |
125 | static Tag Rename(std::string const &OldName, std::string const &NewName); | |
126 | static Tag Rewrite(std::string const &Name, std::string const &Data); | |
127 | private: | |
128 | Tag(ActionType const Action, std::string const &Name, std::string const &Data) : | |
129 | Action(Action), Name(Name), Data(Data) {} | |
130 | }; | |
131 | ||
132 | /** Write this section (with optional rewrites) to a file | |
133 | * | |
134 | * @param File to write the section to | |
135 | * @param Order in which tags should appear in the file | |
3d8232bf | 136 | * @param Rewrite is a set of tags to be renamed, rewritten and/or removed |
8d058ea5 DK |
137 | * @return \b true if successful, otherwise \b false |
138 | */ | |
139 | bool Write(FileFd &File, char const * const * const Order = NULL, std::vector<Tag> const &Rewrite = std::vector<Tag>()) const; | |
578bfd0a AL |
140 | }; |
141 | ||
81460e32 DK |
142 | |
143 | /* For user generated file the parser should be a bit more relaxed in exchange | |
144 | for being a bit slower to allow comments and new lines all over the place */ | |
145 | class pkgUserTagSection : public pkgTagSection | |
146 | { | |
3b302846 | 147 | virtual void TrimRecord(bool BeforeRecord, const char* &End) APT_OVERRIDE; |
81460e32 DK |
148 | }; |
149 | ||
55153bf9 DK |
150 | /** \class pkgTagFile reads and prepares a deb822 formatted file for parsing |
151 | * via #pkgTagSection. The default mode tries to be as fast as possible and | |
152 | * assumes perfectly valid (machine generated) files like Packages. Support | |
153 | * for comments e.g. needs to be enabled explicitly. */ | |
578bfd0a AL |
154 | class pkgTagFile |
155 | { | |
6c55f07a | 156 | pkgTagFilePrivate * const d; |
75c541fd | 157 | |
ce62f1de DK |
158 | APT_HIDDEN bool Fill(); |
159 | APT_HIDDEN bool Resize(); | |
160 | APT_HIDDEN bool Resize(unsigned long long const newSize); | |
75c541fd | 161 | |
55153bf9 | 162 | public: |
578bfd0a AL |
163 | |
164 | bool Step(pkgTagSection &Section); | |
4b2746d5 | 165 | unsigned long Offset(); |
650faab0 | 166 | bool Jump(pkgTagSection &Tag,unsigned long long Offset); |
29f7b36c | 167 | |
55153bf9 DK |
168 | enum Flags |
169 | { | |
170 | STRICT = 0, | |
171 | SUPPORT_COMMENTS = 1 << 0, | |
172 | }; | |
173 | ||
174 | void Init(FileFd * const F, pkgTagFile::Flags const Flags, unsigned long long Size = 32*1024); | |
6c55f07a | 175 | void Init(FileFd * const F,unsigned long long const Size = 32*1024); |
feab34c5 | 176 | |
55153bf9 | 177 | pkgTagFile(FileFd * const F, pkgTagFile::Flags const Flags, unsigned long long Size = 32*1024); |
6c55f07a | 178 | pkgTagFile(FileFd * const F,unsigned long long Size = 32*1024); |
43fb90dc | 179 | virtual ~pkgTagFile(); |
578bfd0a AL |
180 | }; |
181 | ||
8d058ea5 DK |
182 | extern const char **TFRewritePackageOrder; |
183 | extern const char **TFRewriteSourceOrder; | |
184 | ||
8d058ea5 | 185 | APT_IGNORE_DEPRECATED_PUSH |
5dd00edb | 186 | struct APT_DEPRECATED_MSG("Use pkgTagSection::Tag and pkgTagSection::Write() instead") TFRewriteData |
b2e465d6 AL |
187 | { |
188 | const char *Tag; | |
189 | const char *Rewrite; | |
190 | const char *NewTag; | |
191 | }; | |
5dd00edb | 192 | APT_DEPRECATED_MSG("Use pkgTagSection::Tag and pkgTagSection::Write() instead") bool TFRewrite(FILE *Output,pkgTagSection const &Tags,const char *Order[], |
b2e465d6 | 193 | TFRewriteData *Rewrite); |
8d058ea5 | 194 | APT_IGNORE_DEPRECATED_POP |
b2e465d6 | 195 | |
578bfd0a | 196 | #endif |