Tag file can read from unseekable objects
[ntk/apt.git] / apt-pkg / tagfile.h
CommitLineData
578bfd0a
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
f604cf55 3// $Id: tagfile.h,v 1.17 2001/04/22 05:42:52 jgg Exp $
578bfd0a
AL
4/* ######################################################################
5
6 Fast scanner for RFC-822 type header information
7
8 This parser handles Debian package files (and others). Their form is
b2e465d6 9 RFC-822 type header fields in groups separated by a blank line.
578bfd0a 10
6fc33863 11 The parser reads the file and provides methods to step linearly
578bfd0a
AL
12 over it or to jump to a pre-recorded start point and read that record.
13
14 A second class is used to perform pre-parsing of the record. It works
15 by indexing the start of each header field and providing lookup
16 functions for header fields.
17
18 ##################################################################### */
19 /*}}}*/
578bfd0a
AL
20#ifndef PKGLIB_TAGFILE_H
21#define PKGLIB_TAGFILE_H
22
6c139d6e 23#ifdef __GNUG__
094a497d 24#pragma interface "apt-pkg/tagfile.h"
6c139d6e
AL
25#endif
26
094a497d 27#include <apt-pkg/fileutl.h>
b2e465d6
AL
28#include <stdio.h>
29
578bfd0a
AL
30class pkgTagSection
31{
32 const char *Section;
33 const char *Stop;
34
35 // We have a limit of 256 tags per section.
36 unsigned short Indexes[256];
b2e465d6 37 unsigned short AlphaIndexes[0xff];
c1a22377 38
578bfd0a
AL
39 unsigned int TagCount;
40
41 public:
42
43 inline bool operator ==(const pkgTagSection &rhs) {return Section == rhs.Section;};
44 inline bool operator !=(const pkgTagSection &rhs) {return Section != rhs.Section;};
45
b2e465d6
AL
46 bool Find(const char *Tag,const char *&Start, const char *&End) const;
47 bool Find(const char *Tag,unsigned &Pos) const;
48 string FindS(const char *Tag) const;
49 signed int FindI(const char *Tag,signed long Default = 0) const ;
500827ed
AL
50 bool FindFlag(const char *Tag,unsigned long &Flags,
51 unsigned long Flag) const;
578bfd0a 52 bool Scan(const char *Start,unsigned long MaxLength);
b2e465d6
AL
53 inline unsigned long size() const {return Stop - Section;};
54 void Trim();
55
56 inline unsigned int Count() const {return TagCount;};
57 inline void Get(const char *&Start,const char *&Stop,unsigned int I) const
0e66b144
AL
58 {Start = Section + Indexes[I]; Stop = Section + Indexes[I+1];}
59
b2e465d6 60 inline void GetSection(const char *&Start,const char *&Stop) const
a05599f1
AL
61 {
62 Start = Section;
63 Stop = this->Stop;
64 };
65
578bfd0a
AL
66 pkgTagSection() : Section(0), Stop(0) {};
67};
68
69class pkgTagFile
70{
8e06abb2 71 FileFd &Fd;
578bfd0a
AL
72 char *Buffer;
73 char *Start;
74 char *End;
f604cf55 75 bool Done;
dcb79bae 76 unsigned long iOffset;
ad00ae81 77 unsigned long Size;
578bfd0a
AL
78
79 bool Fill();
80
81 public:
82
83 bool Step(pkgTagSection &Section);
dcb79bae 84 inline unsigned long Offset() {return iOffset;};
ad00ae81 85 bool Jump(pkgTagSection &Tag,unsigned long Offset);
29f7b36c 86
b2e465d6 87 pkgTagFile(FileFd *F,unsigned long Size = 32*1024);
29f7b36c 88 ~pkgTagFile();
578bfd0a
AL
89};
90
b2e465d6
AL
91/* This is the list of things to rewrite. The rewriter
92 goes through and changes or adds each of these headers
93 to suit. A zero forces the header to be erased, an empty string
94 causes the old value to be used. (rewrite rule ignored) */
95struct TFRewriteData
96{
97 const char *Tag;
98 const char *Rewrite;
99 const char *NewTag;
100};
101extern const char **TFRewritePackageOrder;
102extern const char **TFRewriteSourceOrder;
103
104bool TFRewrite(FILE *Output,pkgTagSection const &Tags,const char *Order[],
105 TFRewriteData *Rewrite);
106
578bfd0a 107#endif