]>
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> |
1abbce9e | 25 | |
472ff00e | 26 | #include <string> |
8710a36a DK |
27 | #include <vector> |
28 | #include <list> | |
472ff00e | 29 | |
b9dadc24 DK |
30 | #ifndef APT_8_CLEANER_HEADERS |
31 | #include <apt-pkg/fileutl.h> | |
32 | #endif | |
33 | ||
472ff00e | 34 | class FileFd; |
bc4ccfeb | 35 | class pkgTagSectionPrivate; |
472ff00e | 36 | |
578bfd0a AL |
37 | class pkgTagSection |
38 | { | |
39 | const char *Section; | |
bc4ccfeb | 40 | unsigned int AlphaIndexes[0x100]; |
8710a36a | 41 | |
6c55f07a | 42 | pkgTagSectionPrivate * const d; |
c176c4d0 | 43 | |
81e9789b MV |
44 | protected: |
45 | const char *Stop; | |
46 | ||
578bfd0a | 47 | public: |
8d058ea5 | 48 | |
578bfd0a AL |
49 | inline bool operator ==(const pkgTagSection &rhs) {return Section == rhs.Section;}; |
50 | inline bool operator !=(const pkgTagSection &rhs) {return Section != rhs.Section;}; | |
8d058ea5 | 51 | |
b2e465d6 | 52 | bool Find(const char *Tag,const char *&Start, const char *&End) const; |
c8b860fb | 53 | bool Find(const char *Tag,unsigned int &Pos) const; |
8f3ba4e8 | 54 | std::string FindS(const char *Tag) const; |
8d058ea5 | 55 | std::string FindRawS(const char *Tag) const; |
a2fdb57f MV |
56 | signed int FindI(const char *Tag,signed long Default = 0) const; |
57 | bool FindB(const char *Tag, bool const &Default = false) const; | |
e2c66de5 | 58 | unsigned long long FindULL(const char *Tag, unsigned long long const &Default = 0) const; |
dfe66c72 DK |
59 | bool FindFlag(const char * const Tag,uint8_t &Flags, |
60 | uint8_t const Flag) const; | |
61 | bool static FindFlag(uint8_t &Flags, uint8_t const Flag, | |
62 | const char* const Start, const char* const Stop); | |
500827ed AL |
63 | bool FindFlag(const char *Tag,unsigned long &Flags, |
64 | unsigned long Flag) const; | |
d64e130a | 65 | bool static FindFlag(unsigned long &Flags, unsigned long Flag, |
fe0f7911 | 66 | const char* Start, const char* Stop); |
8710a36a DK |
67 | |
68 | /** \brief searches the boundaries of the current section | |
69 | * | |
70 | * While parameter Start marks the beginning of the section, this method | |
71 | * will search for the first double newline in the data stream which marks | |
72 | * the end of the section. It also does a first pass over the content of | |
73 | * the section parsing it as encountered for processing later on by Find | |
74 | * | |
75 | * @param Start is the beginning of the section | |
76 | * @param MaxLength is the size of valid data in the stream pointed to by Start | |
77 | * @param Restart if enabled internal state will be cleared, otherwise it is | |
78 | * assumed that now more data is available in the stream and the parsing will | |
79 | * start were it encountered insufficent data the last time. | |
80 | * | |
81 | * @return \b true if section end was found, \b false otherwise. | |
82 | * Beware that internal state will be inconsistent if \b false is returned! | |
83 | */ | |
84 | APT_MUSTCHECK bool Scan(const char *Start, unsigned long MaxLength, bool const Restart = true); | |
fa5404ab | 85 | |
b2e465d6 AL |
86 | inline unsigned long size() const {return Stop - Section;}; |
87 | void Trim(); | |
81e9789b | 88 | virtual void TrimRecord(bool BeforeRecord, const char* &End); |
8710a36a DK |
89 | |
90 | /** \brief amount of Tags in the current section | |
91 | * | |
92 | * Note: if a Tag is mentioned repeatly it will be counted multiple | |
c029a836 | 93 | * times, but only the last occurrence is available via Find methods. |
8710a36a DK |
94 | */ |
95 | unsigned int Count() const; | |
96 | bool Exists(const char* const Tag) const; | |
97 | ||
bc4ccfeb | 98 | void Get(const char *&Start,const char *&Stop,unsigned int I) const; |
8710a36a | 99 | |
b2e465d6 | 100 | inline void GetSection(const char *&Start,const char *&Stop) const |
a05599f1 AL |
101 | { |
102 | Start = Section; | |
103 | Stop = this->Stop; | |
104 | }; | |
8d058ea5 | 105 | |
b40394c0 | 106 | pkgTagSection(); |
862bafea | 107 | virtual ~pkgTagSection(); |
8d058ea5 DK |
108 | |
109 | struct Tag | |
110 | { | |
111 | enum ActionType { REMOVE, RENAME, REWRITE } Action; | |
112 | std::string Name; | |
113 | std::string Data; | |
114 | ||
115 | static Tag Remove(std::string const &Name); | |
116 | static Tag Rename(std::string const &OldName, std::string const &NewName); | |
117 | static Tag Rewrite(std::string const &Name, std::string const &Data); | |
118 | private: | |
119 | Tag(ActionType const Action, std::string const &Name, std::string const &Data) : | |
120 | Action(Action), Name(Name), Data(Data) {} | |
121 | }; | |
122 | ||
123 | /** Write this section (with optional rewrites) to a file | |
124 | * | |
125 | * @param File to write the section to | |
126 | * @param Order in which tags should appear in the file | |
3d8232bf | 127 | * @param Rewrite is a set of tags to be renamed, rewritten and/or removed |
8d058ea5 DK |
128 | * @return \b true if successful, otherwise \b false |
129 | */ | |
130 | bool Write(FileFd &File, char const * const * const Order = NULL, std::vector<Tag> const &Rewrite = std::vector<Tag>()) const; | |
578bfd0a AL |
131 | }; |
132 | ||
81460e32 DK |
133 | |
134 | /* For user generated file the parser should be a bit more relaxed in exchange | |
135 | for being a bit slower to allow comments and new lines all over the place */ | |
136 | class pkgUserTagSection : public pkgTagSection | |
137 | { | |
3b302846 | 138 | virtual void TrimRecord(bool BeforeRecord, const char* &End) APT_OVERRIDE; |
81460e32 DK |
139 | }; |
140 | ||
1abbce9e | 141 | class pkgTagFilePrivate; |
578bfd0a AL |
142 | class pkgTagFile |
143 | { | |
6c55f07a | 144 | pkgTagFilePrivate * const d; |
75c541fd | 145 | |
ce62f1de DK |
146 | APT_HIDDEN bool Fill(); |
147 | APT_HIDDEN bool Resize(); | |
148 | APT_HIDDEN bool Resize(unsigned long long const newSize); | |
75c541fd | 149 | |
578bfd0a AL |
150 | public: |
151 | ||
152 | bool Step(pkgTagSection &Section); | |
4b2746d5 | 153 | unsigned long Offset(); |
650faab0 | 154 | bool Jump(pkgTagSection &Tag,unsigned long long Offset); |
29f7b36c | 155 | |
6c55f07a | 156 | void Init(FileFd * const F,unsigned long long const Size = 32*1024); |
feab34c5 | 157 | |
6c55f07a | 158 | pkgTagFile(FileFd * const F,unsigned long long Size = 32*1024); |
43fb90dc | 159 | virtual ~pkgTagFile(); |
578bfd0a AL |
160 | }; |
161 | ||
8d058ea5 DK |
162 | extern const char **TFRewritePackageOrder; |
163 | extern const char **TFRewriteSourceOrder; | |
164 | ||
165 | // Use pkgTagSection::Tag and pkgTagSection::Write() instead | |
166 | APT_IGNORE_DEPRECATED_PUSH | |
167 | struct APT_DEPRECATED TFRewriteData | |
b2e465d6 AL |
168 | { |
169 | const char *Tag; | |
170 | const char *Rewrite; | |
171 | const char *NewTag; | |
172 | }; | |
8d058ea5 | 173 | APT_DEPRECATED bool TFRewrite(FILE *Output,pkgTagSection const &Tags,const char *Order[], |
b2e465d6 | 174 | TFRewriteData *Rewrite); |
8d058ea5 | 175 | APT_IGNORE_DEPRECATED_POP |
b2e465d6 | 176 | |
578bfd0a | 177 | #endif |