* apt-pkg/contrib/fileutl.{h,cc}:
[ntk/apt.git] / apt-pkg / edsp / edspindexfile.cc
CommitLineData
6d38011b
DK
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3/* ######################################################################
e0a78caa 4 The scenario file is designed to work as an intermediate file between
6d38011b
DK
5 APT and the resolver. Its on propose very similar to a dpkg status file
6 ##################################################################### */
7 /*}}}*/
8// Include Files /*{{{*/
ea542140
DK
9#include <config.h>
10
6d38011b
DK
11#include <apt-pkg/edspindexfile.h>
12#include <apt-pkg/edsplistparser.h>
13#include <apt-pkg/sourcelist.h>
14#include <apt-pkg/configuration.h>
15#include <apt-pkg/progress.h>
16#include <apt-pkg/error.h>
17#include <apt-pkg/strutl.h>
472ff00e 18#include <apt-pkg/fileutl.h>
6d38011b
DK
19#include <apt-pkg/acquire-item.h>
20
21#include <sys/stat.h>
22 /*}}}*/
23
24// edspIndex::edspIndex - Constructor /*{{{*/
25// ---------------------------------------------------------------------
26/* */
27edspIndex::edspIndex(string File) : debStatusIndex(File)
28{
29}
30 /*}}}*/
31// StatusIndex::Merge - Load the index file into a cache /*{{{*/
32bool edspIndex::Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const
33{
41ceaf02
DK
34 FileFd Pkg;
35 if (File != "stdin")
36 Pkg.Open(File, FileFd::ReadOnly);
37 else
38 Pkg.OpenDescriptor(STDIN_FILENO, FileFd::ReadOnly);
6d38011b
DK
39 if (_error->PendingError() == true)
40 return false;
41 edspListParser Parser(&Pkg);
42 if (_error->PendingError() == true)
43 return false;
44
45 if (Prog != NULL)
46 Prog->SubProgress(0,File);
47 if (Gen.SelectFile(File,string(),*this) == false)
48 return _error->Error("Problem with SelectFile %s",File.c_str());
49
50 // Store the IMS information
51 pkgCache::PkgFileIterator CFile = Gen.GetCurFile();
76a763e1
DK
52 CFile->Size = Pkg.FileSize();
53 CFile->mtime = Pkg.ModificationTime();
e0a78caa 54 CFile->Archive = Gen.WriteUniqString("edsp::scenario");
6d38011b
DK
55
56 if (Gen.MergeList(Parser) == false)
57 return _error->Error("Problem with MergeList %s",File.c_str());
58 return true;
59}
60 /*}}}*/
61// Index File types for APT /*{{{*/
62class edspIFType: public pkgIndexFile::Type
63{
64 public:
65 virtual pkgRecords::Parser *CreatePkgParser(pkgCache::PkgFileIterator File) const
66 {
67 // we don't have a record parser for this type as the file is not presistent
68 return NULL;
69 };
e0a78caa 70 edspIFType() {Label = "EDSP scenario file";};
6d38011b
DK
71};
72static edspIFType _apt_Universe;
73
74const pkgIndexFile::Type *edspIndex::GetType() const
75{
76 return &_apt_Universe;
77}
78 /*}}}*/