blob: 2e3103b70f2ab269831ca0a9083513453ab9efb3 (
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
|
// -*- 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/fileutl.h>
#include <apt-pkg/hashes.h>
#include <map>
#include <vector>
class indexRecords
{
bool parseSumData(const char *&Start, const char *End, string &Name,
string &Hash, size_t &Size);
public:
struct checkSum;
string ErrorText;
protected:
string Dist;
string Suite;
string ExpectedDist;
std::map<string,checkSum *> Entries;
public:
indexRecords();
indexRecords(const string ExpectedDist);
// Lookup function
virtual const checkSum *Lookup(const string MetaKey);
/** \brief tests if a checksum for this file is available */
bool Exists(string const &MetaKey) const;
std::vector<std::string> MetaKeys();
virtual bool Load(string Filename);
string GetDist() const;
virtual bool CheckDist(const string MaybeDist) const;
string GetExpectedDist() const;
virtual ~indexRecords(){};
};
struct indexRecords::checkSum
{
string MetaKeyFilename;
HashString Hash;
size_t Size;
};
#endif
|