1 // -*- mode: cpp; mode: fold -*-
3 // $Id: debrecords.h,v 1.8 2001/03/13 06:51:46 jgg Exp $
4 /* ######################################################################
6 Debian Package Records - Parser for debian package records
8 This provides display-type parsing for the Packages file. This is
9 different than the the list parser which provides cache generation
10 services. There should be no overlap between these two.
12 ##################################################################### */
14 #ifndef PKGLIB_DEBRECORDS_H
15 #define PKGLIB_DEBRECORDS_H
17 #include <apt-pkg/pkgrecords.h>
18 #include <apt-pkg/tagfile.h>
19 #include <apt-pkg/fileutl.h>
20 #include <apt-pkg/pkgcache.h>
24 #ifndef APT_8_CLEANER_HEADERS
25 #include <apt-pkg/indexfile.h>
28 class APT_HIDDEN debRecordParserBase
: public pkgRecords::Parser
32 pkgTagSection Section
;
35 // These refer to the archive file for the Version
36 virtual std::string
FileName() APT_OVERRIDE
;
37 virtual std::string
SourcePkg() APT_OVERRIDE
;
38 virtual std::string
SourceVer() APT_OVERRIDE
;
40 virtual HashStringList
Hashes() const APT_OVERRIDE
;
42 // These are some general stats about the package
43 virtual std::string
Maintainer() APT_OVERRIDE
;
44 virtual std::string
ShortDesc(std::string
const &lang
) APT_OVERRIDE
;
45 virtual std::string
LongDesc(std::string
const &lang
) APT_OVERRIDE
;
46 virtual std::string
Name() APT_OVERRIDE
;
47 virtual std::string
Homepage() APT_OVERRIDE
;
49 // An arbitrary custom field
50 virtual std::string
RecordField(const char *fieldName
) APT_OVERRIDE
;
52 virtual void GetRec(const char *&Start
,const char *&Stop
) APT_OVERRIDE
;
54 debRecordParserBase();
55 virtual ~debRecordParserBase();
58 class APT_HIDDEN debRecordParser
: public debRecordParserBase
65 virtual bool Jump(pkgCache::VerFileIterator
const &Ver
) APT_OVERRIDE
;
66 virtual bool Jump(pkgCache::DescFileIterator
const &Desc
) APT_OVERRIDE
;
69 debRecordParser(std::string FileName
,pkgCache
&Cache
);
70 virtual ~debRecordParser();
73 // custom record parser that reads deb files directly
74 class APT_HIDDEN debDebFileRecordParser
: public debRecordParserBase
77 std::string debFileName
;
78 std::string controlContent
;
80 APT_HIDDEN
bool LoadContent();
82 // single file files, so no jumping whatsoever
83 bool Jump(pkgCache::VerFileIterator
const &) APT_OVERRIDE
;
84 bool Jump(pkgCache::DescFileIterator
const &) APT_OVERRIDE
;
87 virtual std::string
FileName() APT_OVERRIDE
;
89 debDebFileRecordParser(std::string FileName
);
90 virtual ~debDebFileRecordParser();