1 // -*- mode: cpp; mode: fold -*-
3 /* ######################################################################
4 The scenario file is designed to work as an intermediate file between
5 APT and the resolver. Its on propose very similar to a dpkg status file
6 ##################################################################### */
8 // Include Files /*{{{*/
11 #include <apt-pkg/edspindexfile.h>
12 #include <apt-pkg/edsplistparser.h>
13 #include <apt-pkg/error.h>
14 #include <apt-pkg/fileutl.h>
15 #include <apt-pkg/progress.h>
16 #include <apt-pkg/debindexfile.h>
17 #include <apt-pkg/indexfile.h>
18 #include <apt-pkg/mmap.h>
19 #include <apt-pkg/pkgcache.h>
20 #include <apt-pkg/cacheiterators.h>
21 #include <apt-pkg/pkgcachegen.h>
22 #include <apt-pkg/pkgrecords.h>
29 // edspIndex::edspIndex - Constructor /*{{{*/
30 // ---------------------------------------------------------------------
32 edspIndex::edspIndex(std::string File
) : debStatusIndex(File
)
36 // StatusIndex::Merge - Load the index file into a cache /*{{{*/
37 bool edspIndex::Merge(pkgCacheGenerator
&Gen
,OpProgress
*Prog
) const
41 Pkg
.Open(File
, FileFd::ReadOnly
);
43 Pkg
.OpenDescriptor(STDIN_FILENO
, FileFd::ReadOnly
);
44 if (_error
->PendingError() == true)
46 edspListParser
Parser(&Pkg
);
47 if (_error
->PendingError() == true)
51 Prog
->SubProgress(0,File
);
52 if (Gen
.SelectFile(File
,std::string(),*this) == false)
53 return _error
->Error("Problem with SelectFile %s",File
.c_str());
55 // Store the IMS information
56 pkgCache::PkgFileIterator CFile
= Gen
.GetCurFile();
57 CFile
->Size
= Pkg
.FileSize();
58 CFile
->mtime
= Pkg
.ModificationTime();
59 map_stringitem_t
const storage
= Gen
.StoreString(pkgCacheGenerator::MIXED
, "edsp::scenario");
60 CFile
->Archive
= storage
;
62 if (Gen
.MergeList(Parser
) == false)
63 return _error
->Error("Problem with MergeList %s",File
.c_str());
67 // Index File types for APT /*{{{*/
68 class APT_HIDDEN edspIFType
: public pkgIndexFile::Type
71 virtual pkgRecords::Parser
*CreatePkgParser(pkgCache::PkgFileIterator
) const
73 // we don't have a record parser for this type as the file is not presistent
76 edspIFType() {Label
= "EDSP scenario file";};
78 APT_HIDDEN edspIFType _apt_Universe
;
80 const pkgIndexFile::Type
*edspIndex::GetType() const
82 return &_apt_Universe
;