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