1 // -*- mode: cpp; mode: fold -*-
3 // $Id: debindexfile.cc,v 1.5.2.3 2004/01/04 19:11:00 mdz Exp $
4 /* ######################################################################
6 Debian Specific sources.list types and the three sorts of Debian
9 ##################################################################### */
11 // Include Files /*{{{*/
13 #pragma implementation "apt-pkg/debindexfile.h"
16 #include <apt-pkg/debindexfile.h>
17 #include <apt-pkg/debsrcrecords.h>
18 #include <apt-pkg/deblistparser.h>
19 #include <apt-pkg/debrecords.h>
20 #include <apt-pkg/sourcelist.h>
21 #include <apt-pkg/configuration.h>
22 #include <apt-pkg/progress.h>
23 #include <apt-pkg/error.h>
24 #include <apt-pkg/strutl.h>
25 #include <apt-pkg/acquire-item.h>
26 #include <apt-pkg/debmetaindex.h>
31 // SourcesIndex::debSourcesIndex - Constructor /*{{{*/
32 // ---------------------------------------------------------------------
34 debSourcesIndex::debSourcesIndex(string URI
,string Dist
,string Section
,bool Trusted
) :
35 pkgIndexFile(Trusted
), URI(URI
), Dist(Dist
), Section(Section
)
39 // SourcesIndex::SourceInfo - Short 1 liner describing a source /*{{{*/
40 // ---------------------------------------------------------------------
41 /* The result looks like:
42 http://foo/ stable/main src 1.1.1 (dsc) */
43 string
debSourcesIndex::SourceInfo(pkgSrcRecords::Parser
const &Record
,
44 pkgSrcRecords::File
const &File
) const
47 Res
= ::URI::SiteOnly(URI
) + ' ';
48 if (Dist
[Dist
.size() - 1] == '/')
54 Res
+= Dist
+ '/' + Section
;
57 Res
+= Record
.Package();
59 Res
+= Record
.Version();
60 if (File
.Type
.empty() == false)
61 Res
+= " (" + File
.Type
+ ")";
65 // SourcesIndex::CreateSrcParser - Get a parser for the source files /*{{{*/
66 // ---------------------------------------------------------------------
68 pkgSrcRecords::Parser
*debSourcesIndex::CreateSrcParser() const
70 string SourcesURI
= URItoFileName(IndexURI("Sources"));
71 return new debSrcRecordParser(_config
->FindDir("Dir::State::lists") +
75 // SourcesIndex::Describe - Give a descriptive path to the index /*{{{*/
76 // ---------------------------------------------------------------------
78 string
debSourcesIndex::Describe(bool Short
) const
82 snprintf(S
,sizeof(S
),"%s",Info("Sources").c_str());
84 snprintf(S
,sizeof(S
),"%s (%s)",Info("Sources").c_str(),
85 IndexFile("Sources").c_str());
90 // SourcesIndex::Info - One liner describing the index URI /*{{{*/
91 // ---------------------------------------------------------------------
93 string
debSourcesIndex::Info(const char *Type
) const
95 string Info
= ::URI::SiteOnly(URI
) + ' ';
96 if (Dist
[Dist
.size() - 1] == '/')
102 Info
+= Dist
+ '/' + Section
;
108 // SourcesIndex::Index* - Return the URI to the index files /*{{{*/
109 // ---------------------------------------------------------------------
111 inline string
debSourcesIndex::IndexFile(const char *Type
) const
113 return URItoFileName(IndexURI(Type
));
115 string
debSourcesIndex::IndexURI(const char *Type
) const
118 if (Dist
[Dist
.size() - 1] == '/')
126 Res
= URI
+ "dists/" + Dist
+ '/' + Section
+
133 // SourcesIndex::Exists - Check if the index is available /*{{{*/
134 // ---------------------------------------------------------------------
136 bool debSourcesIndex::Exists() const
138 return FileExists(IndexFile("Sources"));
141 // SourcesIndex::Size - Return the size of the index /*{{{*/
142 // ---------------------------------------------------------------------
144 unsigned long debSourcesIndex::Size() const
147 if (stat(IndexFile("Sources").c_str(),&S
) != 0)
153 // PackagesIndex::debPackagesIndex - Contructor /*{{{*/
154 // ---------------------------------------------------------------------
156 debPackagesIndex::debPackagesIndex(string URI
,string Dist
,string Section
,bool Trusted
) :
157 pkgIndexFile(Trusted
), URI(URI
), Dist(Dist
), Section(Section
)
161 // PackagesIndex::ArchiveInfo - Short version of the archive url /*{{{*/
162 // ---------------------------------------------------------------------
163 /* This is a shorter version that is designed to be < 60 chars or so */
164 string
debPackagesIndex::ArchiveInfo(pkgCache::VerIterator Ver
) const
166 string Res
= ::URI::SiteOnly(URI
) + ' ';
167 if (Dist
[Dist
.size() - 1] == '/')
173 Res
+= Dist
+ '/' + Section
;
176 Res
+= Ver
.ParentPkg().Name();
182 // PackagesIndex::Describe - Give a descriptive path to the index /*{{{*/
183 // ---------------------------------------------------------------------
184 /* This should help the user find the index in the sources.list and
185 in the filesystem for problem solving */
186 string
debPackagesIndex::Describe(bool Short
) const
190 snprintf(S
,sizeof(S
),"%s",Info("Packages").c_str());
192 snprintf(S
,sizeof(S
),"%s (%s)",Info("Packages").c_str(),
193 IndexFile("Packages").c_str());
197 // PackagesIndex::Info - One liner describing the index URI /*{{{*/
198 // ---------------------------------------------------------------------
200 string
debPackagesIndex::Info(const char *Type
) const
202 string Info
= ::URI::SiteOnly(URI
) + ' ';
203 if (Dist
[Dist
.size() - 1] == '/')
209 Info
+= Dist
+ '/' + Section
;
215 // PackagesIndex::Index* - Return the URI to the index files /*{{{*/
216 // ---------------------------------------------------------------------
218 inline string
debPackagesIndex::IndexFile(const char *Type
) const
220 return _config
->FindDir("Dir::State::lists") + URItoFileName(IndexURI(Type
));
222 string
debPackagesIndex::IndexURI(const char *Type
) const
225 if (Dist
[Dist
.size() - 1] == '/')
233 Res
= URI
+ "dists/" + Dist
+ '/' + Section
+
234 "/binary-" + _config
->Find("APT::Architecture") + '/';
240 // PackagesIndex::Exists - Check if the index is available /*{{{*/
241 // ---------------------------------------------------------------------
243 bool debPackagesIndex::Exists() const
245 return FileExists(IndexFile("Packages"));
248 // PackagesIndex::Size - Return the size of the index /*{{{*/
249 // ---------------------------------------------------------------------
250 /* This is really only used for progress reporting. */
251 unsigned long debPackagesIndex::Size() const
254 if (stat(IndexFile("Packages").c_str(),&S
) != 0)
259 // PackagesIndex::Merge - Load the index file into a cache /*{{{*/
260 // ---------------------------------------------------------------------
262 bool debPackagesIndex::Merge(pkgCacheGenerator
&Gen
,OpProgress
&Prog
) const
264 string PackageFile
= IndexFile("Packages");
265 FileFd
Pkg(PackageFile
,FileFd::ReadOnly
);
266 debListParser
Parser(&Pkg
);
267 if (_error
->PendingError() == true)
268 return _error
->Error("Problem opening %s",PackageFile
.c_str());
270 Prog
.SubProgress(0,Info("Packages"));
272 if (Gen
.SelectFile(PackageFile
,Tmp
.Host
,*this) == false)
273 return _error
->Error("Problem with SelectFile %s",PackageFile
.c_str());
275 // Store the IMS information
276 pkgCache::PkgFileIterator File
= Gen
.GetCurFile();
278 if (fstat(Pkg
.Fd(),&St
) != 0)
279 return _error
->Errno("fstat","Failed to stat");
280 File
->Size
= St
.st_size
;
281 File
->mtime
= St
.st_mtime
;
283 if (Gen
.MergeList(Parser
) == false)
284 return _error
->Error("Problem with MergeList %s",PackageFile
.c_str());
286 // Check the release file
287 string ReleaseFile
= debReleaseIndex(URI
,Dist
).MetaIndexFile("Release");
288 if (FileExists(ReleaseFile
) == true)
290 FileFd
Rel(ReleaseFile
,FileFd::ReadOnly
);
291 if (_error
->PendingError() == true)
293 Parser
.LoadReleaseInfo(File
,Rel
,Section
);
299 // PackagesIndex::FindInCache - Find this index /*{{{*/
300 // ---------------------------------------------------------------------
302 pkgCache::PkgFileIterator
debPackagesIndex::FindInCache(pkgCache
&Cache
) const
304 string FileName
= IndexFile("Packages");
305 pkgCache::PkgFileIterator File
= Cache
.FileBegin();
306 for (; File
.end() == false; File
++)
308 if (File
.FileName() == NULL
|| FileName
!= File
.FileName())
312 if (stat(File
.FileName(),&St
) != 0)
313 return pkgCache::PkgFileIterator(Cache
);
314 if ((unsigned)St
.st_size
!= File
->Size
|| St
.st_mtime
!= File
->mtime
)
315 return pkgCache::PkgFileIterator(Cache
);
323 // StatusIndex::debStatusIndex - Constructor /*{{{*/
324 // ---------------------------------------------------------------------
326 debStatusIndex::debStatusIndex(string File
) : pkgIndexFile(true), File(File
)
330 // StatusIndex::Size - Return the size of the index /*{{{*/
331 // ---------------------------------------------------------------------
333 unsigned long debStatusIndex::Size() const
336 if (stat(File
.c_str(),&S
) != 0)
341 // StatusIndex::Merge - Load the index file into a cache /*{{{*/
342 // ---------------------------------------------------------------------
344 bool debStatusIndex::Merge(pkgCacheGenerator
&Gen
,OpProgress
&Prog
) const
346 FileFd
Pkg(File
,FileFd::ReadOnly
);
347 if (_error
->PendingError() == true)
349 debListParser
Parser(&Pkg
);
350 if (_error
->PendingError() == true)
353 Prog
.SubProgress(0,File
);
354 if (Gen
.SelectFile(File
,string(),*this,pkgCache::Flag::NotSource
) == false)
355 return _error
->Error("Problem with SelectFile %s",File
.c_str());
357 // Store the IMS information
358 pkgCache::PkgFileIterator CFile
= Gen
.GetCurFile();
360 if (fstat(Pkg
.Fd(),&St
) != 0)
361 return _error
->Errno("fstat","Failed to stat");
362 CFile
->Size
= St
.st_size
;
363 CFile
->mtime
= St
.st_mtime
;
364 CFile
->Archive
= Gen
.WriteUniqString("now");
366 if (Gen
.MergeList(Parser
) == false)
367 return _error
->Error("Problem with MergeList %s",File
.c_str());
371 // StatusIndex::FindInCache - Find this index /*{{{*/
372 // ---------------------------------------------------------------------
374 pkgCache::PkgFileIterator
debStatusIndex::FindInCache(pkgCache
&Cache
) const
376 pkgCache::PkgFileIterator File
= Cache
.FileBegin();
377 for (; File
.end() == false; File
++)
379 if (this->File
!= File
.FileName())
383 if (stat(File
.FileName(),&St
) != 0)
384 return pkgCache::PkgFileIterator(Cache
);
385 if ((unsigned)St
.st_size
!= File
->Size
|| St
.st_mtime
!= File
->mtime
)
386 return pkgCache::PkgFileIterator(Cache
);
392 // StatusIndex::Exists - Check if the index is available /*{{{*/
393 // ---------------------------------------------------------------------
395 bool debStatusIndex::Exists() const
397 // Abort if the file does not exist.
402 // Index File types for Debian /*{{{*/
403 class debIFTypeSrc
: public pkgIndexFile::Type
407 debIFTypeSrc() {Label
= "Debian Source Index";};
409 class debIFTypePkg
: public pkgIndexFile::Type
413 virtual pkgRecords::Parser
*CreatePkgParser(pkgCache::PkgFileIterator File
) const
415 return new debRecordParser(File
.FileName(),*File
.Cache());
417 debIFTypePkg() {Label
= "Debian Package Index";};
419 class debIFTypeStatus
: public pkgIndexFile::Type
423 virtual pkgRecords::Parser
*CreatePkgParser(pkgCache::PkgFileIterator File
) const
425 return new debRecordParser(File
.FileName(),*File
.Cache());
427 debIFTypeStatus() {Label
= "Debian dpkg status file";};
429 static debIFTypeSrc _apt_Src
;
430 static debIFTypePkg _apt_Pkg
;
431 static debIFTypeStatus _apt_Status
;
433 const pkgIndexFile::Type
*debSourcesIndex::GetType() const
437 const pkgIndexFile::Type
*debPackagesIndex::GetType() const
441 const pkgIndexFile::Type
*debStatusIndex::GetType() const