1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
/* ######################################################################
Debian Package Records - Parser for debian package records
This provides display-type parsing for the Packages file. This is
different than the list parser which provides cache generation
services. There should be no overlap between these two.
##################################################################### */
/*}}}*/
#ifndef PKGLIB_DEBRECORDS_H
#define PKGLIB_DEBRECORDS_H
#include <apt-pkg/fileutl.h>
#include <apt-pkg/pkgcache.h>
#include <apt-pkg/pkgrecords.h>
#include <apt-pkg/tagfile.h>
#include <string>
class APT_HIDDEN debRecordParserBase : public pkgRecords::Parser
{
void * const d;
protected:
pkgTagSection Section;
public:
// These refer to the archive file for the Version
std::string FileName() override;
std::string SourcePkg() override;
std::string SourceVer() override;
[[nodiscard]] HashStringList Hashes() const override;
// These are some general stats about the package
std::string Maintainer() override;
std::string ShortDesc(std::string const &lang) override;
std::string LongDesc(std::string const &lang) override;
std::string Name() override;
std::string Homepage() override;
// An arbitrary custom field
std::string RecordField(const char *fieldName) override;
void GetRec(const char *&Start, const char *&Stop) override;
debRecordParserBase();
~debRecordParserBase() override;
};
class APT_HIDDEN debRecordParser : public debRecordParserBase
{
void * const d;
protected:
FileFd File;
pkgTagFile Tags;
bool Jump(pkgCache::VerFileIterator const &Ver) override;
bool Jump(pkgCache::DescFileIterator const &Desc) override;
public:
debRecordParser(std::string FileName,pkgCache &Cache);
~debRecordParser() override;
};
// custom record parser that reads deb files directly
class APT_HIDDEN debDebFileRecordParser : public debRecordParserBase
{
void * const d;
std::string debFileName;
std::string controlContent;
APT_HIDDEN bool LoadContent();
protected:
// single file files, so no jumping whatsoever
bool Jump(pkgCache::VerFileIterator const &/*Ver*/) override;
bool Jump(pkgCache::DescFileIterator const & /*Desc*/) override;
public:
std::string FileName() override;
explicit debDebFileRecordParser(std::string FileName);
~debDebFileRecordParser() override;
};
#endif
|