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/configuration.h>
19 #include <apt-pkg/progress.h>
20 #include <apt-pkg/error.h>
21 #include <apt-pkg/strutl.h>
22 #include <apt-pkg/acquire-item.h>
23 #include <apt-pkg/debmetaindex.h>
24 #include <apt-pkg/gpgv.h>
25 #include <apt-pkg/fileutl.h>
26 #include <apt-pkg/indexfile.h>
27 #include <apt-pkg/mmap.h>
28 #include <apt-pkg/pkgcache.h>
29 #include <apt-pkg/cacheiterators.h>
30 #include <apt-pkg/pkgcachegen.h>
31 #include <apt-pkg/pkgrecords.h>
32 #include <apt-pkg/srcrecords.h>
33 #include <apt-pkg/sptr.h>
43 // SourcesIndex::debSourcesIndex - Constructor /*{{{*/
44 // ---------------------------------------------------------------------
46 debSourcesIndex::debSourcesIndex(string URI
,string Dist
,string Section
,bool Trusted
) :
47 pkgIndexFile(Trusted
), URI(URI
), Dist(Dist
), Section(Section
)
51 // SourcesIndex::SourceInfo - Short 1 liner describing a source /*{{{*/
52 // ---------------------------------------------------------------------
53 /* The result looks like:
54 http://foo/debian/ stable/main src 1.1.1 (dsc) */
55 string
debSourcesIndex::SourceInfo(pkgSrcRecords::Parser
const &Record
,
56 pkgSrcRecords::File
const &File
) const
59 Res
= ::URI::NoUserPassword(URI
) + ' ';
60 if (Dist
[Dist
.size() - 1] == '/')
66 Res
+= Dist
+ '/' + Section
;
69 Res
+= Record
.Package();
71 Res
+= Record
.Version();
72 if (File
.Type
.empty() == false)
73 Res
+= " (" + File
.Type
+ ")";
77 // SourcesIndex::CreateSrcParser - Get a parser for the source files /*{{{*/
78 // ---------------------------------------------------------------------
80 pkgSrcRecords::Parser
*debSourcesIndex::CreateSrcParser() const
82 string SourcesURI
= _config
->FindDir("Dir::State::lists") +
83 URItoFileName(IndexURI("Sources"));
85 std::vector
<std::string
> types
= APT::Configuration::getCompressionTypes();
86 for (std::vector
<std::string
>::const_iterator t
= types
.begin(); t
!= types
.end(); ++t
)
89 p
= SourcesURI
+ '.' + *t
;
91 return new debSrcRecordParser(p
, this);
93 if (FileExists(SourcesURI
))
94 return new debSrcRecordParser(SourcesURI
, this);
98 // SourcesIndex::Describe - Give a descriptive path to the index /*{{{*/
99 // ---------------------------------------------------------------------
101 string
debSourcesIndex::Describe(bool Short
) const
105 snprintf(S
,sizeof(S
),"%s",Info("Sources").c_str());
107 snprintf(S
,sizeof(S
),"%s (%s)",Info("Sources").c_str(),
108 IndexFile("Sources").c_str());
113 // SourcesIndex::Info - One liner describing the index URI /*{{{*/
114 // ---------------------------------------------------------------------
116 string
debSourcesIndex::Info(const char *Type
) const
118 string Info
= ::URI::NoUserPassword(URI
) + ' ';
119 if (Dist
[Dist
.size() - 1] == '/')
125 Info
+= Dist
+ '/' + Section
;
131 // SourcesIndex::Index* - Return the URI to the index files /*{{{*/
132 // ---------------------------------------------------------------------
134 string
debSourcesIndex::IndexFile(const char *Type
) const
136 string s
= URItoFileName(IndexURI(Type
));
138 std::vector
<std::string
> types
= APT::Configuration::getCompressionTypes();
139 for (std::vector
<std::string
>::const_iterator t
= types
.begin(); t
!= types
.end(); ++t
)
141 string p
= s
+ '.' + *t
;
148 string
debSourcesIndex::IndexURI(const char *Type
) const
151 if (Dist
[Dist
.size() - 1] == '/')
159 Res
= URI
+ "dists/" + Dist
+ '/' + Section
+
166 // SourcesIndex::Exists - Check if the index is available /*{{{*/
167 // ---------------------------------------------------------------------
169 bool debSourcesIndex::Exists() const
171 return FileExists(IndexFile("Sources"));
174 // SourcesIndex::Size - Return the size of the index /*{{{*/
175 // ---------------------------------------------------------------------
177 unsigned long debSourcesIndex::Size() const
179 unsigned long size
= 0;
181 /* we need to ignore errors here; if the lists are absent, just return 0 */
182 _error
->PushToStack();
184 FileFd
f(IndexFile("Sources"), FileFd::ReadOnly
, FileFd::Extension
);
188 if (_error
->PendingError() == true)
190 _error
->RevertToStack();
196 // PackagesIndex::debPackagesIndex - Contructor /*{{{*/
197 // ---------------------------------------------------------------------
199 debPackagesIndex::debPackagesIndex(string
const &URI
, string
const &Dist
, string
const &Section
,
200 bool const &Trusted
, string
const &Arch
) :
201 pkgIndexFile(Trusted
), URI(URI
), Dist(Dist
), Section(Section
), Architecture(Arch
)
203 if (Architecture
== "native")
204 Architecture
= _config
->Find("APT::Architecture");
207 // PackagesIndex::ArchiveInfo - Short version of the archive url /*{{{*/
208 // ---------------------------------------------------------------------
209 /* This is a shorter version that is designed to be < 60 chars or so */
210 string
debPackagesIndex::ArchiveInfo(pkgCache::VerIterator Ver
) const
212 string Res
= ::URI::NoUserPassword(URI
) + ' ';
213 if (Dist
[Dist
.size() - 1] == '/')
219 Res
+= Dist
+ '/' + Section
;
222 Res
+= Ver
.ParentPkg().Name();
224 if (Dist
[Dist
.size() - 1] != '/')
225 Res
.append(Ver
.Arch()).append(" ");
230 // PackagesIndex::Describe - Give a descriptive path to the index /*{{{*/
231 // ---------------------------------------------------------------------
232 /* This should help the user find the index in the sources.list and
233 in the filesystem for problem solving */
234 string
debPackagesIndex::Describe(bool Short
) const
238 snprintf(S
,sizeof(S
),"%s",Info("Packages").c_str());
240 snprintf(S
,sizeof(S
),"%s (%s)",Info("Packages").c_str(),
241 IndexFile("Packages").c_str());
245 // PackagesIndex::Info - One liner describing the index URI /*{{{*/
246 // ---------------------------------------------------------------------
248 string
debPackagesIndex::Info(const char *Type
) const
250 string Info
= ::URI::NoUserPassword(URI
) + ' ';
251 if (Dist
[Dist
.size() - 1] == '/')
257 Info
+= Dist
+ '/' + Section
;
259 if (Dist
[Dist
.size() - 1] != '/')
260 Info
+= Architecture
+ " ";
265 // PackagesIndex::Index* - Return the URI to the index files /*{{{*/
266 // ---------------------------------------------------------------------
268 string
debPackagesIndex::IndexFile(const char *Type
) const
270 string s
=_config
->FindDir("Dir::State::lists") + URItoFileName(IndexURI(Type
));
272 std::vector
<std::string
> types
= APT::Configuration::getCompressionTypes();
273 for (std::vector
<std::string
>::const_iterator t
= types
.begin(); t
!= types
.end(); ++t
)
275 string p
= s
+ '.' + *t
;
281 string
debPackagesIndex::IndexURI(const char *Type
) const
284 if (Dist
[Dist
.size() - 1] == '/')
292 Res
= URI
+ "dists/" + Dist
+ '/' + Section
+
293 "/binary-" + Architecture
+ '/';
299 // PackagesIndex::Exists - Check if the index is available /*{{{*/
300 // ---------------------------------------------------------------------
302 bool debPackagesIndex::Exists() const
304 return FileExists(IndexFile("Packages"));
307 // PackagesIndex::Size - Return the size of the index /*{{{*/
308 // ---------------------------------------------------------------------
309 /* This is really only used for progress reporting. */
310 unsigned long debPackagesIndex::Size() const
312 unsigned long size
= 0;
314 /* we need to ignore errors here; if the lists are absent, just return 0 */
315 _error
->PushToStack();
317 FileFd
f(IndexFile("Packages"), FileFd::ReadOnly
, FileFd::Extension
);
321 if (_error
->PendingError() == true)
323 _error
->RevertToStack();
328 // PackagesIndex::Merge - Load the index file into a cache /*{{{*/
329 // ---------------------------------------------------------------------
331 bool debPackagesIndex::Merge(pkgCacheGenerator
&Gen
,OpProgress
*Prog
) const
333 string PackageFile
= IndexFile("Packages");
334 FileFd
Pkg(PackageFile
,FileFd::ReadOnly
, FileFd::Extension
);
335 debListParser
Parser(&Pkg
, Architecture
);
337 if (_error
->PendingError() == true)
338 return _error
->Error("Problem opening %s",PackageFile
.c_str());
340 Prog
->SubProgress(0,Info("Packages"));
342 if (Gen
.SelectFile(PackageFile
,Tmp
.Host
,*this) == false)
343 return _error
->Error("Problem with SelectFile %s",PackageFile
.c_str());
345 // Store the IMS information
346 pkgCache::PkgFileIterator File
= Gen
.GetCurFile();
347 pkgCacheGenerator::Dynamic
<pkgCache::PkgFileIterator
> DynFile(File
);
348 File
->Size
= Pkg
.FileSize();
349 File
->mtime
= Pkg
.ModificationTime();
351 if (Gen
.MergeList(Parser
) == false)
352 return _error
->Error("Problem with MergeList %s",PackageFile
.c_str());
354 // Check the release file
355 string ReleaseFile
= debReleaseIndex(URI
,Dist
).MetaIndexFile("InRelease");
356 bool releaseExists
= false;
357 if (FileExists(ReleaseFile
) == true)
358 releaseExists
= true;
360 ReleaseFile
= debReleaseIndex(URI
,Dist
).MetaIndexFile("Release");
362 if (releaseExists
== true || FileExists(ReleaseFile
) == true)
365 // Beware: The 'Release' file might be clearsigned in case the
366 // signature for an 'InRelease' file couldn't be checked
367 if (OpenMaybeClearSignedFile(ReleaseFile
, Rel
) == false)
370 if (_error
->PendingError() == true)
372 Parser
.LoadReleaseInfo(File
,Rel
,Section
);
378 // PackagesIndex::FindInCache - Find this index /*{{{*/
379 // ---------------------------------------------------------------------
381 pkgCache::PkgFileIterator
debPackagesIndex::FindInCache(pkgCache
&Cache
) const
383 string FileName
= IndexFile("Packages");
384 pkgCache::PkgFileIterator File
= Cache
.FileBegin();
385 for (; File
.end() == false; ++File
)
387 if (File
.FileName() == NULL
|| FileName
!= File
.FileName())
391 if (stat(File
.FileName(),&St
) != 0)
393 if (_config
->FindB("Debug::pkgCacheGen", false))
394 std::clog
<< "PackagesIndex::FindInCache - stat failed on " << File
.FileName() << std::endl
;
395 return pkgCache::PkgFileIterator(Cache
);
397 if ((unsigned)St
.st_size
!= File
->Size
|| St
.st_mtime
!= File
->mtime
)
399 if (_config
->FindB("Debug::pkgCacheGen", false))
400 std::clog
<< "PackagesIndex::FindInCache - size (" << St
.st_size
<< " <> " << File
->Size
401 << ") or mtime (" << St
.st_mtime
<< " <> " << File
->mtime
402 << ") doesn't match for " << File
.FileName() << std::endl
;
403 return pkgCache::PkgFileIterator(Cache
);
412 // TranslationsIndex::debTranslationsIndex - Contructor /*{{{*/
413 // ---------------------------------------------------------------------
415 debTranslationsIndex::debTranslationsIndex(string URI
,string Dist
,string Section
,
416 char const * const Translation
) :
417 pkgIndexFile(true), URI(URI
), Dist(Dist
), Section(Section
),
418 Language(Translation
)
421 // TranslationIndex::Trans* - Return the URI to the translation files /*{{{*/
422 // ---------------------------------------------------------------------
424 string
debTranslationsIndex::IndexFile(const char *Type
) const
426 string s
=_config
->FindDir("Dir::State::lists") + URItoFileName(IndexURI(Type
));
428 std::vector
<std::string
> types
= APT::Configuration::getCompressionTypes();
429 for (std::vector
<std::string
>::const_iterator t
= types
.begin(); t
!= types
.end(); ++t
)
431 string p
= s
+ '.' + *t
;
437 string
debTranslationsIndex::IndexURI(const char *Type
) const
440 if (Dist
[Dist
.size() - 1] == '/')
448 Res
= URI
+ "dists/" + Dist
+ '/' + Section
+
449 "/i18n/Translation-";
455 // TranslationsIndex::GetIndexes - Fetch the index files /*{{{*/
456 // ---------------------------------------------------------------------
458 bool debTranslationsIndex::GetIndexes(pkgAcquire
*Owner
) const
460 string
const TranslationFile
= string("Translation-").append(Language
);
461 new pkgAcqIndexTrans(Owner
, IndexURI(Language
),
462 Info(TranslationFile
.c_str()),
468 // TranslationsIndex::Describe - Give a descriptive path to the index /*{{{*/
469 // ---------------------------------------------------------------------
470 /* This should help the user find the index in the sources.list and
471 in the filesystem for problem solving */
472 string
debTranslationsIndex::Describe(bool Short
) const
476 snprintf(S
,sizeof(S
),"%s",Info(TranslationFile().c_str()).c_str());
478 snprintf(S
,sizeof(S
),"%s (%s)",Info(TranslationFile().c_str()).c_str(),
479 IndexFile(Language
).c_str());
483 // TranslationsIndex::Info - One liner describing the index URI /*{{{*/
484 // ---------------------------------------------------------------------
486 string
debTranslationsIndex::Info(const char *Type
) const
488 string Info
= ::URI::NoUserPassword(URI
) + ' ';
489 if (Dist
[Dist
.size() - 1] == '/')
495 Info
+= Dist
+ '/' + Section
;
501 bool debTranslationsIndex::HasPackages() const /*{{{*/
503 return FileExists(IndexFile(Language
));
506 // TranslationsIndex::Exists - Check if the index is available /*{{{*/
507 // ---------------------------------------------------------------------
509 bool debTranslationsIndex::Exists() const
511 return FileExists(IndexFile(Language
));
514 // TranslationsIndex::Size - Return the size of the index /*{{{*/
515 // ---------------------------------------------------------------------
516 /* This is really only used for progress reporting. */
517 unsigned long debTranslationsIndex::Size() const
519 unsigned long size
= 0;
521 /* we need to ignore errors here; if the lists are absent, just return 0 */
522 _error
->PushToStack();
524 FileFd
f(IndexFile(Language
), FileFd::ReadOnly
, FileFd::Extension
);
528 if (_error
->PendingError() == true)
530 _error
->RevertToStack();
535 // TranslationsIndex::Merge - Load the index file into a cache /*{{{*/
536 // ---------------------------------------------------------------------
538 bool debTranslationsIndex::Merge(pkgCacheGenerator
&Gen
,OpProgress
*Prog
) const
540 // Check the translation file, if in use
541 string TranslationFile
= IndexFile(Language
);
542 if (FileExists(TranslationFile
))
544 FileFd
Trans(TranslationFile
,FileFd::ReadOnly
, FileFd::Extension
);
545 debTranslationsParser
TransParser(&Trans
);
546 if (_error
->PendingError() == true)
550 Prog
->SubProgress(0, Info(TranslationFile
.c_str()));
551 if (Gen
.SelectFile(TranslationFile
,string(),*this) == false)
552 return _error
->Error("Problem with SelectFile %s",TranslationFile
.c_str());
554 // Store the IMS information
555 pkgCache::PkgFileIterator TransFile
= Gen
.GetCurFile();
556 TransFile
->Size
= Trans
.FileSize();
557 TransFile
->mtime
= Trans
.ModificationTime();
559 if (Gen
.MergeList(TransParser
) == false)
560 return _error
->Error("Problem with MergeList %s",TranslationFile
.c_str());
566 // TranslationsIndex::FindInCache - Find this index /*{{{*/
567 // ---------------------------------------------------------------------
569 pkgCache::PkgFileIterator
debTranslationsIndex::FindInCache(pkgCache
&Cache
) const
571 string FileName
= IndexFile(Language
);
573 pkgCache::PkgFileIterator File
= Cache
.FileBegin();
574 for (; File
.end() == false; ++File
)
576 if (FileName
!= File
.FileName())
580 if (stat(File
.FileName(),&St
) != 0)
582 if (_config
->FindB("Debug::pkgCacheGen", false))
583 std::clog
<< "TranslationIndex::FindInCache - stat failed on " << File
.FileName() << std::endl
;
584 return pkgCache::PkgFileIterator(Cache
);
586 if ((unsigned)St
.st_size
!= File
->Size
|| St
.st_mtime
!= File
->mtime
)
588 if (_config
->FindB("Debug::pkgCacheGen", false))
589 std::clog
<< "TranslationIndex::FindInCache - size (" << St
.st_size
<< " <> " << File
->Size
590 << ") or mtime (" << St
.st_mtime
<< " <> " << File
->mtime
591 << ") doesn't match for " << File
.FileName() << std::endl
;
592 return pkgCache::PkgFileIterator(Cache
);
599 // StatusIndex::debStatusIndex - Constructor /*{{{*/
600 // ---------------------------------------------------------------------
602 debStatusIndex::debStatusIndex(string File
) : pkgIndexFile(true), File(File
)
606 // StatusIndex::Size - Return the size of the index /*{{{*/
607 // ---------------------------------------------------------------------
609 unsigned long debStatusIndex::Size() const
612 if (stat(File
.c_str(),&S
) != 0)
617 // StatusIndex::Merge - Load the index file into a cache /*{{{*/
618 // ---------------------------------------------------------------------
620 bool debStatusIndex::Merge(pkgCacheGenerator
&Gen
,OpProgress
*Prog
) const
622 FileFd
Pkg(File
,FileFd::ReadOnly
, FileFd::Extension
);
623 if (_error
->PendingError() == true)
625 debListParser
Parser(&Pkg
);
626 if (_error
->PendingError() == true)
630 Prog
->SubProgress(0,File
);
631 if (Gen
.SelectFile(File
,string(),*this,pkgCache::Flag::NotSource
) == false)
632 return _error
->Error("Problem with SelectFile %s",File
.c_str());
634 // Store the IMS information
635 pkgCache::PkgFileIterator CFile
= Gen
.GetCurFile();
636 CFile
->Size
= Pkg
.FileSize();
637 CFile
->mtime
= Pkg
.ModificationTime();
638 map_stringitem_t
const storage
= Gen
.StoreString(pkgCacheGenerator::MIXED
, "now");
639 CFile
->Archive
= storage
;
641 if (Gen
.MergeList(Parser
) == false)
642 return _error
->Error("Problem with MergeList %s",File
.c_str());
646 // StatusIndex::FindInCache - Find this index /*{{{*/
647 // ---------------------------------------------------------------------
649 pkgCache::PkgFileIterator
debStatusIndex::FindInCache(pkgCache
&Cache
) const
651 pkgCache::PkgFileIterator File
= Cache
.FileBegin();
652 for (; File
.end() == false; ++File
)
654 if (this->File
!= File
.FileName())
658 if (stat(File
.FileName(),&St
) != 0)
660 if (_config
->FindB("Debug::pkgCacheGen", false))
661 std::clog
<< "StatusIndex::FindInCache - stat failed on " << File
.FileName() << std::endl
;
662 return pkgCache::PkgFileIterator(Cache
);
664 if ((unsigned)St
.st_size
!= File
->Size
|| St
.st_mtime
!= File
->mtime
)
666 if (_config
->FindB("Debug::pkgCacheGen", false))
667 std::clog
<< "StatusIndex::FindInCache - size (" << St
.st_size
<< " <> " << File
->Size
668 << ") or mtime (" << St
.st_mtime
<< " <> " << File
->mtime
669 << ") doesn't match for " << File
.FileName() << std::endl
;
670 return pkgCache::PkgFileIterator(Cache
);
677 // StatusIndex::Exists - Check if the index is available /*{{{*/
678 // ---------------------------------------------------------------------
680 APT_CONST
bool debStatusIndex::Exists() const
682 // Abort if the file does not exist.
687 // debDebPkgFile - Single .deb file /*{{{*/
688 // ---------------------------------------------------------------------
689 debDebPkgFileIndex::debDebPkgFileIndex(std::string DebFile
)
690 : pkgIndexFile(true), DebFile(DebFile
)
692 DebFileFullPath
= flAbsPath(DebFile
);
695 std::string
debDebPkgFileIndex::ArchiveURI(std::string
/*File*/) const
697 return "file:" + DebFileFullPath
;
700 bool debDebPkgFileIndex::Exists() const
702 return FileExists(DebFile
);
704 bool debDebPkgFileIndex::Merge(pkgCacheGenerator
& Gen
, OpProgress
* Prog
) const
707 Prog
->SubProgress(0, "Reading deb file");
709 // get the control data out of the deb file vid dpkg -I
710 // ... can I haz libdpkg?
711 Configuration::Item
const *Opts
= _config
->Tree("DPkg::Options");
712 std::string dpkg
= _config
->Find("Dir::Bin::dpkg","dpkg");
713 std::vector
<const char *> Args
;
714 Args
.push_back(dpkg
.c_str());
718 for (; Opts
!= 0; Opts
= Opts
->Next
)
720 if (Opts
->Value
.empty() == true)
722 Args
.push_back(Opts
->Value
.c_str());
725 Args
.push_back("-I");
726 Args
.push_back(DebFile
.c_str());
727 Args
.push_back("control");
728 Args
.push_back(NULL
);
731 if(Popen((const char**)&Args
[0], PipeFd
, Child
, FileFd::ReadOnly
) == false)
732 return _error
->Error("Popen failed");
733 // FIXME: static buffer
735 unsigned long long n
= 0;
736 if(PipeFd
.Read(buf
, sizeof(buf
)-1, &n
) == false)
737 return _error
->Errno("read", "Failed to read dpkg pipe");
738 ExecWait(Child
, "Popen");
740 // now write the control data to a tempfile
741 SPtr
<FileFd
> DebControl
= GetTempFile("deb-file-" + flNotDir(DebFile
));
742 if(DebControl
== NULL
)
744 DebControl
->Write(buf
, n
);
745 // append size of the file
746 FileFd
Fd(DebFile
, FileFd::ReadOnly
);
748 strprintf(Size
, "Size: %llu\n", Fd
.Size());
749 DebControl
->Write(Size
.c_str(), Size
.size());
750 // and rewind for the listparser
753 // and give it to the list parser
754 debDebFileParser
Parser(DebControl
, DebFile
);
755 if(Gen
.SelectFile(DebFile
, "local", *this) == false)
756 return _error
->Error("Problem with SelectFile %s", DebFile
.c_str());
758 pkgCache::PkgFileIterator File
= Gen
.GetCurFile();
759 File
->Size
= DebControl
->Size();
760 File
->mtime
= DebControl
->ModificationTime();
762 if (Gen
.MergeList(Parser
) == false)
763 return _error
->Error("Problem with MergeLister for %s", DebFile
.c_str());
767 pkgCache::PkgFileIterator
debDebPkgFileIndex::FindInCache(pkgCache
&Cache
) const
769 pkgCache::PkgFileIterator File
= Cache
.FileBegin();
770 for (; File
.end() == false; ++File
)
772 if (File
.FileName() == NULL
|| DebFile
!= File
.FileName())
780 unsigned long debDebPkgFileIndex::Size() const
783 if(stat(DebFile
.c_str(), &buf
) != 0)
789 // debDscFileIndex stuff
790 debDscFileIndex::debDscFileIndex(std::string
&DscFile
)
791 : pkgIndexFile(true), DscFile(DscFile
)
795 bool debDscFileIndex::Exists() const
797 return FileExists(DscFile
);
800 unsigned long debDscFileIndex::Size() const
803 if(stat(DscFile
.c_str(), &buf
) == 0)
808 // DscFileIndex::CreateSrcParser - Get a parser for the .dsc file /*{{{*/
809 // ---------------------------------------------------------------------
811 pkgSrcRecords::Parser
*debDscFileIndex::CreateSrcParser() const
813 if (!FileExists(DscFile
))
816 return new debDscRecordParser(DscFile
,this);
823 // ---------------------------------------------------------------------
824 // Index File types for Debian /*{{{*/
825 class debIFTypeSrc
: public pkgIndexFile::Type
829 debIFTypeSrc() {Label
= "Debian Source Index";};
831 class debIFTypePkg
: public pkgIndexFile::Type
835 virtual pkgRecords::Parser
*CreatePkgParser(pkgCache::PkgFileIterator File
) const
837 return new debRecordParser(File
.FileName(),*File
.Cache());
839 debIFTypePkg() {Label
= "Debian Package Index";};
841 class debIFTypeTrans
: public debIFTypePkg
844 debIFTypeTrans() {Label
= "Debian Translation Index";};
846 class debIFTypeStatus
: public pkgIndexFile::Type
850 virtual pkgRecords::Parser
*CreatePkgParser(pkgCache::PkgFileIterator File
) const
852 return new debRecordParser(File
.FileName(),*File
.Cache());
854 debIFTypeStatus() {Label
= "Debian dpkg status file";};
856 class debIFTypeDebPkgFile
: public pkgIndexFile::Type
859 virtual pkgRecords::Parser
*CreatePkgParser(pkgCache::PkgFileIterator File
) const
861 return new debDebFileRecordParser(File
.FileName(),*File
.Cache());
863 debIFTypeDebPkgFile() {Label
= "deb Package file";};
865 class debIFTypeDscFile
: public pkgIndexFile::Type
868 virtual pkgSrcRecords::Parser
*CreateSrcPkgParser(std::string DscFile
) const
870 return new debDscRecordParser(DscFile
, NULL
);
872 debIFTypeDscFile() {Label
= "dsc File Source Index";};
874 class debIFTypeDebianSourceDir
: public pkgIndexFile::Type
877 virtual pkgSrcRecords::Parser
*CreateSrcPkgParser(std::string SourceDir
) const
879 return new debDscRecordParser(SourceDir
+ string("/debian/control"), NULL
);
881 debIFTypeDebianSourceDir() {Label
= "debian/control File Source Index";};
884 static debIFTypeSrc _apt_Src
;
885 static debIFTypePkg _apt_Pkg
;
886 static debIFTypeTrans _apt_Trans
;
887 static debIFTypeStatus _apt_Status
;
888 static debIFTypeDebPkgFile _apt_DebPkgFile
;
889 // file based pseudo indexes
890 static debIFTypeDscFile _apt_DscFile
;
891 static debIFTypeDebianSourceDir _apt_DebianSourceDir
;
893 const pkgIndexFile::Type
*debSourcesIndex::GetType() const
897 const pkgIndexFile::Type
*debPackagesIndex::GetType() const
901 const pkgIndexFile::Type
*debTranslationsIndex::GetType() const
905 const pkgIndexFile::Type
*debStatusIndex::GetType() const
909 const pkgIndexFile::Type
*debDebPkgFileIndex::GetType() const
911 return &_apt_DebPkgFile
;
913 const pkgIndexFile::Type
*debDscFileIndex::GetType() const
915 return &_apt_DscFile
;
917 const pkgIndexFile::Type
*debDebianSourceDirIndex::GetType() const
919 return &_apt_DebianSourceDir
;