summaryrefslogtreecommitdiff
path: root/apt-pkg/deb/debmetaindex.h
blob: 8e6a1463bdd40e51b8176eba0de63ef551cf5c2d (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
// ijones, walters
#ifndef PKGLIB_DEBMETAINDEX_H
#define PKGLIB_DEBMETAINDEX_H

#include <apt-pkg/metaindex.h>
#include <apt-pkg/sourcelist.h>

class debReleaseIndex : public metaIndex {
   public:

   class debSectionEntry
   {
      public:
      debSectionEntry (string Section, bool IsSrc);
      bool IsSrc;
      string Section;
   };

   private:
   vector <const debSectionEntry *> SectionEntries;

   public:

   debReleaseIndex(string URI, string Dist);
   ~debReleaseIndex();

   virtual string ArchiveURI(string File) const {return URI + File;};
   virtual bool GetIndexes(pkgAcquire *Owner, bool GetAll=false) const;
   vector <struct IndexTarget *>* ComputeIndexTargets() const;
   string Info(const char *Type, const string Section) const;
   string MetaIndexInfo(const char *Type) const;
   string MetaIndexFile(const char *Types) const;
   string MetaIndexURI(const char *Type) const;
   string IndexURI(const char *Type, const string Section) const;
   string IndexURISuffix(const char *Type, const string Section) const;
   string SourceIndexURI(const char *Type, const string Section) const;
   string SourceIndexURISuffix(const char *Type, const string Section) const;
   virtual vector <pkgIndexFile *> *GetIndexFiles();

   virtual bool IsTrusted() const;

   void PushSectionEntry(const debSectionEntry *Entry);
};

#endif