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 /*{{{*/
14 #include <apt-pkg/debindexfile.h>
15 #include <apt-pkg/debsrcrecords.h>
16 #include <apt-pkg/deblistparser.h>
17 #include <apt-pkg/debrecords.h>
18 #include <apt-pkg/sourcelist.h>
19 #include <apt-pkg/configuration.h>
20 #include <apt-pkg/progress.h>
21 #include <apt-pkg/error.h>
22 #include <apt-pkg/strutl.h>
23 #include <apt-pkg/acquire-item.h>
24 #include <apt-pkg/debmetaindex.h>
29 // SourcesIndex::debSourcesIndex - Constructor /*{{{*/
30 // ---------------------------------------------------------------------
32 debSourcesIndex::debSourcesIndex(string URI
,string Dist
,string Section
,bool Trusted
) :
33 pkgIndexFile(Trusted
), URI(URI
), Dist(Dist
), Section(Section
)
37 // SourcesIndex::SourceInfo - Short 1 liner describing a source /*{{{*/
38 // ---------------------------------------------------------------------
39 /* The result looks like:
40 http://foo/debian/ stable/main src 1.1.1 (dsc) */
41 string
debSourcesIndex::SourceInfo(pkgSrcRecords::Parser
const &Record
,
42 pkgSrcRecords::File
const &File
) const
45 Res
= ::URI::NoUserPassword(URI
) + ' ';
46 if (Dist
[Dist
.size() - 1] == '/')
52 Res
+= Dist
+ '/' + Section
;
55 Res
+= Record
.Package();
57 Res
+= Record
.Version();
58 if (File
.Type
.empty() == false)
59 Res
+= " (" + File
.Type
+ ")";
63 // SourcesIndex::CreateSrcParser - Get a parser for the source files /*{{{*/
64 // ---------------------------------------------------------------------
66 pkgSrcRecords::Parser
*debSourcesIndex::CreateSrcParser() const
68 string SourcesURI
= _config
->FindDir("Dir::State::lists") +
69 URItoFileName(IndexURI("Sources"));
70 string SourcesURIgzip
= SourcesURI
+ ".gz";
72 if (!FileExists(SourcesURI
) && !FileExists(SourcesURIgzip
))
74 else if (!FileExists(SourcesURI
) && FileExists(SourcesURIgzip
))
75 SourcesURI
= SourcesURIgzip
;
77 return new debSrcRecordParser(SourcesURI
,this);
80 // SourcesIndex::Describe - Give a descriptive path to the index /*{{{*/
81 // ---------------------------------------------------------------------
83 string
debSourcesIndex::Describe(bool Short
) const
87 snprintf(S
,sizeof(S
),"%s",Info("Sources").c_str());
89 snprintf(S
,sizeof(S
),"%s (%s)",Info("Sources").c_str(),
90 IndexFile("Sources").c_str());
95 // SourcesIndex::Info - One liner describing the index URI /*{{{*/
96 // ---------------------------------------------------------------------
98 string
debSourcesIndex::Info(const char *Type
) const
100 string Info
= ::URI::NoUserPassword(URI
) + ' ';
101 if (Dist
[Dist
.size() - 1] == '/')
107 Info
+= Dist
+ '/' + Section
;
113 // SourcesIndex::Index* - Return the URI to the index files /*{{{*/
114 // ---------------------------------------------------------------------
116 inline string
debSourcesIndex::IndexFile(const char *Type
) const
118 string s
= URItoFileName(IndexURI(Type
));
119 string sgzip
= s
+ ".gz";
120 if (!FileExists(s
) && FileExists(sgzip
))
126 string
debSourcesIndex::IndexURI(const char *Type
) const
129 if (Dist
[Dist
.size() - 1] == '/')
137 Res
= URI
+ "dists/" + Dist
+ '/' + Section
+
144 // SourcesIndex::Exists - Check if the index is available /*{{{*/
145 // ---------------------------------------------------------------------
147 bool debSourcesIndex::Exists() const
149 return FileExists(IndexFile("Sources"));
152 // SourcesIndex::Size - Return the size of the index /*{{{*/
153 // ---------------------------------------------------------------------
155 unsigned long debSourcesIndex::Size() const
157 unsigned long size
= 0;
159 /* we need to ignore errors here; if the lists are absent, just return 0 */
160 _error
->PushToStack();
162 FileFd f
= FileFd (IndexFile("Sources"), FileFd::ReadOnlyGzip
);
166 if (_error
->PendingError() == true)
168 _error
->RevertToStack();
174 // PackagesIndex::debPackagesIndex - Contructor /*{{{*/
175 // ---------------------------------------------------------------------
177 debPackagesIndex::debPackagesIndex(string
const &URI
, string
const &Dist
, string
const &Section
,
178 bool const &Trusted
, string
const &Arch
) :
179 pkgIndexFile(Trusted
), URI(URI
), Dist(Dist
), Section(Section
), Architecture(Arch
)
181 if (Architecture
== "native")
182 Architecture
= _config
->Find("APT::Architecture");
185 // PackagesIndex::ArchiveInfo - Short version of the archive url /*{{{*/
186 // ---------------------------------------------------------------------
187 /* This is a shorter version that is designed to be < 60 chars or so */
188 string
debPackagesIndex::ArchiveInfo(pkgCache::VerIterator Ver
) const
190 string Res
= ::URI::NoUserPassword(URI
) + ' ';
191 if (Dist
[Dist
.size() - 1] == '/')
197 Res
+= Dist
+ '/' + Section
;
200 Res
+= Ver
.ParentPkg().Name();
202 if (Dist
[Dist
.size() - 1] != '/')
203 Res
.append(Ver
.Arch()).append(" ");
208 // PackagesIndex::Describe - Give a descriptive path to the index /*{{{*/
209 // ---------------------------------------------------------------------
210 /* This should help the user find the index in the sources.list and
211 in the filesystem for problem solving */
212 string
debPackagesIndex::Describe(bool Short
) const
216 snprintf(S
,sizeof(S
),"%s",Info("Packages").c_str());
218 snprintf(S
,sizeof(S
),"%s (%s)",Info("Packages").c_str(),
219 IndexFile("Packages").c_str());
223 // PackagesIndex::Info - One liner describing the index URI /*{{{*/
224 // ---------------------------------------------------------------------
226 string
debPackagesIndex::Info(const char *Type
) const
228 string Info
= ::URI::NoUserPassword(URI
) + ' ';
229 if (Dist
[Dist
.size() - 1] == '/')
235 Info
+= Dist
+ '/' + Section
;
237 if (Dist
[Dist
.size() - 1] != '/')
238 Info
+= Architecture
+ " ";
243 // PackagesIndex::Index* - Return the URI to the index files /*{{{*/
244 // ---------------------------------------------------------------------
246 inline string
debPackagesIndex::IndexFile(const char *Type
) const
248 string s
=_config
->FindDir("Dir::State::lists") + URItoFileName(IndexURI(Type
));
249 string sgzip
= s
+ ".gz";
250 if (!FileExists(s
) && FileExists(sgzip
))
255 string
debPackagesIndex::IndexURI(const char *Type
) const
258 if (Dist
[Dist
.size() - 1] == '/')
266 Res
= URI
+ "dists/" + Dist
+ '/' + Section
+
267 "/binary-" + Architecture
+ '/';
273 // PackagesIndex::Exists - Check if the index is available /*{{{*/
274 // ---------------------------------------------------------------------
276 bool debPackagesIndex::Exists() const
278 return FileExists(IndexFile("Packages"));
281 // PackagesIndex::Size - Return the size of the index /*{{{*/
282 // ---------------------------------------------------------------------
283 /* This is really only used for progress reporting. */
284 unsigned long debPackagesIndex::Size() const
286 unsigned long size
= 0;
288 /* we need to ignore errors here; if the lists are absent, just return 0 */
289 _error
->PushToStack();
291 FileFd f
= FileFd (IndexFile("Packages"), FileFd::ReadOnlyGzip
);
295 if (_error
->PendingError() == true)
297 _error
->RevertToStack();
302 // PackagesIndex::Merge - Load the index file into a cache /*{{{*/
303 // ---------------------------------------------------------------------
305 bool debPackagesIndex::Merge(pkgCacheGenerator
&Gen
,OpProgress
*Prog
) const
307 string PackageFile
= IndexFile("Packages");
308 FileFd
Pkg(PackageFile
,FileFd::ReadOnlyGzip
);
309 debListParser
Parser(&Pkg
, Architecture
);
311 if (_error
->PendingError() == true)
312 return _error
->Error("Problem opening %s",PackageFile
.c_str());
314 Prog
->SubProgress(0,Info("Packages"));
316 if (Gen
.SelectFile(PackageFile
,Tmp
.Host
,*this) == false)
317 return _error
->Error("Problem with SelectFile %s",PackageFile
.c_str());
319 // Store the IMS information
320 pkgCache::PkgFileIterator File
= Gen
.GetCurFile();
321 pkgCacheGenerator::Dynamic
<pkgCache::PkgFileIterator
> DynFile(File
);
323 if (fstat(Pkg
.Fd(),&St
) != 0)
324 return _error
->Errno("fstat","Failed to stat");
325 File
->Size
= St
.st_size
;
326 File
->mtime
= St
.st_mtime
;
328 if (Gen
.MergeList(Parser
) == false)
329 return _error
->Error("Problem with MergeList %s",PackageFile
.c_str());
331 // Check the release file
332 string ReleaseFile
= debReleaseIndex(URI
,Dist
).MetaIndexFile("InRelease");
333 bool releaseExists
= false;
334 if (FileExists(ReleaseFile
) == true)
335 releaseExists
= true;
337 ReleaseFile
= debReleaseIndex(URI
,Dist
).MetaIndexFile("Release");
339 if (releaseExists
== true || FileExists(ReleaseFile
) == true)
341 FileFd
Rel(ReleaseFile
,FileFd::ReadOnly
);
342 if (_error
->PendingError() == true)
344 Parser
.LoadReleaseInfo(File
,Rel
,Section
);
350 // PackagesIndex::FindInCache - Find this index /*{{{*/
351 // ---------------------------------------------------------------------
353 pkgCache::PkgFileIterator
debPackagesIndex::FindInCache(pkgCache
&Cache
) const
355 string FileName
= IndexFile("Packages");
356 pkgCache::PkgFileIterator File
= Cache
.FileBegin();
357 for (; File
.end() == false; ++File
)
359 if (File
.FileName() == NULL
|| FileName
!= File
.FileName())
363 if (stat(File
.FileName(),&St
) != 0)
365 if (_config
->FindB("Debug::pkgCacheGen", false))
366 std::clog
<< "PackagesIndex::FindInCache - stat failed on " << File
.FileName() << std::endl
;
367 return pkgCache::PkgFileIterator(Cache
);
369 if ((unsigned)St
.st_size
!= File
->Size
|| St
.st_mtime
!= File
->mtime
)
371 if (_config
->FindB("Debug::pkgCacheGen", false))
372 std::clog
<< "PackagesIndex::FindInCache - size (" << St
.st_size
<< " <> " << File
->Size
373 << ") or mtime (" << St
.st_mtime
<< " <> " << File
->mtime
374 << ") doesn't match for " << File
.FileName() << std::endl
;
375 return pkgCache::PkgFileIterator(Cache
);
384 // TranslationsIndex::debTranslationsIndex - Contructor /*{{{*/
385 // ---------------------------------------------------------------------
387 debTranslationsIndex::debTranslationsIndex(string URI
,string Dist
,string Section
,
388 char const * const Translation
) :
389 pkgIndexFile(true), URI(URI
), Dist(Dist
), Section(Section
),
390 Language(Translation
)
393 // TranslationIndex::Trans* - Return the URI to the translation files /*{{{*/
394 // ---------------------------------------------------------------------
396 inline string
debTranslationsIndex::IndexFile(const char *Type
) const
398 string s
=_config
->FindDir("Dir::State::lists") + URItoFileName(IndexURI(Type
));
399 string sgzip
= s
+ ".gz";
400 if (!FileExists(s
) && FileExists(sgzip
))
405 string
debTranslationsIndex::IndexURI(const char *Type
) const
408 if (Dist
[Dist
.size() - 1] == '/')
416 Res
= URI
+ "dists/" + Dist
+ '/' + Section
+
417 "/i18n/Translation-";
423 // TranslationsIndex::GetIndexes - Fetch the index files /*{{{*/
424 // ---------------------------------------------------------------------
426 bool debTranslationsIndex::GetIndexes(pkgAcquire
*Owner
) const
428 string
const TranslationFile
= string("Translation-").append(Language
);
429 new pkgAcqIndexTrans(Owner
, IndexURI(Language
),
430 Info(TranslationFile
.c_str()),
436 // TranslationsIndex::Describe - Give a descriptive path to the index /*{{{*/
437 // ---------------------------------------------------------------------
438 /* This should help the user find the index in the sources.list and
439 in the filesystem for problem solving */
440 string
debTranslationsIndex::Describe(bool Short
) const
444 snprintf(S
,sizeof(S
),"%s",Info(TranslationFile().c_str()).c_str());
446 snprintf(S
,sizeof(S
),"%s (%s)",Info(TranslationFile().c_str()).c_str(),
447 IndexFile(Language
).c_str());
451 // TranslationsIndex::Info - One liner describing the index URI /*{{{*/
452 // ---------------------------------------------------------------------
454 string
debTranslationsIndex::Info(const char *Type
) const
456 string Info
= ::URI::NoUserPassword(URI
) + ' ';
457 if (Dist
[Dist
.size() - 1] == '/')
463 Info
+= Dist
+ '/' + Section
;
469 bool debTranslationsIndex::HasPackages() const /*{{{*/
471 return FileExists(IndexFile(Language
));
474 // TranslationsIndex::Exists - Check if the index is available /*{{{*/
475 // ---------------------------------------------------------------------
477 bool debTranslationsIndex::Exists() const
479 return FileExists(IndexFile(Language
));
482 // TranslationsIndex::Size - Return the size of the index /*{{{*/
483 // ---------------------------------------------------------------------
484 /* This is really only used for progress reporting. */
485 unsigned long debTranslationsIndex::Size() const
487 unsigned long size
= 0;
489 /* we need to ignore errors here; if the lists are absent, just return 0 */
490 _error
->PushToStack();
492 FileFd f
= FileFd (IndexFile(Language
), FileFd::ReadOnlyGzip
);
496 if (_error
->PendingError() == true)
498 _error
->RevertToStack();
503 // TranslationsIndex::Merge - Load the index file into a cache /*{{{*/
504 // ---------------------------------------------------------------------
506 bool debTranslationsIndex::Merge(pkgCacheGenerator
&Gen
,OpProgress
*Prog
) const
508 // Check the translation file, if in use
509 string TranslationFile
= IndexFile(Language
);
510 if (FileExists(TranslationFile
))
512 FileFd
Trans(TranslationFile
,FileFd::ReadOnlyGzip
);
513 debListParser
TransParser(&Trans
);
514 if (_error
->PendingError() == true)
518 Prog
->SubProgress(0, Info(TranslationFile
.c_str()));
519 if (Gen
.SelectFile(TranslationFile
,string(),*this) == false)
520 return _error
->Error("Problem with SelectFile %s",TranslationFile
.c_str());
522 // Store the IMS information
523 pkgCache::PkgFileIterator TransFile
= Gen
.GetCurFile();
525 if (fstat(Trans
.Fd(),&TransSt
) != 0)
526 return _error
->Errno("fstat","Failed to stat");
527 TransFile
->Size
= TransSt
.st_size
;
528 TransFile
->mtime
= TransSt
.st_mtime
;
530 if (Gen
.MergeList(TransParser
) == false)
531 return _error
->Error("Problem with MergeList %s",TranslationFile
.c_str());
537 // TranslationsIndex::FindInCache - Find this index /*{{{*/
538 // ---------------------------------------------------------------------
540 pkgCache::PkgFileIterator
debTranslationsIndex::FindInCache(pkgCache
&Cache
) const
542 string FileName
= IndexFile(Language
);
544 pkgCache::PkgFileIterator File
= Cache
.FileBegin();
545 for (; File
.end() == false; ++File
)
547 if (FileName
!= File
.FileName())
551 if (stat(File
.FileName(),&St
) != 0)
553 if (_config
->FindB("Debug::pkgCacheGen", false))
554 std::clog
<< "TranslationIndex::FindInCache - stat failed on " << File
.FileName() << std::endl
;
555 return pkgCache::PkgFileIterator(Cache
);
557 if ((unsigned)St
.st_size
!= File
->Size
|| St
.st_mtime
!= File
->mtime
)
559 if (_config
->FindB("Debug::pkgCacheGen", false))
560 std::clog
<< "TranslationIndex::FindInCache - size (" << St
.st_size
<< " <> " << File
->Size
561 << ") or mtime (" << St
.st_mtime
<< " <> " << File
->mtime
562 << ") doesn't match for " << File
.FileName() << std::endl
;
563 return pkgCache::PkgFileIterator(Cache
);
570 // StatusIndex::debStatusIndex - Constructor /*{{{*/
571 // ---------------------------------------------------------------------
573 debStatusIndex::debStatusIndex(string File
) : pkgIndexFile(true), File(File
)
577 // StatusIndex::Size - Return the size of the index /*{{{*/
578 // ---------------------------------------------------------------------
580 unsigned long debStatusIndex::Size() const
583 if (stat(File
.c_str(),&S
) != 0)
588 // StatusIndex::Merge - Load the index file into a cache /*{{{*/
589 // ---------------------------------------------------------------------
591 bool debStatusIndex::Merge(pkgCacheGenerator
&Gen
,OpProgress
*Prog
) const
593 FileFd
Pkg(File
,FileFd::ReadOnlyGzip
);
594 if (_error
->PendingError() == true)
596 debListParser
Parser(&Pkg
);
597 if (_error
->PendingError() == true)
601 Prog
->SubProgress(0,File
);
602 if (Gen
.SelectFile(File
,string(),*this,pkgCache::Flag::NotSource
) == false)
603 return _error
->Error("Problem with SelectFile %s",File
.c_str());
605 // Store the IMS information
606 pkgCache::PkgFileIterator CFile
= Gen
.GetCurFile();
608 if (fstat(Pkg
.Fd(),&St
) != 0)
609 return _error
->Errno("fstat","Failed to stat");
610 CFile
->Size
= St
.st_size
;
611 CFile
->mtime
= St
.st_mtime
;
612 CFile
->Archive
= Gen
.WriteUniqString("now");
614 if (Gen
.MergeList(Parser
) == false)
615 return _error
->Error("Problem with MergeList %s",File
.c_str());
619 // StatusIndex::FindInCache - Find this index /*{{{*/
620 // ---------------------------------------------------------------------
622 pkgCache::PkgFileIterator
debStatusIndex::FindInCache(pkgCache
&Cache
) const
624 pkgCache::PkgFileIterator File
= Cache
.FileBegin();
625 for (; File
.end() == false; ++File
)
627 if (this->File
!= File
.FileName())
631 if (stat(File
.FileName(),&St
) != 0)
633 if (_config
->FindB("Debug::pkgCacheGen", false))
634 std::clog
<< "StatusIndex::FindInCache - stat failed on " << File
.FileName() << std::endl
;
635 return pkgCache::PkgFileIterator(Cache
);
637 if ((unsigned)St
.st_size
!= File
->Size
|| St
.st_mtime
!= File
->mtime
)
639 if (_config
->FindB("Debug::pkgCacheGen", false))
640 std::clog
<< "StatusIndex::FindInCache - size (" << St
.st_size
<< " <> " << File
->Size
641 << ") or mtime (" << St
.st_mtime
<< " <> " << File
->mtime
642 << ") doesn't match for " << File
.FileName() << std::endl
;
643 return pkgCache::PkgFileIterator(Cache
);
650 // StatusIndex::Exists - Check if the index is available /*{{{*/
651 // ---------------------------------------------------------------------
653 bool debStatusIndex::Exists() const
655 // Abort if the file does not exist.
660 // Index File types for Debian /*{{{*/
661 class debIFTypeSrc
: public pkgIndexFile::Type
665 debIFTypeSrc() {Label
= "Debian Source Index";};
667 class debIFTypePkg
: public pkgIndexFile::Type
671 virtual pkgRecords::Parser
*CreatePkgParser(pkgCache::PkgFileIterator File
) const
673 return new debRecordParser(File
.FileName(),*File
.Cache());
675 debIFTypePkg() {Label
= "Debian Package Index";};
677 class debIFTypeTrans
: public debIFTypePkg
680 debIFTypeTrans() {Label
= "Debian Translation Index";};
682 class debIFTypeStatus
: public pkgIndexFile::Type
686 virtual pkgRecords::Parser
*CreatePkgParser(pkgCache::PkgFileIterator File
) const
688 return new debRecordParser(File
.FileName(),*File
.Cache());
690 debIFTypeStatus() {Label
= "Debian dpkg status file";};
692 static debIFTypeSrc _apt_Src
;
693 static debIFTypePkg _apt_Pkg
;
694 static debIFTypeTrans _apt_Trans
;
695 static debIFTypeStatus _apt_Status
;
697 const pkgIndexFile::Type
*debSourcesIndex::GetType() const
701 const pkgIndexFile::Type
*debPackagesIndex::GetType() const
705 const pkgIndexFile::Type
*debTranslationsIndex::GetType() const
709 const pkgIndexFile::Type
*debStatusIndex::GetType() const