]>
Commit | Line | Data |
---|---|---|
11e7af84 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
b3d44315 | 3 | // $Id: srcrecords.h,v 1.8.2.1 2003/12/26 16:27:34 mdz Exp $ |
11e7af84 AL |
4 | /* ###################################################################### |
5 | ||
6 | Source Package Records - Allows access to source package records | |
7 | ||
8 | Parses and allows access to the list of source records and searching by | |
9 | source name on that list. | |
10 | ||
11 | ##################################################################### */ | |
12 | /*}}}*/ | |
13 | #ifndef PKGLIB_SRCRECORDS_H | |
14 | #define PKGLIB_SRCRECORDS_H | |
15 | ||
a02db58f | 16 | #include <apt-pkg/macros.h> |
1262d358 | 17 | #include <apt-pkg/hashes.h> |
11e7af84 | 18 | |
b2e465d6 | 19 | #include <string> |
8f3ba4e8 | 20 | #include <vector> |
0a843901 | 21 | |
a4f6bdc8 DK |
22 | #ifndef APT_8_CLEANER_HEADERS |
23 | using std::string; | |
24 | using std::vector; | |
25 | #endif | |
26 | ||
b2e465d6 AL |
27 | class pkgSourceList; |
28 | class pkgIndexFile; | |
11e7af84 AL |
29 | class pkgSrcRecords |
30 | { | |
31 | public: | |
36f610f1 | 32 | |
586d8704 | 33 | APT_IGNORE_DEPRECATED_PUSH |
36f610f1 AL |
34 | // Describes a single file |
35 | struct File | |
36 | { | |
8f3ba4e8 DK |
37 | std::string Path; |
38 | std::string Type; | |
1262d358 DK |
39 | unsigned long long Size; |
40 | HashStringList Hashes; | |
41 | APT_DEPRECATED std::string MD5Hash; | |
36f610f1 | 42 | }; |
586d8704 | 43 | APT_IGNORE_DEPRECATED_POP |
1262d358 | 44 | |
36f610f1 | 45 | // Abstract parser for each source record |
11e7af84 AL |
46 | class Parser |
47 | { | |
b2e465d6 AL |
48 | protected: |
49 | ||
50 | const pkgIndexFile *iIndex; | |
36375005 | 51 | |
11e7af84 AL |
52 | public: |
53 | ||
b2e465d6 AL |
54 | enum BuildDep {BuildDepend=0x0,BuildDependIndep=0x1, |
55 | BuildConflict=0x2,BuildConflictIndep=0x3}; | |
56 | ||
57 | struct BuildDepRec | |
58 | { | |
8f3ba4e8 DK |
59 | std::string Package; |
60 | std::string Version; | |
b2e465d6 AL |
61 | unsigned int Op; |
62 | unsigned char Type; | |
63 | }; | |
64 | ||
65 | inline const pkgIndexFile &Index() const {return *iIndex;}; | |
36375005 | 66 | |
11e7af84 AL |
67 | virtual bool Restart() = 0; |
68 | virtual bool Step() = 0; | |
41c81fd8 | 69 | virtual bool Jump(unsigned long const &Off) = 0; |
11e7af84 | 70 | virtual unsigned long Offset() = 0; |
8f3ba4e8 | 71 | virtual std::string AsStr() = 0; |
11e7af84 | 72 | |
8f3ba4e8 DK |
73 | virtual std::string Package() const = 0; |
74 | virtual std::string Version() const = 0; | |
75 | virtual std::string Maintainer() const = 0; | |
76 | virtual std::string Section() const = 0; | |
b2e465d6 AL |
77 | virtual const char **Binaries() = 0; // Ownership does not transfer |
78 | ||
65f99834 | 79 | //FIXME: Add a parameter to specify which architecture to use for [wildcard] matching |
8f3ba4e8 | 80 | virtual bool BuildDepends(std::vector<BuildDepRec> &BuildDeps, bool const &ArchOnly, bool const &StripMultiArch = true) = 0; |
a02db58f | 81 | static const char *BuildDepType(unsigned char const &Type) APT_PURE; |
b2e465d6 | 82 | |
8f3ba4e8 | 83 | virtual bool Files(std::vector<pkgSrcRecords::File> &F) = 0; |
11e7af84 | 84 | |
b2e465d6 AL |
85 | Parser(const pkgIndexFile *Index) : iIndex(Index) {}; |
86 | virtual ~Parser() {}; | |
11e7af84 AL |
87 | }; |
88 | ||
89 | private: | |
be9b62f7 MV |
90 | /** \brief dpointer placeholder (for later in case we need it) */ |
91 | void *d; | |
11e7af84 AL |
92 | |
93 | // The list of files and the current parser pointer | |
8f3ba4e8 DK |
94 | std::vector<Parser*> Files; |
95 | std::vector<Parser *>::iterator Current; | |
11e7af84 AL |
96 | |
97 | public: | |
98 | ||
99 | // Reset the search | |
100 | bool Restart(); | |
101 | ||
46255701 MV |
102 | // Step to the next SourcePackage and return pointer to the |
103 | // next SourceRecord. The pointer is owned by libapt. | |
401e5db1 | 104 | const Parser* Step(); |
46255701 MV |
105 | |
106 | // Locate a package by name and return pointer to the Parser. | |
107 | // The pointer is owned by libapt. | |
108 | Parser* Find(const char *Package,bool const &SrcOnly = false); | |
11e7af84 AL |
109 | |
110 | pkgSrcRecords(pkgSourceList &List); | |
ff72bd0d | 111 | virtual ~pkgSrcRecords(); |
11e7af84 AL |
112 | }; |
113 | ||
11e7af84 | 114 | #endif |