blob: 2d030daaf8eb8ace2100b45fdda577f323ef26a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
/* ######################################################################
The scenario file is designed to work as an intermediate file between
APT and the resolver. Its on propose very similar to a dpkg status file
##################################################################### */
/*}}}*/
// Include Files /*{{{*/
#include <config.h>
#include <apt-pkg/edspindexfile.h>
#include <apt-pkg/edsplistparser.h>
#include <apt-pkg/error.h>
#include <apt-pkg/fileutl.h>
#include <apt-pkg/indexfile.h>
#include <apt-pkg/pkgcache.h>
#include <apt-pkg/pkgrecords.h>
#include <stddef.h>
#include <unistd.h>
#include <memory>
#include <string>
/*}}}*/
// EDSP-like Index /*{{{*/
edspLikeIndex::edspLikeIndex(std::string const &File) : pkgDebianIndexRealFile(File, true)
{
}
std::string edspLikeIndex::GetArchitecture() const
{
return std::string();
}
bool edspLikeIndex::HasPackages() const
{
return true;
}
bool edspLikeIndex::Exists() const
{
return true;
}
uint8_t edspLikeIndex::GetIndexFlags() const
{
return 0;
}
bool edspLikeIndex::OpenListFile(FileFd &Pkg, std::string const &FileName)
{
if (FileName.empty() == false && FileName != "/nonexistent/stdin")
return pkgDebianIndexRealFile::OpenListFile(Pkg, FileName);
if (Pkg.OpenDescriptor(STDIN_FILENO, FileFd::ReadOnly) == false)
return _error->Error("Problem opening %s",FileName.c_str());
return true;
}
/*}}}*/
// EDSP Index /*{{{*/
edspIndex::edspIndex(std::string const &File) : edspLikeIndex(File)
{
}
std::string edspIndex::GetComponent() const
{
return "edsp";
}
pkgCacheListParser * edspIndex::CreateListParser(FileFd &Pkg)
{
if (Pkg.IsOpen() == false)
return nullptr;
_error->PushToStack();
std::unique_ptr<pkgCacheListParser> Parser(new edspListParser(&Pkg));
bool const newError = _error->PendingError();
_error->MergeWithStack();
return newError ? nullptr : Parser.release();
}
/*}}}*/
// EIPP Index /*{{{*/
eippIndex::eippIndex(std::string const &File) : edspLikeIndex(File)
{
}
std::string eippIndex::GetComponent() const
{
return "eipp";
}
pkgCacheListParser * eippIndex::CreateListParser(FileFd &Pkg)
{
if (Pkg.IsOpen() == false)
return nullptr;
_error->PushToStack();
std::unique_ptr<pkgCacheListParser> Parser(new eippListParser(&Pkg));
bool const newError = _error->PendingError();
_error->MergeWithStack();
return newError ? nullptr : Parser.release();
}
/*}}}*/
// Index File types for APT /*{{{*/
class APT_HIDDEN edspIFType: public pkgIndexFile::Type
{
public:
virtual pkgRecords::Parser *CreatePkgParser(pkgCache::PkgFileIterator const &) const APT_OVERRIDE
{
// we don't have a record parser for this type as the file is not presistent
return NULL;
};
edspIFType() {Label = "EDSP scenario file";};
};
APT_HIDDEN edspIFType _apt_Edsp;
const pkgIndexFile::Type *edspIndex::GetType() const
{
return &_apt_Edsp;
}
class APT_HIDDEN eippIFType: public pkgIndexFile::Type
{
public:
virtual pkgRecords::Parser *CreatePkgParser(pkgCache::PkgFileIterator const &) const APT_OVERRIDE
{
// we don't have a record parser for this type as the file is not presistent
return NULL;
};
eippIFType() {Label = "EIPP scenario file";};
};
APT_HIDDEN eippIFType _apt_Eipp;
const pkgIndexFile::Type *eippIndex::GetType() const
{
return &_apt_Eipp;
}
/*}}}*/
edspLikeIndex::~edspLikeIndex() {}
edspIndex::~edspIndex() {}
eippIndex::~eippIndex() {}
|