]>
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> |
11e7af84 | 17 | |
b2e465d6 | 18 | #include <string> |
8f3ba4e8 | 19 | #include <vector> |
0a843901 | 20 | |
a4f6bdc8 DK |
21 | #ifndef APT_8_CLEANER_HEADERS |
22 | using std::string; | |
23 | using std::vector; | |
24 | #endif | |
25 | ||
b2e465d6 AL |
26 | class pkgSourceList; |
27 | class pkgIndexFile; | |
11e7af84 AL |
28 | class pkgSrcRecords |
29 | { | |
30 | public: | |
36f610f1 AL |
31 | |
32 | // Describes a single file | |
33 | struct File | |
34 | { | |
8f3ba4e8 | 35 | std::string MD5Hash; |
36f610f1 | 36 | unsigned long Size; |
8f3ba4e8 DK |
37 | std::string Path; |
38 | std::string Type; | |
36f610f1 | 39 | }; |
11e7af84 | 40 | |
36f610f1 | 41 | // Abstract parser for each source record |
11e7af84 AL |
42 | class Parser |
43 | { | |
b2e465d6 AL |
44 | protected: |
45 | ||
46 | const pkgIndexFile *iIndex; | |
36375005 | 47 | |
11e7af84 AL |
48 | public: |
49 | ||
b2e465d6 AL |
50 | enum BuildDep {BuildDepend=0x0,BuildDependIndep=0x1, |
51 | BuildConflict=0x2,BuildConflictIndep=0x3}; | |
52 | ||
53 | struct BuildDepRec | |
54 | { | |
8f3ba4e8 DK |
55 | std::string Package; |
56 | std::string Version; | |
b2e465d6 AL |
57 | unsigned int Op; |
58 | unsigned char Type; | |
59 | }; | |
60 | ||
61 | inline const pkgIndexFile &Index() const {return *iIndex;}; | |
36375005 | 62 | |
11e7af84 AL |
63 | virtual bool Restart() = 0; |
64 | virtual bool Step() = 0; | |
41c81fd8 | 65 | virtual bool Jump(unsigned long const &Off) = 0; |
11e7af84 | 66 | virtual unsigned long Offset() = 0; |
8f3ba4e8 | 67 | virtual std::string AsStr() = 0; |
11e7af84 | 68 | |
8f3ba4e8 DK |
69 | virtual std::string Package() const = 0; |
70 | virtual std::string Version() const = 0; | |
71 | virtual std::string Maintainer() const = 0; | |
72 | virtual std::string Section() const = 0; | |
b2e465d6 AL |
73 | virtual const char **Binaries() = 0; // Ownership does not transfer |
74 | ||
65f99834 | 75 | //FIXME: Add a parameter to specify which architecture to use for [wildcard] matching |
8f3ba4e8 | 76 | virtual bool BuildDepends(std::vector<BuildDepRec> &BuildDeps, bool const &ArchOnly, bool const &StripMultiArch = true) = 0; |
a02db58f | 77 | static const char *BuildDepType(unsigned char const &Type) APT_PURE; |
b2e465d6 | 78 | |
8f3ba4e8 | 79 | virtual bool Files(std::vector<pkgSrcRecords::File> &F) = 0; |
11e7af84 | 80 | |
b2e465d6 AL |
81 | Parser(const pkgIndexFile *Index) : iIndex(Index) {}; |
82 | virtual ~Parser() {}; | |
11e7af84 AL |
83 | }; |
84 | ||
85 | private: | |
be9b62f7 MV |
86 | /** \brief dpointer placeholder (for later in case we need it) */ |
87 | void *d; | |
11e7af84 AL |
88 | |
89 | // The list of files and the current parser pointer | |
8f3ba4e8 DK |
90 | std::vector<Parser*> Files; |
91 | std::vector<Parser *>::iterator Current; | |
11e7af84 AL |
92 | |
93 | public: | |
94 | ||
95 | // Reset the search | |
96 | bool Restart(); | |
97 | ||
98 | // Locate a package by name | |
41c81fd8 | 99 | Parser *Find(const char *Package,bool const &SrcOnly = false); |
11e7af84 AL |
100 | |
101 | pkgSrcRecords(pkgSourceList &List); | |
ff72bd0d | 102 | virtual ~pkgSrcRecords(); |
11e7af84 AL |
103 | }; |
104 | ||
11e7af84 | 105 | #endif |