projects
/
apt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
SmartConfigure and SmartUnPack have got smarter! The full descriptions of what they...
[apt.git]
/
apt-pkg
/
indexrecords.h
diff --git
a/apt-pkg/indexrecords.h
b/apt-pkg/indexrecords.h
index ac0df470c57378d5ee384babb711d10d463421bd..5b532c1a528790e57727138490f9b46fa423e16d 100644
(file)
--- a/
apt-pkg/indexrecords.h
+++ b/
apt-pkg/indexrecords.h
@@
-8,9
+8,11
@@
#include <apt-pkg/pkgcache.h>
#include <apt-pkg/fileutl.h>
#include <apt-pkg/pkgcache.h>
#include <apt-pkg/fileutl.h>
+#include <apt-pkg/hashes.h>
#include <map>
#include <vector>
#include <map>
#include <vector>
+#include <ctime>
class indexRecords
{
class indexRecords
{
@@
-24,6
+26,8
@@
class indexRecords
string Dist;
string Suite;
string ExpectedDist;
string Dist;
string Suite;
string ExpectedDist;
+ time_t ValidUntil;
+
std::map<string,checkSum *> Entries;
public:
std::map<string,checkSum *> Entries;
public:
@@
-33,10
+37,13
@@
class indexRecords
// Lookup function
virtual const checkSum *Lookup(const string MetaKey);
// 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;
std::vector<std::string> MetaKeys();
virtual bool Load(string Filename);
string GetDist() const;
+ time_t GetValidUntil() const;
virtual bool CheckDist(const string MaybeDist) const;
string GetExpectedDist() const;
virtual ~indexRecords(){};
virtual bool CheckDist(const string MaybeDist) const;
string GetExpectedDist() const;
virtual ~indexRecords(){};
@@
-45,7
+52,7
@@
class indexRecords
struct indexRecords::checkSum
{
string MetaKeyFilename;
struct indexRecords::checkSum
{
string MetaKeyFilename;
-
string MD5
Hash;
+
HashString
Hash;
size_t Size;
};
size_t Size;
};