]> git.saurik.com Git - apt.git/blame - apt-pkg/indexrecords.h
use the GroupedFromCommandLine() method in the dotty and xvcg command
[apt.git] / apt-pkg / indexrecords.h
CommitLineData
7db98ffc
MZ
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3// $Id: indexrecords.h,v 1.1.2.1 2003/12/24 23:09:17 mdz Exp $
4 /*}}}*/
5#ifndef PKGLIB_INDEXRECORDS_H
6#define PKGLIB_INDEXRECORDS_H
7
be009af2 8
7db98ffc
MZ
9#include <apt-pkg/pkgcache.h>
10#include <apt-pkg/fileutl.h>
495e5cb2 11#include <apt-pkg/hashes.h>
7db98ffc
MZ
12
13#include <map>
a75c6a6e 14#include <vector>
7db98ffc
MZ
15
16class indexRecords
17{
18 bool parseSumData(const char *&Start, const char *End, string &Name,
19 string &Hash, size_t &Size);
20 public:
21 struct checkSum;
22 string ErrorText;
23
24 protected:
25 string Dist;
26 string Suite;
27 string ExpectedDist;
28 std::map<string,checkSum *> Entries;
29
30 public:
31
32 indexRecords();
33 indexRecords(const string ExpectedDist);
34
35 // Lookup function
36 virtual const checkSum *Lookup(const string MetaKey);
e1430400
DK
37 /** \brief tests if a checksum for this file is available */
38 bool Exists(string const &MetaKey) const;
a75c6a6e
MZ
39 std::vector<std::string> MetaKeys();
40
7db98ffc
MZ
41 virtual bool Load(string Filename);
42 string GetDist() const;
43 virtual bool CheckDist(const string MaybeDist) const;
44 string GetExpectedDist() const;
45 virtual ~indexRecords(){};
46};
47
48struct indexRecords::checkSum
49{
50 string MetaKeyFilename;
495e5cb2 51 HashString Hash;
7db98ffc
MZ
52 size_t Size;
53};
54
55#endif