]>
git.saurik.com Git - apt.git/blob - apt-pkg/indexrecords.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: indexrecords.h,v 1.1.2.1 2003/12/24 23:09:17 mdz Exp $
5 #ifndef PKGLIB_INDEXRECORDS_H
6 #define PKGLIB_INDEXRECORDS_H
9 #include <apt-pkg/pkgcache.h>
10 #include <apt-pkg/fileutl.h>
11 #include <apt-pkg/hashes.h>
19 bool parseSumData(const char *&Start
, const char *End
, string
&Name
,
20 string
&Hash
, size_t &Size
);
31 std::map
<string
,checkSum
*> Entries
;
36 indexRecords(const string ExpectedDist
);
39 virtual const checkSum
*Lookup(const string MetaKey
);
40 std::vector
<std::string
> MetaKeys();
42 virtual bool Load(string Filename
);
43 string
GetDist() const;
44 time_t GetValidUntil() const;
45 virtual bool CheckDist(const string MaybeDist
) const;
46 string
GetExpectedDist() const;
47 virtual ~indexRecords(){};
50 struct indexRecords::checkSum
52 string MetaKeyFilename
;