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 // get the Translations:
199 // - if its a dists-style repository get the i18n/Index first
200 // - if its flat try to acquire files by guessing
201 if (Dist
[Dist
.size() - 1] == '/') {
202 std::vector
<std::string
> const lang
= APT::Configuration::getLanguages(true);
203 for (std::set
<std::string
>::const_iterator s
= sections
.begin();
204 s
!= sections
.end(); ++s
) {
205 for (std::vector
<std::string
>::const_iterator l
= lang
.begin();
206 l
!= lang
.end(); l
++) {
207 if (*l
== "none") continue;
208 IndexTarget
* Target
= new OptionalIndexTarget();
209 Target
->ShortDesc
= "Translation-" + *l
;
210 Target
->MetaKey
= TranslationIndexURISuffix(l
->c_str(), *s
);
211 Target
->URI
= TranslationIndexURI(l
->c_str(), *s
);
212 Target
->Description
= Info (Target
->ShortDesc
.c_str(), *s
);
213 IndexTargets
->push_back(Target
);
217 for (std::set
<std::string
>::const_iterator s
= sections
.begin();
218 s
!= sections
.end(); ++s
) {
219 IndexTarget
* Target
= new OptionalIndexTarget();
220 Target
->ShortDesc
= "TranslationIndex";
221 Target
->MetaKey
= TranslationIndexURISuffix("Index", *s
);
222 Target
->URI
= TranslationIndexURI("Index", *s
);
223 Target
->Description
= Info (Target
->ShortDesc
.c_str(), *s
);
224 IndexTargets
->push_back (Target
);
231 bool debReleaseIndex::GetIndexes(pkgAcquire
*Owner
, bool const &GetAll
) const
233 // special case for --print-uris
235 vector
<struct IndexTarget
*> *targets
= ComputeIndexTargets();
236 for (vector
<struct IndexTarget
*>::const_iterator Target
= targets
->begin(); Target
!= targets
->end(); Target
++) {
237 new pkgAcqIndex(Owner
, (*Target
)->URI
, (*Target
)->Description
,
238 (*Target
)->ShortDesc
, HashString());
242 new pkgAcqMetaClearSig(Owner
, MetaIndexURI("InRelease"),
243 MetaIndexInfo("InRelease"), "InRelease",
244 MetaIndexURI("Release"), MetaIndexInfo("Release"), "Release",
245 MetaIndexURI("Release.gpg"), MetaIndexInfo("Release.gpg"), "Release.gpg",
246 ComputeIndexTargets(),
247 new indexRecords (Dist
));
252 bool debReleaseIndex::IsTrusted() const
254 if(_config
->FindB("APT::Authentication::TrustCDROM", false))
255 if(URI
.substr(0,strlen("cdrom:")) == "cdrom:")
258 string VerifiedSigFile
= _config
->FindDir("Dir::State::lists") +
259 URItoFileName(MetaIndexURI("Release")) + ".gpg";
261 if (FileExists(VerifiedSigFile
))
264 VerifiedSigFile
= _config
->FindDir("Dir::State::lists") +
265 URItoFileName(MetaIndexURI("InRelease"));
267 return FileExists(VerifiedSigFile
);
270 vector
<pkgIndexFile
*> *debReleaseIndex::GetIndexFiles() {
274 Indexes
= new vector
<pkgIndexFile
*>;
275 map
<string
, vector
<debSectionEntry
const*> >::const_iterator
const src
= ArchEntries
.find("source");
276 if (src
!= ArchEntries
.end()) {
277 vector
<debSectionEntry
const*> const SectionEntries
= src
->second
;
278 for (vector
<debSectionEntry
const*>::const_iterator I
= SectionEntries
.begin();
279 I
!= SectionEntries
.end(); I
++)
280 Indexes
->push_back(new debSourcesIndex (URI
, Dist
, (*I
)->Section
, IsTrusted()));
283 // Only source release
284 if (Indexes
->empty() == false && ArchEntries
.size() == 1)
287 std::vector
<std::string
> const lang
= APT::Configuration::getLanguages(true);
288 map
<string
, set
<string
> > sections
;
289 for (map
<string
, vector
<debSectionEntry
const*> >::const_iterator a
= ArchEntries
.begin();
290 a
!= ArchEntries
.end(); ++a
) {
291 if (a
->first
== "source")
293 for (vector
<debSectionEntry
const*>::const_iterator I
= a
->second
.begin();
294 I
!= a
->second
.end(); I
++) {
295 Indexes
->push_back(new debPackagesIndex (URI
, Dist
, (*I
)->Section
, IsTrusted(), a
->first
));
296 sections
[(*I
)->Section
].insert(lang
.begin(), lang
.end());
300 for (map
<string
, set
<string
> >::const_iterator s
= sections
.begin();
301 s
!= sections
.end(); ++s
)
302 for (set
<string
>::const_iterator l
= s
->second
.begin();
303 l
!= s
->second
.end(); l
++) {
304 if (*l
== "none") continue;
305 Indexes
->push_back(new debTranslationsIndex(URI
,Dist
,s
->first
,(*l
).c_str()));
311 void debReleaseIndex::PushSectionEntry(vector
<string
> const &Archs
, const debSectionEntry
*Entry
) {
312 for (vector
<string
>::const_iterator a
= Archs
.begin();
313 a
!= Archs
.end(); ++a
)
314 ArchEntries
[*a
].push_back(new debSectionEntry(Entry
->Section
, Entry
->IsSrc
));
318 void debReleaseIndex::PushSectionEntry(string
const &Arch
, const debSectionEntry
*Entry
) {
319 ArchEntries
[Arch
].push_back(Entry
);
322 void debReleaseIndex::PushSectionEntry(const debSectionEntry
*Entry
) {
323 if (Entry
->IsSrc
== true)
324 PushSectionEntry("source", Entry
);
326 for (map
<string
, vector
<const debSectionEntry
*> >::iterator a
= ArchEntries
.begin();
327 a
!= ArchEntries
.end(); ++a
) {
328 a
->second
.push_back(Entry
);
333 debReleaseIndex::debSectionEntry::debSectionEntry (string
const &Section
,
334 bool const &IsSrc
): Section(Section
), IsSrc(IsSrc
)
337 class debSLTypeDebian
: public pkgSourceList::Type
341 bool CreateItemInternal(vector
<metaIndex
*> &List
, string
const &URI
,
342 string
const &Dist
, string
const &Section
,
343 bool const &IsSrc
, map
<string
, string
> const &Options
) const
345 map
<string
, string
>::const_iterator
const arch
= Options
.find("arch");
346 vector
<string
> const Archs
=
347 (arch
!= Options
.end()) ? VectorizeString(arch
->second
, ',') :
348 APT::Configuration::getArchitectures();
350 for (vector
<metaIndex
*>::const_iterator I
= List
.begin();
351 I
!= List
.end(); I
++)
353 // We only worry about debian entries here
354 if (strcmp((*I
)->GetType(), "deb") != 0)
357 debReleaseIndex
*Deb
= (debReleaseIndex
*) (*I
);
358 /* This check insures that there will be only one Release file
359 queued for all the Packages files and Sources files it
361 if (Deb
->GetURI() == URI
&& Deb
->GetDist() == Dist
)
364 Deb
->PushSectionEntry("source", new debReleaseIndex::debSectionEntry(Section
, IsSrc
));
367 if (Dist
[Dist
.size() - 1] == '/')
368 Deb
->PushSectionEntry("any", new debReleaseIndex::debSectionEntry(Section
, IsSrc
));
370 Deb
->PushSectionEntry(Archs
, new debReleaseIndex::debSectionEntry(Section
, IsSrc
));
375 // No currently created Release file indexes this entry, so we create a new one.
376 // XXX determine whether this release is trusted or not
377 debReleaseIndex
*Deb
= new debReleaseIndex(URI
, Dist
);
379 Deb
->PushSectionEntry ("source", new debReleaseIndex::debSectionEntry(Section
, IsSrc
));
382 if (Dist
[Dist
.size() - 1] == '/')
383 Deb
->PushSectionEntry ("any", new debReleaseIndex::debSectionEntry(Section
, IsSrc
));
385 Deb
->PushSectionEntry (Archs
, new debReleaseIndex::debSectionEntry(Section
, IsSrc
));
392 class debSLTypeDeb
: public debSLTypeDebian
396 bool CreateItem(vector
<metaIndex
*> &List
, string
const &URI
,
397 string
const &Dist
, string
const &Section
,
398 std::map
<string
, string
> const &Options
) const
400 return CreateItemInternal(List
, URI
, Dist
, Section
, false, Options
);
406 Label
= "Standard Debian binary tree";
410 class debSLTypeDebSrc
: public debSLTypeDebian
414 bool CreateItem(vector
<metaIndex
*> &List
, string
const &URI
,
415 string
const &Dist
, string
const &Section
,
416 std::map
<string
, string
> const &Options
) const
418 return CreateItemInternal(List
, URI
, Dist
, Section
, true, Options
);
424 Label
= "Standard Debian source tree";
428 debSLTypeDeb _apt_DebType
;
429 debSLTypeDebSrc _apt_DebSrcType
;