summaryrefslogtreecommitdiff
path: root/apt-pkg/indexrecords.h
blob: a98b939bc69476f1514f20f6054082cd01490a20 (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
57
58
59
60
61
62
// -*- mode: cpp; mode: fold -*-
// Description								/*{{{*/
// $Id: indexrecords.h,v 1.1.2.1 2003/12/24 23:09:17 mdz Exp $
									/*}}}*/
#ifndef PKGLIB_INDEXRECORDS_H
#define PKGLIB_INDEXRECORDS_H


#include <apt-pkg/pkgcache.h>
#include <apt-pkg/hashes.h>

#include <map>
#include <vector>
#include <ctime>

#ifndef APT_8_CLEANER_HEADERS
#include <apt-pkg/fileutl.h>
#endif

class indexRecords
{
   bool parseSumData(const char *&Start, const char *End, std::string &Name,
		     std::string &Hash, unsigned long long &Size);
   public:
   struct checkSum;
   std::string ErrorText;
   
   protected:
   std::string Dist;
   std::string Suite;
   std::string ExpectedDist;
   time_t ValidUntil;

   std::map<std::string,checkSum *> Entries;

   public:

   indexRecords();
   indexRecords(const std::string ExpectedDist);

   // Lookup function
   virtual const checkSum *Lookup(const std::string MetaKey);
   /** \brief tests if a checksum for this file is available */
   bool Exists(std::string const &MetaKey) const;
   std::vector<std::string> MetaKeys();

   virtual bool Load(std::string Filename);
   std::string GetDist() const;
   time_t GetValidUntil() const;
   virtual bool CheckDist(const std::string MaybeDist) const;
   std::string GetExpectedDist() const;
   virtual ~indexRecords(){};
};

struct indexRecords::checkSum
{
   std::string MetaKeyFilename;
   HashString Hash;
   unsigned long long Size;
};

#endif