X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/dcb79bae22bd3e4739db39e56d00b4d65ff42269..0118833a3b3e65ad7296863aa7d49574eb615f83:/apt-pkg/tagfile.h diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h index 661ac4f23..c97f86d88 100644 --- a/apt-pkg/tagfile.h +++ b/apt-pkg/tagfile.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: tagfile.h,v 1.2 1998/07/05 05:33:59 jgg Exp $ +// $Id: tagfile.h,v 1.9 1998/08/26 04:52:24 jgg Exp $ /* ###################################################################### Fast scanner for RFC-822 type header information @@ -8,7 +8,7 @@ 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 + The parser reads the file 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 @@ -21,7 +21,11 @@ #ifndef PKGLIB_TAGFILE_H #define PKGLIB_TAGFILE_H -#include +#ifdef __GNUG__ +#pragma interface "apt-pkg/tagfile.h" +#endif + +#include class pkgTagSection { @@ -46,12 +50,13 @@ class pkgTagSection class pkgTagFile { - File Fd; + FileFd &Fd; char *Buffer; char *Start; char *End; unsigned long Left; unsigned long iOffset; + unsigned long Size; bool Fill(); @@ -59,8 +64,9 @@ class pkgTagFile bool Step(pkgTagSection &Section); inline unsigned long Offset() {return iOffset;}; + bool Jump(pkgTagSection &Tag,unsigned long Offset); - pkgTagFile(File &F); + pkgTagFile(FileFd &F,unsigned long Size = 32*1024); }; #endif