summaryrefslogtreecommitdiff
path: root/apt-pkg/metaindex.h
blob: 2b87d7da9a6f166a7c608678d0bad4f82b485311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef PKGLIB_METAINDEX_H
#define PKGLIB_METAINDEX_H


#include <string>
#include <apt-pkg/pkgcache.h>
#include <apt-pkg/srcrecords.h>
#include <apt-pkg/pkgrecords.h>
#include <apt-pkg/indexfile.h>
#include <apt-pkg/vendor.h>
    
using std::string;

class pkgAcquire;
class pkgCacheGenerator;
class OpProgress;

class metaIndex
{
   protected:
   vector <pkgIndexFile *> *Indexes;
   const char *Type;
   string URI;
   string Dist;
   bool Trusted;

   public:

   
   // Various accessors
   virtual string GetURI() const {return URI;}
   virtual string GetDist() const {return Dist;}
   virtual const char* GetType() const {return Type;}

   // Interface for acquire
   virtual string ArchiveURI(string /*File*/) const = 0;
   virtual bool GetIndexes(pkgAcquire *Owner, bool GetAll=false) const = 0;
   
   virtual vector<pkgIndexFile *> *GetIndexFiles() = 0; 
   virtual bool IsTrusted() const = 0;

   virtual ~metaIndex() {};
};

#endif