3 #include <apt-pkg/debmetaindex.h>
4 #include <apt-pkg/debindexfile.h>
5 #include <apt-pkg/strutl.h>
6 #include <apt-pkg/acquire-item.h>
7 #include <apt-pkg/configuration.h>
8 #include <apt-pkg/aptconfiguration.h>
9 #include <apt-pkg/error.h>
15 string
debReleaseIndex::Info(const char *Type
, string
const &Section
, string
const &Arch
) const
17 string Info
= ::URI::SiteOnly(URI
) + ' ';
18 if (Dist
[Dist
.size() - 1] == '/')
25 Info
+= Dist
+ '/' + Section
;
26 if (Arch
.empty() != true)
34 string
debReleaseIndex::MetaIndexInfo(const char *Type
) const
36 string Info
= ::URI::SiteOnly(URI
) + ' ';
37 if (Dist
[Dist
.size() - 1] == '/')
49 string
debReleaseIndex::MetaIndexFile(const char *Type
) const
51 return _config
->FindDir("Dir::State::lists") +
52 URItoFileName(MetaIndexURI(Type
));
55 string
debReleaseIndex::MetaIndexURI(const char *Type
) const
61 else if (Dist
[Dist
.size()-1] == '/')
64 Res
= URI
+ "dists/" + Dist
+ "/";
70 string
debReleaseIndex::IndexURISuffix(const char *Type
, string
const &Section
, string
const &Arch
) const
73 if (Dist
[Dist
.size() - 1] != '/')
76 Res
+= Section
+ "/binary-" + _config
->Find("APT::Architecture") + '/';
78 Res
+= Section
+ "/binary-" + Arch
+ '/';
84 string
debReleaseIndex::IndexURI(const char *Type
, string
const &Section
, string
const &Arch
) const
86 if (Dist
[Dist
.size() - 1] == '/')
96 return URI
+ "dists/" + Dist
+ '/' + IndexURISuffix(Type
, Section
, Arch
);
99 string
debReleaseIndex::SourceIndexURISuffix(const char *Type
, const string
&Section
) const
102 if (Dist
[Dist
.size() - 1] != '/')
103 Res
+= Section
+ "/source/";
107 string
debReleaseIndex::SourceIndexURI(const char *Type
, const string
&Section
) const
110 if (Dist
[Dist
.size() - 1] == '/')
119 return URI
+ "dists/" + Dist
+ "/" + SourceIndexURISuffix(Type
, Section
);
122 string
debReleaseIndex::TranslationIndexURISuffix(const char *Type
, const string
&Section
) const
125 if (Dist
[Dist
.size() - 1] != '/')
126 Res
+= Section
+ "/i18n/";
130 string
debReleaseIndex::TranslationIndexURI(const char *Type
, const string
&Section
) const
133 if (Dist
[Dist
.size() - 1] == '/')
142 return URI
+ "dists/" + Dist
+ "/" + TranslationIndexURISuffix(Type
, Section
);
145 debReleaseIndex::debReleaseIndex(string
const &URI
, string
const &Dist
) {
148 this->Indexes
= NULL
;
152 debReleaseIndex::~debReleaseIndex() {
153 for (map
<string
, vector
<debSectionEntry
const*> >::const_iterator A
= ArchEntries
.begin();
154 A
!= ArchEntries
.end(); ++A
)
155 for (vector
<const debSectionEntry
*>::const_iterator S
= A
->second
.begin();
156 S
!= A
->second
.end(); ++S
)
160 vector
<struct IndexTarget
*>* debReleaseIndex::ComputeIndexTargets() const {
161 vector
<struct IndexTarget
*>* IndexTargets
= new vector
<IndexTarget
*>;
163 map
<string
, vector
<debSectionEntry
const*> >::const_iterator
const src
= ArchEntries
.find("source");
164 if (src
!= ArchEntries
.end()) {
165 vector
<debSectionEntry
const*> const SectionEntries
= src
->second
;
166 for (vector
<debSectionEntry
const*>::const_iterator I
= SectionEntries
.begin();
167 I
!= SectionEntries
.end(); ++I
) {
168 IndexTarget
* Target
= new IndexTarget();
169 Target
->ShortDesc
= "Sources";
170 Target
->MetaKey
= SourceIndexURISuffix(Target
->ShortDesc
.c_str(), (*I
)->Section
);
171 Target
->URI
= SourceIndexURI(Target
->ShortDesc
.c_str(), (*I
)->Section
);
172 Target
->Description
= Info (Target
->ShortDesc
.c_str(), (*I
)->Section
);
173 IndexTargets
->push_back (Target
);
177 // Only source release
178 if (IndexTargets
->empty() == false && ArchEntries
.size() == 1)
181 std::set
<std::string
> sections
;
182 for (map
<string
, vector
<debSectionEntry
const*> >::const_iterator a
= ArchEntries
.begin();
183 a
!= ArchEntries
.end(); ++a
) {
184 if (a
->first
== "source")
186 for (vector
<const debSectionEntry
*>::const_iterator I
= a
->second
.begin();
187 I
!= a
->second
.end(); ++I
) {
188 IndexTarget
* Target
= new IndexTarget();
189 Target
->ShortDesc
= "Packages";
190 Target
->MetaKey
= IndexURISuffix(Target
->ShortDesc
.c_str(), (*I
)->Section
, a
->first
);
191 Target
->URI
= IndexURI(Target
->ShortDesc
.c_str(), (*I
)->Section
, a
->first
);
192 Target
->Description
= Info (Target
->ShortDesc
.c_str(), (*I
)->Section
, a
->first
);
193 IndexTargets
->push_back (Target
);
194 sections
.insert((*I
)->Section
);
198 std::vector
<std::string
> const lang
= APT::Configuration::getLanguages(true);
199 if (lang
.empty() == true)
202 // get the Translations:
203 // - if its a dists-style repository get the i18n/Index first
204 // - if its flat try to acquire files by guessing
205 if (Dist
[Dist
.size() - 1] == '/') {
206 for (std::set
<std::string
>::const_iterator s
= sections
.begin();
207 s
!= sections
.end(); ++s
) {
208 for (std::vector
<std::string
>::const_iterator l
= lang
.begin();
209 l
!= lang
.end(); l
++) {
210 if (*l
== "none") continue;
211 IndexTarget
* Target
= new OptionalIndexTarget();
212 Target
->ShortDesc
= "Translation-" + *l
;
213 Target
->MetaKey
= TranslationIndexURISuffix(l
->c_str(), *s
);
214 Target
->URI
= TranslationIndexURI(l
->c_str(), *s
);
215 Target
->Description
= Info (Target
->ShortDesc
.c_str(), *s
);
216 IndexTargets
->push_back(Target
);
220 for (std::set
<std::string
>::const_iterator s
= sections
.begin();
221 s
!= sections
.end(); ++s
) {
222 IndexTarget
* Target
= new OptionalIndexTarget();
223 Target
->ShortDesc
= "TranslationIndex";
224 Target
->MetaKey
= TranslationIndexURISuffix("Index", *s
);
225 Target
->URI
= TranslationIndexURI("Index", *s
);
226 Target
->Description
= Info (Target
->ShortDesc
.c_str(), *s
);
227 IndexTargets
->push_back (Target
);
234 bool debReleaseIndex::GetIndexes(pkgAcquire
*Owner
, bool const &GetAll
) const
236 // special case for --print-uris
238 vector
<struct IndexTarget
*> *targets
= ComputeIndexTargets();
239 for (vector
<struct IndexTarget
*>::const_iterator Target
= targets
->begin(); Target
!= targets
->end(); Target
++) {
240 new pkgAcqIndex(Owner
, (*Target
)->URI
, (*Target
)->Description
,
241 (*Target
)->ShortDesc
, HashString());
245 new pkgAcqMetaClearSig(Owner
, MetaIndexURI("InRelease"),
246 MetaIndexInfo("InRelease"), "InRelease",
247 MetaIndexURI("Release"), MetaIndexInfo("Release"), "Release",
248 MetaIndexURI("Release.gpg"), MetaIndexInfo("Release.gpg"), "Release.gpg",
249 ComputeIndexTargets(),
250 new indexRecords (Dist
));
255 bool debReleaseIndex::IsTrusted() const
257 if(_config
->FindB("APT::Authentication::TrustCDROM", false))
258 if(URI
.substr(0,strlen("cdrom:")) == "cdrom:")
261 string VerifiedSigFile
= _config
->FindDir("Dir::State::lists") +
262 URItoFileName(MetaIndexURI("Release")) + ".gpg";
264 if (FileExists(VerifiedSigFile
))
267 VerifiedSigFile
= _config
->FindDir("Dir::State::lists") +
268 URItoFileName(MetaIndexURI("InRelease"));
270 return FileExists(VerifiedSigFile
);
273 vector
<pkgIndexFile
*> *debReleaseIndex::GetIndexFiles() {
277 Indexes
= new vector
<pkgIndexFile
*>;
278 map
<string
, vector
<debSectionEntry
const*> >::const_iterator
const src
= ArchEntries
.find("source");
279 if (src
!= ArchEntries
.end()) {
280 vector
<debSectionEntry
const*> const SectionEntries
= src
->second
;
281 for (vector
<debSectionEntry
const*>::const_iterator I
= SectionEntries
.begin();
282 I
!= SectionEntries
.end(); I
++)
283 Indexes
->push_back(new debSourcesIndex (URI
, Dist
, (*I
)->Section
, IsTrusted()));
286 // Only source release
287 if (Indexes
->empty() == false && ArchEntries
.size() == 1)
290 std::vector
<std::string
> const lang
= APT::Configuration::getLanguages(true);
291 map
<string
, set
<string
> > sections
;
292 for (map
<string
, vector
<debSectionEntry
const*> >::const_iterator a
= ArchEntries
.begin();
293 a
!= ArchEntries
.end(); ++a
) {
294 if (a
->first
== "source")
296 for (vector
<debSectionEntry
const*>::const_iterator I
= a
->second
.begin();
297 I
!= a
->second
.end(); I
++) {
298 Indexes
->push_back(new debPackagesIndex (URI
, Dist
, (*I
)->Section
, IsTrusted(), a
->first
));
299 sections
[(*I
)->Section
].insert(lang
.begin(), lang
.end());
303 for (map
<string
, set
<string
> >::const_iterator s
= sections
.begin();
304 s
!= sections
.end(); ++s
)
305 for (set
<string
>::const_iterator l
= s
->second
.begin();
306 l
!= s
->second
.end(); l
++) {
307 if (*l
== "none") continue;
308 Indexes
->push_back(new debTranslationsIndex(URI
,Dist
,s
->first
,(*l
).c_str()));
314 void debReleaseIndex::PushSectionEntry(vector
<string
> const &Archs
, const debSectionEntry
*Entry
) {
315 for (vector
<string
>::const_iterator a
= Archs
.begin();
316 a
!= Archs
.end(); ++a
)
317 ArchEntries
[*a
].push_back(new debSectionEntry(Entry
->Section
, Entry
->IsSrc
));
321 void debReleaseIndex::PushSectionEntry(string
const &Arch
, const debSectionEntry
*Entry
) {
322 ArchEntries
[Arch
].push_back(Entry
);
325 void debReleaseIndex::PushSectionEntry(const debSectionEntry
*Entry
) {
326 if (Entry
->IsSrc
== true)
327 PushSectionEntry("source", Entry
);
329 for (map
<string
, vector
<const debSectionEntry
*> >::iterator a
= ArchEntries
.begin();
330 a
!= ArchEntries
.end(); ++a
) {
331 a
->second
.push_back(Entry
);
336 debReleaseIndex::debSectionEntry::debSectionEntry (string
const &Section
,
337 bool const &IsSrc
): Section(Section
), IsSrc(IsSrc
)
340 class debSLTypeDebian
: public pkgSourceList::Type
344 bool CreateItemInternal(vector
<metaIndex
*> &List
, string
const &URI
,
345 string
const &Dist
, string
const &Section
,
346 bool const &IsSrc
, map
<string
, string
> const &Options
) const
348 map
<string
, string
>::const_iterator
const arch
= Options
.find("arch");
349 vector
<string
> const Archs
=
350 (arch
!= Options
.end()) ? VectorizeString(arch
->second
, ',') :
351 APT::Configuration::getArchitectures();
353 for (vector
<metaIndex
*>::const_iterator I
= List
.begin();
354 I
!= List
.end(); I
++)
356 // We only worry about debian entries here
357 if (strcmp((*I
)->GetType(), "deb") != 0)
360 debReleaseIndex
*Deb
= (debReleaseIndex
*) (*I
);
361 /* This check insures that there will be only one Release file
362 queued for all the Packages files and Sources files it
364 if (Deb
->GetURI() == URI
&& Deb
->GetDist() == Dist
)
367 Deb
->PushSectionEntry("source", new debReleaseIndex::debSectionEntry(Section
, IsSrc
));
370 if (Dist
[Dist
.size() - 1] == '/')
371 Deb
->PushSectionEntry("any", new debReleaseIndex::debSectionEntry(Section
, IsSrc
));
373 Deb
->PushSectionEntry(Archs
, new debReleaseIndex::debSectionEntry(Section
, IsSrc
));
378 // No currently created Release file indexes this entry, so we create a new one.
379 // XXX determine whether this release is trusted or not
380 debReleaseIndex
*Deb
= new debReleaseIndex(URI
, Dist
);
382 Deb
->PushSectionEntry ("source", new debReleaseIndex::debSectionEntry(Section
, IsSrc
));
385 if (Dist
[Dist
.size() - 1] == '/')
386 Deb
->PushSectionEntry ("any", new debReleaseIndex::debSectionEntry(Section
, IsSrc
));
388 Deb
->PushSectionEntry (Archs
, new debReleaseIndex::debSectionEntry(Section
, IsSrc
));
395 class debSLTypeDeb
: public debSLTypeDebian
399 bool CreateItem(vector
<metaIndex
*> &List
, string
const &URI
,
400 string
const &Dist
, string
const &Section
,
401 std::map
<string
, string
> const &Options
) const
403 return CreateItemInternal(List
, URI
, Dist
, Section
, false, Options
);
409 Label
= "Standard Debian binary tree";
413 class debSLTypeDebSrc
: public debSLTypeDebian
417 bool CreateItem(vector
<metaIndex
*> &List
, string
const &URI
,
418 string
const &Dist
, string
const &Section
,
419 std::map
<string
, string
> const &Options
) const
421 return CreateItemInternal(List
, URI
, Dist
, Section
, true, Options
);
427 Label
= "Standard Debian source tree";
431 debSLTypeDeb _apt_DebType
;
432 debSLTypeDebSrc _apt_DebSrcType
;