]>
git.saurik.com Git - apt.git/blob - apt-pkg/tagfile.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: tagfile.cc,v 1.37.2.2 2003/12/31 16:02:30 mdz Exp $
4 /* ######################################################################
6 Fast scanner for RFC-822 type header information
8 This uses a rotating buffer to load the package information into.
9 The scanner runs over it and isolates and indexes a single section.
11 ##################################################################### */
13 // Include Files /*{{{*/
15 #pragma implementation "apt-pkg/tagfile.h"
18 #include <apt-pkg/tagfile.h>
19 #include <apt-pkg/error.h>
20 #include <apt-pkg/strutl.h>
31 // TagFile::pkgTagFile - Constructor /*{{{*/
32 // ---------------------------------------------------------------------
34 pkgTagFile::pkgTagFile(FileFd
*pFd
,unsigned long Size
) :
38 if (Fd
.IsOpen() == false)
41 Start
= End
= Buffer
= 0;
47 Buffer
= new char[Size
];
54 // TagFile::~pkgTagFile - Destructor /*{{{*/
55 // ---------------------------------------------------------------------
57 pkgTagFile::~pkgTagFile()
62 // TagFile::Resize - Resize the internal buffer /*{{{*/
63 // ---------------------------------------------------------------------
64 /* Resize the internal buffer (double it in size). Fail if a maximum size
67 bool pkgTagFile::Resize()
70 unsigned long EndSize
= End
- Start
;
72 // fail is the buffer grows too big
73 if(Size
> 1024*1024+1)
76 // get new buffer and use it
77 tmp
= new char[2*Size
];
78 memcpy(tmp
, Buffer
, Size
);
83 // update the start/end pointers to the new buffer
85 End
= Start
+ EndSize
;
89 // TagFile::Step - Advance to the next section /*{{{*/
90 // ---------------------------------------------------------------------
91 /* If the Section Scanner fails we refill the buffer and try again.
92 * If that fails too, double the buffer size and try again until a
93 * maximum buffer is reached.
95 bool pkgTagFile::Step(pkgTagSection
&Tag
)
97 while (Tag
.Scan(Start
,End
- Start
) == false)
102 if(Tag
.Scan(Start
,End
- Start
))
105 if (Resize() == false)
106 return _error
->Error(_("Unable to parse package file %s (1)"),
110 iOffset
+= Tag
.size();
116 // TagFile::Fill - Top up the buffer /*{{{*/
117 // ---------------------------------------------------------------------
118 /* This takes the bit at the end of the buffer and puts it at the start
119 then fills the rest from the file */
120 bool pkgTagFile::Fill()
122 unsigned long EndSize
= End
- Start
;
123 unsigned long Actual
= 0;
125 memmove(Buffer
,Start
,EndSize
);
127 End
= Buffer
+ EndSize
;
131 // See if only a bit of the file is left
132 if (Fd
.Read(End
,Size
- (End
- Buffer
),&Actual
) == false)
134 if (Actual
!= Size
- (End
- Buffer
))
141 if (EndSize
<= 3 && Actual
== 0)
143 if (Size
- (End
- Buffer
) < 4)
146 // Append a double new line if one does not exist
147 unsigned int LineCount
= 0;
148 for (const char *E
= End
- 1; E
- End
< 6 && (*E
== '\n' || *E
== '\r'); E
--)
151 for (; LineCount
< 2; LineCount
++)
160 // TagFile::Jump - Jump to a pre-recorded location in the file /*{{{*/
161 // ---------------------------------------------------------------------
162 /* This jumps to a pre-recorded file location and reads the record
164 bool pkgTagFile::Jump(pkgTagSection
&Tag
,unsigned long Offset
)
166 // We are within a buffer space of the next hit..
167 if (Offset
>= iOffset
&& iOffset
+ (End
- Start
) > Offset
)
169 unsigned long Dist
= Offset
- iOffset
;
175 // Reposition and reload..
178 if (Fd
.Seek(Offset
) == false)
180 End
= Start
= Buffer
;
185 if (Tag
.Scan(Start
,End
- Start
) == true)
188 // This appends a double new line (for the real eof handling)
192 if (Tag
.Scan(Start
,End
- Start
) == false)
193 return _error
->Error(_("Unable to parse package file %s (2)"),Fd
.Name().c_str());
198 // TagSection::Scan - Scan for the end of the header information /*{{{*/
199 // ---------------------------------------------------------------------
200 /* This looks for the first double new line in the data stream. It also
201 indexes the tags in the section. This very simple hash function for the
202 last 8 letters gives very good performance on the debian package files */
203 inline static unsigned long AlphaHash(const char *Text
, const char *End
= 0)
205 unsigned long Res
= 0;
206 for (; Text
!= End
&& *Text
!= ':' && *Text
!= 0; Text
++)
207 Res
= ((unsigned long)(*Text
) & 0xDF) ^ (Res
<< 1);
211 bool pkgTagSection::Scan(const char *Start
,unsigned long MaxLength
)
213 const char *End
= Start
+ MaxLength
;
214 Stop
= Section
= Start
;
215 memset(AlphaIndexes
,0,sizeof(AlphaIndexes
));
221 while (TagCount
+1 < sizeof(Indexes
)/sizeof(Indexes
[0]) && Stop
< End
)
223 // Start a new index and add it to the hash
224 if (isspace(Stop
[0]) == 0)
226 Indexes
[TagCount
++] = Stop
- Section
;
227 AlphaIndexes
[AlphaHash(Stop
,End
)] = TagCount
;
230 Stop
= (const char *)memchr(Stop
,'\n',End
- Stop
);
235 for (; Stop
+1 < End
&& Stop
[1] == '\r'; Stop
++);
237 // Double newline marks the end of the record
238 if (Stop
+1 < End
&& Stop
[1] == '\n')
240 Indexes
[TagCount
] = Stop
- Section
;
241 for (; Stop
< End
&& (Stop
[0] == '\n' || Stop
[0] == '\r'); Stop
++);
251 // TagSection::Trim - Trim off any trailing garbage /*{{{*/
252 // ---------------------------------------------------------------------
253 /* There should be exactly 1 newline at the end of the buffer, no more. */
254 void pkgTagSection::Trim()
256 for (; Stop
> Section
+ 2 && (Stop
[-2] == '\n' || Stop
[-2] == '\r'); Stop
--);
259 // TagSection::Find - Locate a tag /*{{{*/
260 // ---------------------------------------------------------------------
261 /* This searches the section for a tag that matches the given string. */
262 bool pkgTagSection::Find(const char *Tag
,unsigned &Pos
) const
264 unsigned int Length
= strlen(Tag
);
265 unsigned int I
= AlphaIndexes
[AlphaHash(Tag
)];
270 for (unsigned int Counter
= 0; Counter
!= TagCount
; Counter
++,
274 St
= Section
+ Indexes
[I
];
275 if (strncasecmp(Tag
,St
,Length
) != 0)
278 // Make sure the colon is in the right place
279 const char *C
= St
+ Length
;
280 for (; isspace(*C
) != 0; C
++);
291 // TagSection::Find - Locate a tag /*{{{*/
292 // ---------------------------------------------------------------------
293 /* This searches the section for a tag that matches the given string. */
294 bool pkgTagSection::Find(const char *Tag
,const char *&Start
,
295 const char *&End
) const
297 unsigned int Length
= strlen(Tag
);
298 unsigned int I
= AlphaIndexes
[AlphaHash(Tag
)];
303 for (unsigned int Counter
= 0; Counter
!= TagCount
; Counter
++,
307 St
= Section
+ Indexes
[I
];
308 if (strncasecmp(Tag
,St
,Length
) != 0)
311 // Make sure the colon is in the right place
312 const char *C
= St
+ Length
;
313 for (; isspace(*C
) != 0; C
++);
317 // Strip off the gunk from the start end
319 End
= Section
+ Indexes
[I
+1];
321 return _error
->Error("Internal parsing error");
323 for (; (isspace(*Start
) != 0 || *Start
== ':') && Start
< End
; Start
++);
324 for (; isspace(End
[-1]) != 0 && End
> Start
; End
--);
333 // TagSection::FindS - Find a string /*{{{*/
334 // ---------------------------------------------------------------------
336 string
pkgTagSection::FindS(const char *Tag
) const
340 if (Find(Tag
,Start
,End
) == false)
342 return string(Start
,End
);
345 // TagSection::FindI - Find an integer /*{{{*/
346 // ---------------------------------------------------------------------
348 signed int pkgTagSection::FindI(const char *Tag
,signed long Default
) const
352 if (Find(Tag
,Start
,Stop
) == false)
355 // Copy it into a temp buffer so we can use strtol
357 if ((unsigned)(Stop
- Start
) >= sizeof(S
))
359 strncpy(S
,Start
,Stop
-Start
);
363 signed long Result
= strtol(S
,&End
,10);
369 // TagSection::FindFlag - Locate a yes/no type flag /*{{{*/
370 // ---------------------------------------------------------------------
371 /* The bits marked in Flag are masked on/off in Flags */
372 bool pkgTagSection::FindFlag(const char *Tag
,unsigned long &Flags
,
373 unsigned long Flag
) const
377 if (Find(Tag
,Start
,Stop
) == false)
380 switch (StringToBool(string(Start
,Stop
)))
391 _error
->Warning("Unknown flag value: %s",string(Start
,Stop
).c_str());
398 // TFRewrite - Rewrite a control record /*{{{*/
399 // ---------------------------------------------------------------------
400 /* This writes the control record to stdout rewriting it as necessary. The
401 override map item specificies the rewriting rules to follow. This also
402 takes the time to sort the feild list. */
404 /* The order of this list is taken from dpkg source lib/parse.c the fieldinfos
406 static const char *iTFRewritePackageOrder
[] = {
417 "Revision", // Obsolete
418 "Config-Version", // Obsolete
433 "MSDOS-Filename", // Obsolete
436 static const char *iTFRewriteSourceOrder
[] = {"Package",
444 "Build-Depends-Indep",
446 "Build-Conflicts-Indep",
454 /* Two levels of initialization are used because gcc will set the symbol
455 size of an array to the length of the array, causing dynamic relinking
456 errors. Doing this makes the symbol size constant */
457 const char **TFRewritePackageOrder
= iTFRewritePackageOrder
;
458 const char **TFRewriteSourceOrder
= iTFRewriteSourceOrder
;
460 bool TFRewrite(FILE *Output
,pkgTagSection
const &Tags
,const char *Order
[],
461 TFRewriteData
*Rewrite
)
463 unsigned char Visited
[256]; // Bit 1 is Order, Bit 2 is Rewrite
464 for (unsigned I
= 0; I
!= 256; I
++)
467 // Set new tag up as necessary.
468 for (unsigned int J
= 0; Rewrite
!= 0 && Rewrite
[J
].Tag
!= 0; J
++)
470 if (Rewrite
[J
].NewTag
== 0)
471 Rewrite
[J
].NewTag
= Rewrite
[J
].Tag
;
474 // Write all all of the tags, in order.
475 for (unsigned int I
= 0; Order
[I
] != 0; I
++)
477 bool Rewritten
= false;
479 // See if this is a field that needs to be rewritten
480 for (unsigned int J
= 0; Rewrite
!= 0 && Rewrite
[J
].Tag
!= 0; J
++)
482 if (strcasecmp(Rewrite
[J
].Tag
,Order
[I
]) == 0)
485 if (Rewrite
[J
].Rewrite
!= 0 && Rewrite
[J
].Rewrite
[0] != 0)
487 if (isspace(Rewrite
[J
].Rewrite
[0]))
488 fprintf(Output
,"%s:%s\n",Rewrite
[J
].NewTag
,Rewrite
[J
].Rewrite
);
490 fprintf(Output
,"%s: %s\n",Rewrite
[J
].NewTag
,Rewrite
[J
].Rewrite
);
498 // See if it is in the fragment
500 if (Tags
.Find(Order
[I
],Pos
) == false)
504 if (Rewritten
== true)
507 /* Write out this element, taking a moment to rewrite the tag
508 in case of changes of case. */
511 Tags
.Get(Start
,Stop
,Pos
);
513 if (fputs(Order
[I
],Output
) < 0)
514 return _error
->Errno("fputs","IO Error to output");
515 Start
+= strlen(Order
[I
]);
516 if (fwrite(Start
,Stop
- Start
,1,Output
) != 1)
517 return _error
->Errno("fwrite","IO Error to output");
518 if (Stop
[-1] != '\n')
519 fprintf(Output
,"\n");
522 // Now write all the old tags that were missed.
523 for (unsigned int I
= 0; I
!= Tags
.Count(); I
++)
525 if ((Visited
[I
] & 1) == 1)
530 Tags
.Get(Start
,Stop
,I
);
531 const char *End
= Start
;
532 for (; End
< Stop
&& *End
!= ':'; End
++);
534 // See if this is a field that needs to be rewritten
535 bool Rewritten
= false;
536 for (unsigned int J
= 0; Rewrite
!= 0 && Rewrite
[J
].Tag
!= 0; J
++)
538 if (stringcasecmp(Start
,End
,Rewrite
[J
].Tag
) == 0)
541 if (Rewrite
[J
].Rewrite
!= 0 && Rewrite
[J
].Rewrite
[0] != 0)
543 if (isspace(Rewrite
[J
].Rewrite
[0]))
544 fprintf(Output
,"%s:%s\n",Rewrite
[J
].NewTag
,Rewrite
[J
].Rewrite
);
546 fprintf(Output
,"%s: %s\n",Rewrite
[J
].NewTag
,Rewrite
[J
].Rewrite
);
554 if (Rewritten
== true)
557 // Write out this element
558 if (fwrite(Start
,Stop
- Start
,1,Output
) != 1)
559 return _error
->Errno("fwrite","IO Error to output");
560 if (Stop
[-1] != '\n')
561 fprintf(Output
,"\n");
564 // Now write all the rewrites that were missed
565 for (unsigned int J
= 0; Rewrite
!= 0 && Rewrite
[J
].Tag
!= 0; J
++)
567 if ((Visited
[J
] & 2) == 2)
570 if (Rewrite
[J
].Rewrite
!= 0 && Rewrite
[J
].Rewrite
[0] != 0)
572 if (isspace(Rewrite
[J
].Rewrite
[0]))
573 fprintf(Output
,"%s:%s\n",Rewrite
[J
].NewTag
,Rewrite
[J
].Rewrite
);
575 fprintf(Output
,"%s: %s\n",Rewrite
[J
].NewTag
,Rewrite
[J
].Rewrite
);