]>
Commit | Line | Data |
---|---|---|
6c139d6e AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
b3d44315 | 3 | // $Id: sourcelist.h,v 1.12.2.1 2003/12/24 23:09:17 mdz Exp $ |
6c139d6e AL |
4 | /* ###################################################################### |
5 | ||
6 | SourceList - Manage a list of sources | |
7 | ||
8 | The Source List class provides access to a list of sources. It | |
6fc33863 AL |
9 | can read them from a file and generate a list of all the distinct |
10 | sources. | |
11 | ||
12 | All sources have a type associated with them that defines the layout | |
13 | of the archive. The exact format of the file is documented in | |
14 | files.sgml. | |
b2e465d6 AL |
15 | |
16 | The types are mapped through a list of type definitions which handle | |
a7c835af AL |
17 | the actual construction of the back end type. After loading a source |
18 | list all you have is a list of package index files that have the ability | |
b2e465d6 | 19 | to be Acquired. |
6c139d6e | 20 | |
a7c835af AL |
21 | The vendor machanism is similar, except the vendor types are hard |
22 | wired. Before loading the source list the vendor list is loaded. | |
b3d44315 | 23 | This doesn't load key data, just the checks to perform. |
a7c835af | 24 | |
6c139d6e AL |
25 | ##################################################################### */ |
26 | /*}}}*/ | |
6c139d6e AL |
27 | #ifndef PKGLIB_SOURCELIST_H |
28 | #define PKGLIB_SOURCELIST_H | |
29 | ||
30 | #include <string> | |
31 | #include <vector> | |
5dd4c8b8 | 32 | #include <map> |
094a497d | 33 | #include <apt-pkg/pkgcache.h> |
0a843901 | 34 | |
b9dadc24 DK |
35 | #ifndef APT_8_CLEANER_HEADERS |
36 | #include <apt-pkg/metaindex.h> | |
0a843901 AL |
37 | using std::string; |
38 | using std::vector; | |
b9dadc24 | 39 | #endif |
6c139d6e | 40 | |
472ff00e DK |
41 | class pkgAcquire; |
42 | class pkgIndexFile; | |
43 | class metaIndex; | |
44 | ||
6c139d6e AL |
45 | class pkgSourceList |
46 | { | |
47 | public: | |
48 | ||
b2e465d6 AL |
49 | // List of supported source list types |
50 | class Type | |
6c139d6e | 51 | { |
b2e465d6 | 52 | public: |
6c139d6e | 53 | |
b2e465d6 AL |
54 | // Global list of Items supported |
55 | static Type **GlobalList; | |
56 | static unsigned long GlobalListLen; | |
57 | static Type *GetType(const char *Type); | |
58 | ||
59 | const char *Name; | |
60 | const char *Label; | |
61 | ||
73688d27 | 62 | bool FixupURI(std::string &URI) const; |
b9dadc24 | 63 | virtual bool ParseLine(std::vector<metaIndex *> &List, |
b2e465d6 | 64 | const char *Buffer, |
b9dadc24 | 65 | unsigned long const &CurLine,std::string const &File) const; |
73688d27 | 66 | virtual bool CreateItem(std::vector<metaIndex *> &List,std::string const &URI, |
b9dadc24 DK |
67 | std::string const &Dist,std::string const &Section, |
68 | std::map<std::string, std::string> const &Options) const = 0; | |
b2e465d6 AL |
69 | Type(); |
70 | virtual ~Type() {}; | |
6c139d6e | 71 | }; |
b2e465d6 | 72 | |
b9dadc24 | 73 | typedef std::vector<metaIndex *>::const_iterator const_iterator; |
6c139d6e AL |
74 | |
75 | protected: | |
a7c835af | 76 | |
b9dadc24 | 77 | std::vector<metaIndex *> SrcList; |
6c139d6e AL |
78 | |
79 | public: | |
80 | ||
81 | bool ReadMainList(); | |
b9dadc24 | 82 | bool Read(std::string File); |
34b53501 MV |
83 | |
84 | // CNC:2003-03-03 | |
85 | void Reset(); | |
b9dadc24 DK |
86 | bool ReadAppend(std::string File); |
87 | bool ReadSourceDir(std::string Dir); | |
6c139d6e AL |
88 | |
89 | // List accessors | |
a7c835af AL |
90 | inline const_iterator begin() const {return SrcList.begin();}; |
91 | inline const_iterator end() const {return SrcList.end();}; | |
92 | inline unsigned int size() const {return SrcList.size();}; | |
93 | inline bool empty() const {return SrcList.empty();}; | |
0118833a | 94 | |
b2e465d6 AL |
95 | bool FindIndex(pkgCache::PkgFileIterator File, |
96 | pkgIndexFile *&Found) const; | |
b3d44315 | 97 | bool GetIndexes(pkgAcquire *Owner, bool GetAll=false) const; |
b2e465d6 | 98 | |
2ec858bc MV |
99 | // query last-modified time |
100 | time_t GetLastModifiedTime(); | |
101 | ||
6c139d6e | 102 | pkgSourceList(); |
b9dadc24 | 103 | pkgSourceList(std::string File); |
1c193e02 | 104 | ~pkgSourceList(); |
6c139d6e AL |
105 | }; |
106 | ||
6c139d6e | 107 | #endif |