4 #pragma implementation "apt-pkg/debmetaindex.h"
7 #include <apt-pkg/debmetaindex.h>
8 #include <apt-pkg/debindexfile.h>
9 #include <apt-pkg/strutl.h>
10 #include <apt-pkg/acquire-item.h>
11 #include <apt-pkg/configuration.h>
12 #include <apt-pkg/error.h>
16 string
debReleaseIndex::Info(const char *Type
, const string Section
) const
18 string Info
= ::URI::SiteOnly(URI
) + ' ';
19 if (Dist
[Dist
.size() - 1] == '/')
25 Info
+= Dist
+ '/' + Section
;
31 string
debReleaseIndex::MetaIndexInfo(const char *Type
) const
33 string Info
= ::URI::SiteOnly(URI
) + ' ';
34 if (Dist
[Dist
.size() - 1] == '/')
46 string
debReleaseIndex::MetaIndexFile(const char *Type
) const
48 return _config
->FindDir("Dir::State::lists") +
49 URItoFileName(MetaIndexURI(Type
));
52 string
debReleaseIndex::MetaIndexURI(const char *Type
) const
58 else if (Dist
[Dist
.size()-1] == '/')
61 Res
= URI
+ "dists/" + Dist
+ "/";
67 string
debReleaseIndex::IndexURISuffix(const char *Type
, const string Section
) const
70 if (Dist
[Dist
.size() - 1] != '/')
71 Res
+= Section
+ "/binary-" + _config
->Find("APT::Architecture") + '/';
76 string
debReleaseIndex::IndexURI(const char *Type
, const string Section
) const
78 if (Dist
[Dist
.size() - 1] == '/')
88 return URI
+ "dists/" + Dist
+ '/' + IndexURISuffix(Type
, Section
);
91 string
debReleaseIndex::SourceIndexURISuffix(const char *Type
, const string Section
) const
94 if (Dist
[Dist
.size() - 1] != '/')
95 Res
+= Section
+ "/source/";
99 string
debReleaseIndex::SourceIndexURI(const char *Type
, const string Section
) const
102 if (Dist
[Dist
.size() - 1] == '/')
111 return URI
+ "dists/" + Dist
+ "/" + SourceIndexURISuffix(Type
, Section
);
114 debReleaseIndex::debReleaseIndex(string URI
,string Dist
)
118 this->Indexes
= NULL
;
122 vector
<struct IndexTarget
*>* debReleaseIndex::ComputeIndexTargets() const
124 vector
<struct IndexTarget
*>* IndexTargets
= new vector
<IndexTarget
*>;
125 for (vector
<const debSectionEntry
*>::const_iterator I
= SectionEntries
.begin();
126 I
!= SectionEntries
.end();
129 IndexTarget
* Target
= new IndexTarget();
130 Target
->ShortDesc
= (*I
)->IsSrc
? "Sources" : "Packages";
132 = (*I
)->IsSrc
? SourceIndexURISuffix(Target
->ShortDesc
.c_str(), (*I
)->Section
)
133 : IndexURISuffix(Target
->ShortDesc
.c_str(), (*I
)->Section
);
135 = (*I
)->IsSrc
? SourceIndexURI(Target
->ShortDesc
.c_str(), (*I
)->Section
)
136 : IndexURI(Target
->ShortDesc
.c_str(), (*I
)->Section
);
138 Target
->Description
= Info (Target
->ShortDesc
.c_str(), (*I
)->Section
);
139 IndexTargets
->push_back (Target
);
144 bool debReleaseIndex::GetIndexes(pkgAcquire
*Owner
, bool GetAll
) const
146 // special case for --print-uris
148 vector
<struct IndexTarget
*> *targets
= ComputeIndexTargets();
149 for (vector
<struct IndexTarget
*>::const_iterator Target
= targets
->begin(); Target
!= targets
->end(); Target
++) {
150 new pkgAcqIndex(Owner
, (*Target
)->URI
, (*Target
)->Description
,
151 (*Target
)->ShortDesc
, "");
154 new pkgAcqMetaSig(Owner
, MetaIndexURI("Release.gpg"),
155 MetaIndexInfo("Release.gpg"), "Release.gpg",
156 MetaIndexURI("Release"), MetaIndexInfo("Release"), "Release",
157 ComputeIndexTargets(),
158 new indexRecords (Dist
));
163 bool debReleaseIndex::IsTrusted() const
165 string VerifiedSigFile
= _config
->FindDir("Dir::State::lists") +
166 URItoFileName(MetaIndexURI("Release")) + ".gpg";
168 if(_config
->FindB("APT::Authentication::TrustCDROM", false))
169 if(URI
.substr(0,strlen("cdrom:")) == "cdrom:")
172 if (FileExists(VerifiedSigFile
))
177 vector
<pkgIndexFile
*> *debReleaseIndex::GetIndexFiles()
182 Indexes
= new vector
<pkgIndexFile
*>;
183 for (vector
<const debSectionEntry
*>::const_iterator I
= SectionEntries
.begin();
184 I
!= SectionEntries
.end(); I
++)
186 Indexes
->push_back(new debSourcesIndex (URI
, Dist
, (*I
)->Section
, IsTrusted()));
188 Indexes
->push_back(new debPackagesIndex (URI
, Dist
, (*I
)->Section
, IsTrusted()));
192 void debReleaseIndex::PushSectionEntry(const debSectionEntry
*Entry
)
194 SectionEntries
.push_back(Entry
);
197 debReleaseIndex::debSectionEntry::debSectionEntry (string Section
, bool IsSrc
): Section(Section
)
202 class debSLTypeDebian
: public pkgSourceList::Type
206 bool CreateItemInternal(vector
<metaIndex
*> &List
,string URI
,
207 string Dist
,string Section
,
210 for (vector
<metaIndex
*>::const_iterator I
= List
.begin();
211 I
!= List
.end(); I
++)
213 // This check insures that there will be only one Release file
214 // queued for all the Packages files and Sources files it
216 if ((*I
)->GetType() == "deb")
218 debReleaseIndex
*Deb
= (debReleaseIndex
*) (*I
);
219 // This check insures that there will be only one Release file
220 // queued for all the Packages files and Sources files it
222 if (Deb
->GetURI() == URI
&& Deb
->GetDist() == Dist
)
224 Deb
->PushSectionEntry(new debReleaseIndex::debSectionEntry(Section
, IsSrc
));
229 // No currently created Release file indexes this entry, so we create a new one.
230 // XXX determine whether this release is trusted or not
231 debReleaseIndex
*Deb
= new debReleaseIndex(URI
,Dist
);
232 Deb
->PushSectionEntry (new debReleaseIndex::debSectionEntry(Section
, IsSrc
));
238 class debSLTypeDeb
: public debSLTypeDebian
242 bool CreateItem(vector
<metaIndex
*> &List
,string URI
,
243 string Dist
,string Section
) const
245 return CreateItemInternal(List
, URI
, Dist
, Section
, false);
251 Label
= "Standard Debian binary tree";
255 class debSLTypeDebSrc
: public debSLTypeDebian
259 bool CreateItem(vector
<metaIndex
*> &List
,string URI
,
260 string Dist
,string Section
) const
262 return CreateItemInternal(List
, URI
, Dist
, Section
, true);
268 Label
= "Standard Debian source tree";
272 debSLTypeDeb _apt_DebType
;
273 debSLTypeDebSrc _apt_DebSrcType
;