1 // -*- mode: cpp; mode: fold -*-
3 /* ######################################################################
5 Source Package Records - Allows access to source package records
7 Parses and allows access to the list of source records and searching by
8 source name on that list.
10 ##################################################################### */
12 #ifndef PKGLIB_SRCRECORDS_H
13 #define PKGLIB_SRCRECORDS_H
15 #include <apt-pkg/macros.h>
16 #include <apt-pkg/hashes.h>
21 #ifndef APT_8_CLEANER_HEADERS
32 APT_IGNORE_DEPRECATED_PUSH
33 // Describes a single file
36 APT_DEPRECATED
std::string MD5Hash
;
37 APT_DEPRECATED
unsigned long Size
;
41 struct File2
: public File
43 unsigned long long FileSize
;
44 HashStringList Hashes
;
46 APT_IGNORE_DEPRECATED_POP
48 // Abstract parser for each source record
53 const pkgIndexFile
*iIndex
;
57 enum BuildDep
{BuildDepend
=0x0,BuildDependIndep
=0x1,
58 BuildConflict
=0x2,BuildConflictIndep
=0x3};
68 inline const pkgIndexFile
&Index() const {return *iIndex
;};
70 virtual bool Restart() = 0;
71 virtual bool Step() = 0;
72 virtual bool Jump(unsigned long const &Off
) = 0;
73 virtual unsigned long Offset() = 0;
74 virtual std::string
AsStr() = 0;
76 virtual std::string
Package() const = 0;
77 virtual std::string
Version() const = 0;
78 virtual std::string
Maintainer() const = 0;
79 virtual std::string
Section() const = 0;
80 virtual const char **Binaries() = 0; // Ownership does not transfer
82 //FIXME: Add a parameter to specify which architecture to use for [wildcard] matching
83 virtual bool BuildDepends(std::vector
<BuildDepRec
> &BuildDeps
, bool const &ArchOnly
, bool const &StripMultiArch
= true) = 0;
84 static const char *BuildDepType(unsigned char const &Type
) APT_PURE
;
86 virtual bool Files(std::vector
<pkgSrcRecords::File
> &F
) = 0;
87 bool Files2(std::vector
<pkgSrcRecords::File2
> &F
);
89 Parser(const pkgIndexFile
*Index
) : iIndex(Index
) {};
94 /** \brief dpointer placeholder (for later in case we need it) */
97 // The list of files and the current parser pointer
98 std::vector
<Parser
*> Files
;
99 std::vector
<Parser
*>::iterator Current
;
106 // Step to the next SourcePackage and return pointer to the
107 // next SourceRecord. The pointer is owned by libapt.
108 const Parser
* Step();
110 // Locate a package by name and return pointer to the Parser.
111 // The pointer is owned by libapt.
112 Parser
* Find(const char *Package
,bool const &SrcOnly
= false);
114 pkgSrcRecords(pkgSourceList
&List
);
115 virtual ~pkgSrcRecords();