| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- // -*- mode: cpp; mode: fold -*-
- // Description /*{{{*/
- // $Id: tagfile.h,v 1.5 1998/07/16 06:08:40 jgg Exp $
- /* ######################################################################
- Fast scanner for RFC-822 type header information
-
- This parser handles Debian package files (and others). Their form is
- RFC-822 type header fields in groups seperated by a blank line.
-
- The parser reads the and provides methods to step linearly
- over it or to jump to a pre-recorded start point and read that record.
-
- A second class is used to perform pre-parsing of the record. It works
- by indexing the start of each header field and providing lookup
- functions for header fields.
-
- ##################################################################### */
- /*}}}*/
- // Header section: pkglib
- #ifndef PKGLIB_TAGFILE_H
- #define PKGLIB_TAGFILE_H
- #ifdef __GNUG__
- #pragma interface "apt-pkg/tagfile.h"
- #endif
- #include <apt-pkg/fileutl.h>
- class pkgTagSection
- {
- const char *Section;
- const char *Stop;
-
- // We have a limit of 256 tags per section.
- unsigned short Indexes[256];
- unsigned int TagCount;
-
- public:
-
- inline bool operator ==(const pkgTagSection &rhs) {return Section == rhs.Section;};
- inline bool operator !=(const pkgTagSection &rhs) {return Section != rhs.Section;};
-
- bool Find(const char *Tag,const char *&Start, const char *&End);
- bool Scan(const char *Start,unsigned long MaxLength);
- inline unsigned long size() {return Stop - Section;};
- pkgTagSection() : Section(0), Stop(0) {};
- };
- class pkgTagFile
- {
- File &Fd;
- char *Buffer;
- char *Start;
- char *End;
- unsigned long Left;
- unsigned long iOffset;
-
- bool Fill();
-
- public:
- bool Step(pkgTagSection &Section);
- inline unsigned long Offset() {return iOffset;};
-
- pkgTagFile(File &F);
- };
- #endif
|