summaryrefslogtreecommitdiff
path: root/apt-pkg/deb/debmetaindex.h
blob: 695cfa7cc35d6880e64f30de1387ca46cb19538e (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
46
47
48
49
50
51
52
53
54
55
56
// ijones, walters
#ifndef PKGLIB_DEBMETAINDEX_H
#define PKGLIB_DEBMETAINDEX_H

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

#include <map>

class debReleaseIndex : public metaIndex {
   public:

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

   private:
   /** \brief dpointer placeholder (for later in case we need it) */
   void *d;
   std::map<string, vector<debSectionEntry const*> > ArchEntries;
   enum { ALWAYS_TRUSTED, NEVER_TRUSTED, CHECK_TRUST } Trusted;

   public:

   debReleaseIndex(string const &URI, string const &Dist);
   debReleaseIndex(string const &URI, string const &Dist, bool const Trusted);
   virtual ~debReleaseIndex();

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

   void SetTrusted(bool const Trusted);
   virtual bool IsTrusted() const;

   void PushSectionEntry(vector<string> const &Archs, const debSectionEntry *Entry);
   void PushSectionEntry(string const &Arch, const debSectionEntry *Entry);
   void PushSectionEntry(const debSectionEntry *Entry);
};

#endif