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 /*{{{*/
12 #include <apt-pkg/debindexfile.h>
13 #include <apt-pkg/debsrcrecords.h>
14 #include <apt-pkg/deblistparser.h>
15 #include <apt-pkg/debrecords.h>
16 #include <apt-pkg/sourcelist.h>
17 #include <apt-pkg/configuration.h>
18 #include <apt-pkg/progress.h>
19 #include <apt-pkg/error.h>
20 #include <apt-pkg/strutl.h>
21 #include <apt-pkg/acquire-item.h>
22 #include <apt-pkg/debmetaindex.h>
27 // SourcesIndex::debSourcesIndex - Constructor /*{{{*/
28 // ---------------------------------------------------------------------
30 debSourcesIndex::debSourcesIndex(string URI
,string Dist
,string Section
,bool Trusted
) :
31 pkgIndexFile(Trusted
), URI(URI
), Dist(Dist
), Section(Section
)
35 // SourcesIndex::SourceInfo - Short 1 liner describing a source /*{{{*/
36 // ---------------------------------------------------------------------
37 /* The result looks like:
38 http://foo/ stable/main src 1.1.1 (dsc) */
39 string
debSourcesIndex::SourceInfo(pkgSrcRecords::Parser
const &Record
,
40 pkgSrcRecords::File
const &File
) const
43 Res
= ::URI::SiteOnly(URI
) + ' ';
44 if (Dist
[Dist
.size() - 1] == '/')
50 Res
+= Dist
+ '/' + Section
;
53 Res
+= Record
.Package();
55 Res
+= Record
.Version();
56 if (File
.Type
.empty() == false)
57 Res
+= " (" + File
.Type
+ ")";
61 // SourcesIndex::CreateSrcParser - Get a parser for the source files /*{{{*/
62 // ---------------------------------------------------------------------
64 pkgSrcRecords::Parser
*debSourcesIndex::CreateSrcParser() const
66 string SourcesURI
= URItoFileName(IndexURI("Sources"));
67 return new debSrcRecordParser(_config
->FindDir("Dir::State::lists") +
71 // SourcesIndex::Describe - Give a descriptive path to the index /*{{{*/
72 // ---------------------------------------------------------------------
74 string
debSourcesIndex::Describe(bool Short
) const
78 snprintf(S
,sizeof(S
),"%s",Info("Sources").c_str());
80 snprintf(S
,sizeof(S
),"%s (%s)",Info("Sources").c_str(),
81 IndexFile("Sources").c_str());
86 // SourcesIndex::Info - One liner describing the index URI /*{{{*/
87 // ---------------------------------------------------------------------
89 string
debSourcesIndex::Info(const char *Type
) const
91 string Info
= ::URI::SiteOnly(URI
) + ' ';
92 if (Dist
[Dist
.size() - 1] == '/')
98 Info
+= Dist
+ '/' + Section
;
104 // SourcesIndex::Index* - Return the URI to the index files /*{{{*/
105 // ---------------------------------------------------------------------
107 inline string
debSourcesIndex::IndexFile(const char *Type
) const
109 return URItoFileName(IndexURI(Type
));
111 string
debSourcesIndex::IndexURI(const char *Type
) const
114 if (Dist
[Dist
.size() - 1] == '/')
122 Res
= URI
+ "dists/" + Dist
+ '/' + Section
+
129 // SourcesIndex::Exists - Check if the index is available /*{{{*/
130 // ---------------------------------------------------------------------
132 bool debSourcesIndex::Exists() const
134 return FileExists(IndexFile("Sources"));
137 // SourcesIndex::Size - Return the size of the index /*{{{*/
138 // ---------------------------------------------------------------------
140 unsigned long debSourcesIndex::Size() const
143 if (stat(IndexFile("Sources").c_str(),&S
) != 0)
149 // PackagesIndex::debPackagesIndex - Contructor /*{{{*/
150 // ---------------------------------------------------------------------
152 debPackagesIndex::debPackagesIndex(string URI
,string Dist
,string Section
,bool Trusted
) :
153 pkgIndexFile(Trusted
), URI(URI
), Dist(Dist
), Section(Section
)
157 // PackagesIndex::ArchiveInfo - Short version of the archive url /*{{{*/
158 // ---------------------------------------------------------------------
159 /* This is a shorter version that is designed to be < 60 chars or so */
160 string
debPackagesIndex::ArchiveInfo(pkgCache::VerIterator Ver
) const
162 string Res
= ::URI::SiteOnly(URI
) + ' ';
163 if (Dist
[Dist
.size() - 1] == '/')
169 Res
+= Dist
+ '/' + Section
;
172 Res
+= Ver
.ParentPkg().Name();
178 // PackagesIndex::Describe - Give a descriptive path to the index /*{{{*/
179 // ---------------------------------------------------------------------
180 /* This should help the user find the index in the sources.list and
181 in the filesystem for problem solving */
182 string
debPackagesIndex::Describe(bool Short
) const
186 snprintf(S
,sizeof(S
),"%s",Info("Packages").c_str());
188 snprintf(S
,sizeof(S
),"%s (%s)",Info("Packages").c_str(),
189 IndexFile("Packages").c_str());
193 // PackagesIndex::Info - One liner describing the index URI /*{{{*/
194 // ---------------------------------------------------------------------
196 string
debPackagesIndex::Info(const char *Type
) const
198 string Info
= ::URI::SiteOnly(URI
) + ' ';
199 if (Dist
[Dist
.size() - 1] == '/')
205 Info
+= Dist
+ '/' + Section
;
211 // PackagesIndex::Index* - Return the URI to the index files /*{{{*/
212 // ---------------------------------------------------------------------
214 inline string
debPackagesIndex::IndexFile(const char *Type
) const
216 return _config
->FindDir("Dir::State::lists") + URItoFileName(IndexURI(Type
));
218 string
debPackagesIndex::IndexURI(const char *Type
) const
221 if (Dist
[Dist
.size() - 1] == '/')
229 Res
= URI
+ "dists/" + Dist
+ '/' + Section
+
230 "/binary-" + _config
->Find("APT::Architecture") + '/';
236 // PackagesIndex::Exists - Check if the index is available /*{{{*/
237 // ---------------------------------------------------------------------
239 bool debPackagesIndex::Exists() const
241 return FileExists(IndexFile("Packages"));
244 // PackagesIndex::Size - Return the size of the index /*{{{*/
245 // ---------------------------------------------------------------------
246 /* This is really only used for progress reporting. */
247 unsigned long debPackagesIndex::Size() const
250 if (stat(IndexFile("Packages").c_str(),&S
) != 0)
255 // PackagesIndex::Merge - Load the index file into a cache /*{{{*/
256 // ---------------------------------------------------------------------
258 bool debPackagesIndex::Merge(pkgCacheGenerator
&Gen
,OpProgress
&Prog
) const
260 string PackageFile
= IndexFile("Packages");
261 FileFd
Pkg(PackageFile
,FileFd::ReadOnly
);
262 debListParser
Parser(&Pkg
);
263 if (_error
->PendingError() == true)
264 return _error
->Error("Problem opening %s",PackageFile
.c_str());
266 Prog
.SubProgress(0,Info("Packages"));
268 if (Gen
.SelectFile(PackageFile
,Tmp
.Host
,*this) == false)
269 return _error
->Error("Problem with SelectFile %s",PackageFile
.c_str());
271 // Store the IMS information
272 pkgCache::PkgFileIterator File
= Gen
.GetCurFile();
274 if (fstat(Pkg
.Fd(),&St
) != 0)
275 return _error
->Errno("fstat","Failed to stat");
276 File
->Size
= St
.st_size
;
277 File
->mtime
= St
.st_mtime
;
279 if (Gen
.MergeList(Parser
) == false)
280 return _error
->Error("Problem with MergeList %s",PackageFile
.c_str());
282 // Check the release file
283 string ReleaseFile
= debReleaseIndex(URI
,Dist
).MetaIndexFile("Release");
284 if (FileExists(ReleaseFile
) == true)
286 FileFd
Rel(ReleaseFile
,FileFd::ReadOnly
);
287 if (_error
->PendingError() == true)
289 Parser
.LoadReleaseInfo(File
,Rel
,Section
);
295 // PackagesIndex::FindInCache - Find this index /*{{{*/
296 // ---------------------------------------------------------------------
298 pkgCache::PkgFileIterator
debPackagesIndex::FindInCache(pkgCache
&Cache
) const
300 string FileName
= IndexFile("Packages");
301 pkgCache::PkgFileIterator File
= Cache
.FileBegin();
302 for (; File
.end() == false; File
++)
304 if (File
.FileName() == NULL
|| FileName
!= File
.FileName())
308 if (stat(File
.FileName(),&St
) != 0)
310 if (_config
->FindB("Debug::pkgCacheGen", false))
311 std::clog
<< "PackagesIndex::FindInCache - stat failed on " << File
.FileName() << std::endl
;
312 return pkgCache::PkgFileIterator(Cache
);
314 if ((unsigned)St
.st_size
!= File
->Size
|| St
.st_mtime
!= File
->mtime
)
316 if (_config
->FindB("Debug::pkgCacheGen", false))
317 std::clog
<< "PackagesIndex::FindInCache - size (" << St
.st_size
<< " <> " << File
->Size
318 << ") or mtime (" << St
.st_mtime
<< " <> " << File
->mtime
319 << ") doesn't match for " << File
.FileName() << std::endl
;
320 return pkgCache::PkgFileIterator(Cache
);
329 // TranslationsIndex::debTranslationsIndex - Contructor /*{{{*/
330 // ---------------------------------------------------------------------
332 debTranslationsIndex::debTranslationsIndex(string URI
,string Dist
,string Section
) :
333 pkgIndexFile(true), URI(URI
), Dist(Dist
), Section(Section
)
337 // TranslationIndex::Trans* - Return the URI to the translation files /*{{{*/
338 // ---------------------------------------------------------------------
340 inline string
debTranslationsIndex::IndexFile(const char *Type
) const
342 return _config
->FindDir("Dir::State::lists") + URItoFileName(IndexURI(Type
));
344 string
debTranslationsIndex::IndexURI(const char *Type
) const
347 if (Dist
[Dist
.size() - 1] == '/')
355 Res
= URI
+ "dists/" + Dist
+ '/' + Section
+
356 "/i18n/Translation-";
362 // TranslationsIndex::GetIndexes - Fetch the index files /*{{{*/
363 // ---------------------------------------------------------------------
365 bool debTranslationsIndex::GetIndexes(pkgAcquire
*Owner
) const
367 if (TranslationsAvailable()) {
368 string TranslationFile
= "Translation-" + LanguageCode();
369 new pkgAcqIndexTrans(Owner
, IndexURI(LanguageCode().c_str()),
370 Info(TranslationFile
.c_str()),
377 // TranslationsIndex::Describe - Give a descriptive path to the index /*{{{*/
378 // ---------------------------------------------------------------------
379 /* This should help the user find the index in the sources.list and
380 in the filesystem for problem solving */
381 string
debTranslationsIndex::Describe(bool Short
) const
385 snprintf(S
,sizeof(S
),"%s",Info(TranslationFile().c_str()).c_str());
387 snprintf(S
,sizeof(S
),"%s (%s)",Info(TranslationFile().c_str()).c_str(),
388 IndexFile(LanguageCode().c_str()).c_str());
392 // TranslationsIndex::Info - One liner describing the index URI /*{{{*/
393 // ---------------------------------------------------------------------
395 string
debTranslationsIndex::Info(const char *Type
) const
397 string Info
= ::URI::SiteOnly(URI
) + ' ';
398 if (Dist
[Dist
.size() - 1] == '/')
404 Info
+= Dist
+ '/' + Section
;
410 bool debTranslationsIndex::HasPackages() const
412 if(!TranslationsAvailable())
415 return FileExists(IndexFile(LanguageCode().c_str()));
418 // TranslationsIndex::Exists - Check if the index is available /*{{{*/
419 // ---------------------------------------------------------------------
421 bool debTranslationsIndex::Exists() const
423 return FileExists(IndexFile(LanguageCode().c_str()));
426 // TranslationsIndex::Size - Return the size of the index /*{{{*/
427 // ---------------------------------------------------------------------
428 /* This is really only used for progress reporting. */
429 unsigned long debTranslationsIndex::Size() const
432 if (stat(IndexFile(LanguageCode().c_str()).c_str(),&S
) != 0)
437 // TranslationsIndex::Merge - Load the index file into a cache /*{{{*/
438 // ---------------------------------------------------------------------
440 bool debTranslationsIndex::Merge(pkgCacheGenerator
&Gen
,OpProgress
&Prog
) const
442 // Check the translation file, if in use
443 string TranslationFile
= IndexFile(LanguageCode().c_str());
444 if (TranslationsAvailable() && FileExists(TranslationFile
))
446 FileFd
Trans(TranslationFile
,FileFd::ReadOnly
);
447 debListParser
TransParser(&Trans
);
448 if (_error
->PendingError() == true)
451 Prog
.SubProgress(0, Info(TranslationFile
.c_str()));
452 if (Gen
.SelectFile(TranslationFile
,string(),*this) == false)
453 return _error
->Error("Problem with SelectFile %s",TranslationFile
.c_str());
455 // Store the IMS information
456 pkgCache::PkgFileIterator TransFile
= Gen
.GetCurFile();
458 if (fstat(Trans
.Fd(),&TransSt
) != 0)
459 return _error
->Errno("fstat","Failed to stat");
460 TransFile
->Size
= TransSt
.st_size
;
461 TransFile
->mtime
= TransSt
.st_mtime
;
463 if (Gen
.MergeList(TransParser
) == false)
464 return _error
->Error("Problem with MergeList %s",TranslationFile
.c_str());
470 // TranslationsIndex::FindInCache - Find this index /*{{{*/
471 // ---------------------------------------------------------------------
473 pkgCache::PkgFileIterator
debTranslationsIndex::FindInCache(pkgCache
&Cache
) const
475 string FileName
= IndexFile(LanguageCode().c_str());
477 pkgCache::PkgFileIterator File
= Cache
.FileBegin();
478 for (; File
.end() == false; File
++)
480 if (FileName
!= File
.FileName())
484 if (stat(File
.FileName(),&St
) != 0)
486 if (_config
->FindB("Debug::pkgCacheGen", false))
487 std::clog
<< "TranslationIndex::FindInCache - stat failed on " << File
.FileName() << std::endl
;
488 return pkgCache::PkgFileIterator(Cache
);
490 if ((unsigned)St
.st_size
!= File
->Size
|| St
.st_mtime
!= File
->mtime
)
492 if (_config
->FindB("Debug::pkgCacheGen", false))
493 std::clog
<< "TranslationIndex::FindInCache - size (" << St
.st_size
<< " <> " << File
->Size
494 << ") or mtime (" << St
.st_mtime
<< " <> " << File
->mtime
495 << ") doesn't match for " << File
.FileName() << std::endl
;
496 return pkgCache::PkgFileIterator(Cache
);
503 // StatusIndex::debStatusIndex - Constructor /*{{{*/
504 // ---------------------------------------------------------------------
506 debStatusIndex::debStatusIndex(string File
) : pkgIndexFile(true), File(File
)
510 // StatusIndex::Size - Return the size of the index /*{{{*/
511 // ---------------------------------------------------------------------
513 unsigned long debStatusIndex::Size() const
516 if (stat(File
.c_str(),&S
) != 0)
521 // StatusIndex::Merge - Load the index file into a cache /*{{{*/
522 // ---------------------------------------------------------------------
524 bool debStatusIndex::Merge(pkgCacheGenerator
&Gen
,OpProgress
&Prog
) const
526 FileFd
Pkg(File
,FileFd::ReadOnly
);
527 if (_error
->PendingError() == true)
529 debListParser
Parser(&Pkg
);
530 if (_error
->PendingError() == true)
533 Prog
.SubProgress(0,File
);
534 if (Gen
.SelectFile(File
,string(),*this,pkgCache::Flag::NotSource
) == false)
535 return _error
->Error("Problem with SelectFile %s",File
.c_str());
537 // Store the IMS information
538 pkgCache::PkgFileIterator CFile
= Gen
.GetCurFile();
540 if (fstat(Pkg
.Fd(),&St
) != 0)
541 return _error
->Errno("fstat","Failed to stat");
542 CFile
->Size
= St
.st_size
;
543 CFile
->mtime
= St
.st_mtime
;
544 CFile
->Archive
= Gen
.WriteUniqString("now");
546 if (Gen
.MergeList(Parser
) == false)
547 return _error
->Error("Problem with MergeList %s",File
.c_str());
551 // StatusIndex::FindInCache - Find this index /*{{{*/
552 // ---------------------------------------------------------------------
554 pkgCache::PkgFileIterator
debStatusIndex::FindInCache(pkgCache
&Cache
) const
556 pkgCache::PkgFileIterator File
= Cache
.FileBegin();
557 for (; File
.end() == false; File
++)
559 if (this->File
!= File
.FileName())
563 if (stat(File
.FileName(),&St
) != 0)
565 if (_config
->FindB("Debug::pkgCacheGen", false))
566 std::clog
<< "StatusIndex::FindInCache - stat failed on " << File
.FileName() << std::endl
;
567 return pkgCache::PkgFileIterator(Cache
);
569 if ((unsigned)St
.st_size
!= File
->Size
|| St
.st_mtime
!= File
->mtime
)
571 if (_config
->FindB("Debug::pkgCacheGen", false))
572 std::clog
<< "StatusIndex::FindInCache - size (" << St
.st_size
<< " <> " << File
->Size
573 << ") or mtime (" << St
.st_mtime
<< " <> " << File
->mtime
574 << ") doesn't match for " << File
.FileName() << std::endl
;
575 return pkgCache::PkgFileIterator(Cache
);
582 // StatusIndex::Exists - Check if the index is available /*{{{*/
583 // ---------------------------------------------------------------------
585 bool debStatusIndex::Exists() const
587 // Abort if the file does not exist.
592 // Index File types for Debian /*{{{*/
593 class debIFTypeSrc
: public pkgIndexFile::Type
597 debIFTypeSrc() {Label
= "Debian Source Index";};
599 class debIFTypePkg
: public pkgIndexFile::Type
603 virtual pkgRecords::Parser
*CreatePkgParser(pkgCache::PkgFileIterator File
) const
605 return new debRecordParser(File
.FileName(),*File
.Cache());
607 debIFTypePkg() {Label
= "Debian Package Index";};
609 class debIFTypeTrans
: public debIFTypePkg
612 debIFTypeTrans() {Label
= "Debian Translation Index";};
614 class debIFTypeStatus
: public pkgIndexFile::Type
618 virtual pkgRecords::Parser
*CreatePkgParser(pkgCache::PkgFileIterator File
) const
620 return new debRecordParser(File
.FileName(),*File
.Cache());
622 debIFTypeStatus() {Label
= "Debian dpkg status file";};
624 static debIFTypeSrc _apt_Src
;
625 static debIFTypePkg _apt_Pkg
;
626 static debIFTypeTrans _apt_Trans
;
627 static debIFTypeStatus _apt_Status
;
629 const pkgIndexFile::Type
*debSourcesIndex::GetType() const
633 const pkgIndexFile::Type
*debPackagesIndex::GetType() const
637 const pkgIndexFile::Type
*debTranslationsIndex::GetType() const
641 const pkgIndexFile::Type
*debStatusIndex::GetType() const