]>
git.saurik.com Git - apt.git/blob - apt-pkg/indexrecords.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: indexrecords.cc,v 1.1.2.4 2003/12/30 02:11:43 mdz Exp $
5 // Include Files /*{{{*/
8 #include <apt-pkg/indexrecords.h>
9 #include <apt-pkg/tagfile.h>
10 #include <apt-pkg/error.h>
11 #include <apt-pkg/strutl.h>
12 #include <apt-pkg/configuration.h>
13 #include <apt-pkg/fileutl.h>
14 #include <apt-pkg/hashes.h>
15 #include <apt-pkg/gpgv.h>
30 string
indexRecords::GetDist() const
35 string
indexRecords::GetSuite() const
40 bool indexRecords::CheckDist(const string MaybeDist
) const
42 return (this->Dist
== MaybeDist
43 || this->Suite
== MaybeDist
);
46 string
indexRecords::GetExpectedDist() const
48 return this->ExpectedDist
;
51 time_t indexRecords::GetValidUntil() const
53 return this->ValidUntil
;
56 const indexRecords::checkSum
*indexRecords::Lookup(const string MetaKey
)
58 std::map
<std::string
, indexRecords::checkSum
* >::const_iterator sum
= Entries
.find(MetaKey
);
59 if (sum
== Entries
.end())
64 bool indexRecords::Exists(string
const &MetaKey
) const
66 return Entries
.count(MetaKey
) == 1;
69 bool indexRecords::Load(const string Filename
) /*{{{*/
72 if (OpenMaybeClearSignedFile(Filename
, Fd
) == false)
75 pkgTagFile
TagFile(&Fd
, Fd
.Size());
76 if (_error
->PendingError() == true)
78 strprintf(ErrorText
, _("Unable to parse Release file %s"),Filename
.c_str());
82 pkgTagSection Section
;
83 const char *Start
, *End
;
84 if (TagFile
.Step(Section
) == false)
86 strprintf(ErrorText
, _("No sections in Release file %s"), Filename
.c_str());
90 Suite
= Section
.FindS("Suite");
91 Dist
= Section
.FindS("Codename");
94 for (i
=0;HashString::SupportedHashes()[i
] != NULL
; i
++)
96 if (!Section
.Find(HashString::SupportedHashes()[i
], Start
, End
))
101 unsigned long long Size
;
104 if (!parseSumData(Start
, End
, Name
, Hash
, Size
))
106 indexRecords::checkSum
*Sum
= new indexRecords::checkSum
;
107 Sum
->MetaKeyFilename
= Name
;
108 Sum
->Hash
= HashString(HashString::SupportedHashes()[i
],Hash
);
115 if(HashString::SupportedHashes()[i
] == NULL
)
117 strprintf(ErrorText
, _("No Hash entry in Release file %s"), Filename
.c_str());
121 string Label
= Section
.FindS("Label");
122 string StrDate
= Section
.FindS("Date");
123 string StrValidUntil
= Section
.FindS("Valid-Until");
125 // if we have a Valid-Until header in the Release file, use it as default
126 if (StrValidUntil
.empty() == false)
128 if(RFC1123StrToTime(StrValidUntil
.c_str(), ValidUntil
) == false)
130 strprintf(ErrorText
, _("Invalid 'Valid-Until' entry in Release file %s"), Filename
.c_str());
134 // get the user settings for this archive and use what expires earlier
135 int MaxAge
= _config
->FindI("Acquire::Max-ValidTime", 0);
136 if (Label
.empty() == false)
137 MaxAge
= _config
->FindI(("Acquire::Max-ValidTime::" + Label
).c_str(), MaxAge
);
138 int MinAge
= _config
->FindI("Acquire::Min-ValidTime", 0);
139 if (Label
.empty() == false)
140 MinAge
= _config
->FindI(("Acquire::Min-ValidTime::" + Label
).c_str(), MinAge
);
143 (MinAge
== 0 || ValidUntil
== 0)) // No user settings, use the one from the Release file
147 if (RFC1123StrToTime(StrDate
.c_str(), date
) == false)
149 strprintf(ErrorText
, _("Invalid 'Date' entry in Release file %s"), Filename
.c_str());
153 if (MinAge
!= 0 && ValidUntil
!= 0) {
154 time_t const min_date
= date
+ MinAge
;
155 if (ValidUntil
< min_date
)
156 ValidUntil
= min_date
;
159 time_t const max_date
= date
+ MaxAge
;
160 if (ValidUntil
== 0 || ValidUntil
> max_date
)
161 ValidUntil
= max_date
;
167 std::vector
<string
> indexRecords::MetaKeys() /*{{{*/
169 std::vector
<std::string
> keys
;
170 std::map
<string
,checkSum
*>::iterator I
= Entries
.begin();
171 while(I
!= Entries
.end()) {
172 keys
.push_back((*I
).first
);
178 bool indexRecords::parseSumData(const char *&Start
, const char *End
, /*{{{*/
179 string
&Name
, string
&Hash
, unsigned long long &Size
)
184 /* Skip over the first blank */
185 while ((*Start
== '\t' || *Start
== ' ' || *Start
== '\n' || *Start
== '\r')
191 /* Move EntryEnd to the end of the first entry (the hash) */
192 const char *EntryEnd
= Start
;
193 while ((*EntryEnd
!= '\t' && *EntryEnd
!= ' ')
199 Hash
.append(Start
, EntryEnd
-Start
);
201 /* Skip over intermediate blanks */
203 while (*Start
== '\t' || *Start
== ' ')
209 /* Find the end of the second entry (the size) */
210 while ((*EntryEnd
!= '\t' && *EntryEnd
!= ' ' )
216 Size
= strtoull (Start
, NULL
, 10);
218 /* Skip over intermediate blanks */
220 while (*Start
== '\t' || *Start
== ' ')
226 /* Find the end of the third entry (the filename) */
227 while ((*EntryEnd
!= '\t' && *EntryEnd
!= ' ' &&
228 *EntryEnd
!= '\n' && *EntryEnd
!= '\r')
232 Name
.append(Start
, EntryEnd
-Start
);
233 Start
= EntryEnd
; //prepare for the next round
237 indexRecords::indexRecords()
241 indexRecords::indexRecords(const string ExpectedDist
) :
242 ExpectedDist(ExpectedDist
), ValidUntil(0)