do not pollute namespace in the headers with using (Closes: #500198)
[ntk/apt.git] / apt-pkg / sourcelist.h
CommitLineData
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>
b3d44315 34#include <apt-pkg/metaindex.h>
0a843901
AL
35
36using std::string;
37using std::vector;
b2e465d6 38
6c139d6e
AL
39
40class pkgAquire;
41class pkgSourceList
42{
43 public:
44
b2e465d6
AL
45 // List of supported source list types
46 class Type
6c139d6e 47 {
b2e465d6 48 public:
6c139d6e 49
b2e465d6
AL
50 // Global list of Items supported
51 static Type **GlobalList;
52 static unsigned long GlobalListLen;
53 static Type *GetType(const char *Type);
54
55 const char *Name;
56 const char *Label;
57
58 bool FixupURI(string &URI) const;
b3d44315 59 virtual bool ParseLine(vector<metaIndex *> &List,
b2e465d6 60 const char *Buffer,
5dd4c8b8
DK
61 unsigned long const &CurLine,string const &File) const;
62 virtual bool CreateItem(vector<metaIndex *> &List,string const &URI,
63 string const &Dist,string const &Section,
64 std::map<string, string> const &Options) const = 0;
b2e465d6
AL
65 Type();
66 virtual ~Type() {};
6c139d6e 67 };
b2e465d6 68
b3d44315 69 typedef vector<metaIndex *>::const_iterator const_iterator;
6c139d6e
AL
70
71 protected:
a7c835af 72
b3d44315 73 vector<metaIndex *> SrcList;
6c139d6e
AL
74
75 public:
76
77 bool ReadMainList();
78 bool Read(string File);
34b53501
MV
79
80 // CNC:2003-03-03
81 void Reset();
82 bool ReadAppend(string File);
83 bool ReadSourceDir(string Dir);
6c139d6e
AL
84
85 // List accessors
a7c835af
AL
86 inline const_iterator begin() const {return SrcList.begin();};
87 inline const_iterator end() const {return SrcList.end();};
88 inline unsigned int size() const {return SrcList.size();};
89 inline bool empty() const {return SrcList.empty();};
0118833a 90
b2e465d6
AL
91 bool FindIndex(pkgCache::PkgFileIterator File,
92 pkgIndexFile *&Found) const;
b3d44315 93 bool GetIndexes(pkgAcquire *Owner, bool GetAll=false) const;
b2e465d6 94
2ec858bc
MV
95 // query last-modified time
96 time_t GetLastModifiedTime();
97
6c139d6e 98 pkgSourceList();
1c193e02
AL
99 pkgSourceList(string File);
100 ~pkgSourceList();
6c139d6e
AL
101};
102
6c139d6e 103#endif