]>
git.saurik.com Git - apt.git/blob - apt-pkg/edsp.cc
d93b054118eee94d59da3c7ec5d8d94e6a647182
1 // -*- mode: cpp; mode: fold -*-
3 /* ######################################################################
4 Set of methods to help writing and reading everything needed for EDSP
5 ##################################################################### */
7 // Include Files /*{{{*/
8 #include <apt-pkg/edsp.h>
9 #include <apt-pkg/error.h>
10 #include <apt-pkg/configuration.h>
11 #include <apt-pkg/version.h>
12 #include <apt-pkg/policy.h>
20 // EDSP::WriteScenario - to the given file descriptor /*{{{*/
21 bool EDSP::WriteScenario(pkgDepCache
&Cache
, FILE* output
)
23 // we could use pkgCache::DepType and ::Priority, but these would be lokalized stringsā¦
24 const char * const PrioMap
[] = {0, "important", "required", "standard",
26 const char * const DepMap
[] = {"", "Depends", "PreDepends", "Suggests",
27 "Recommends" , "Conflicts", "Replaces",
28 "Obsoletes", "Breaks", "Enhances"};
30 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; ++Pkg
)
32 for (pkgCache::VerIterator Ver
= Pkg
.VersionList(); Ver
.end() == false; ++Ver
)
34 fprintf(output
, "Package: %s\n", Pkg
.Name());
35 fprintf(output
, "Architecture: %s\n", Ver
.Arch());
36 fprintf(output
, "Version: %s\n", Ver
.VerStr());
37 if (Pkg
.CurrentVer() == Ver
)
38 fprintf(output
, "Installed: yes\n");
39 if (Pkg
->SelectedState
== pkgCache::State::Hold
)
40 fprintf(output
, "Hold: yes\n");
41 fprintf(output
, "APT-ID: %u\n", Ver
->ID
);
42 fprintf(output
, "Priority: %s\n", PrioMap
[Ver
->Priority
]);
43 if ((Pkg
->Flags
& pkgCache::Flag::Essential
) == pkgCache::Flag::Essential
)
44 fprintf(output
, "Essential: yes\n");
45 fprintf(output
, "Section: %s\n", Ver
.Section());
46 if (Ver
->MultiArch
== pkgCache::Version::Allowed
|| Ver
->MultiArch
== pkgCache::Version::AllAllowed
)
47 fprintf(output
, "Multi-Arch: allowed\n");
48 else if (Ver
->MultiArch
== pkgCache::Version::Foreign
|| Ver
->MultiArch
== pkgCache::Version::AllForeign
)
49 fprintf(output
, "Multi-Arch: foreign\n");
50 else if (Ver
->MultiArch
== pkgCache::Version::Same
)
51 fprintf(output
, "Multi-Arch: same\n");
52 signed short Pin
= std::numeric_limits
<signed short>::min();
53 for (pkgCache::VerFileIterator File
= Ver
.FileList(); File
.end() == false; ++File
) {
54 signed short const p
= Cache
.GetPolicy().GetPriority(File
.File());
58 fprintf(output
, "APT-Pin: %d\n", Pin
);
59 if (Cache
.GetCandidateVer(Pkg
) == Ver
)
60 fprintf(output
, "APT-Candidate: yes\n");
61 if ((Cache
[Pkg
].Flags
& pkgCache::Flag::Auto
) == pkgCache::Flag::Auto
)
62 fprintf(output
, "APT-Automatic: yes\n");
63 std::string dependencies
[pkgCache::Dep::Enhances
+ 1];
65 for (pkgCache::DepIterator Dep
= Ver
.DependsList(); Dep
.end() == false; ++Dep
)
67 // Ignore implicit dependencies for multiarch here
68 if (strcmp(Pkg
.Arch(), Dep
.TargetPkg().Arch()) != 0)
71 dependencies
[Dep
->Type
].append(", ");
72 dependencies
[Dep
->Type
].append(Dep
.TargetPkg().Name());
73 if (Dep
->Version
!= 0)
74 dependencies
[Dep
->Type
].append(" (").append(pkgCache::CompTypeDeb(Dep
->CompareOp
)).append(" ").append(Dep
.TargetVer()).append(")");
75 if ((Dep
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
)
77 dependencies
[Dep
->Type
].append(" | ");
83 for (int i
= 1; i
< pkgCache::Dep::Enhances
+ 1; ++i
)
84 if (dependencies
[i
].empty() == false)
85 fprintf(output
, "%s: %s\n", DepMap
[i
], dependencies
[i
].c_str()+2);
87 for (pkgCache::PrvIterator Prv
= Ver
.ProvidesList(); Prv
.end() == false; ++Prv
)
89 // Ignore implicit provides for multiarch here
90 if (strcmp(Pkg
.Arch(), Prv
.ParentPkg().Arch()) != 0 || strcmp(Pkg
.Name(),Prv
.Name()) == 0)
92 provides
.append(", ").append(Prv
.Name());
94 if (provides
.empty() == false)
95 fprintf(output
, "Provides: %s\n", provides
.c_str()+2);
98 fprintf(output
, "\n");
104 // EDSP::WriteRequest - to the given file descriptor /*{{{*/
105 bool EDSP::WriteRequest(pkgDepCache
&Cache
, FILE* output
, bool const Upgrade
,
106 bool const DistUpgrade
, bool const AutoRemove
)
109 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; ++Pkg
)
112 if (Cache
[Pkg
].Delete() == true)
114 else if (Cache
[Pkg
].NewInstall() == true || Cache
[Pkg
].Upgrade() == true)
118 req
->append(" ").append(Pkg
.FullName());
120 fprintf(output
, "Request: EDSP 0.2\n");
121 if (del
.empty() == false)
122 fprintf(output
, "Remove: %s\n", del
.c_str()+1);
123 if (inst
.empty() == false)
124 fprintf(output
, "Install: %s\n", inst
.c_str()+1);
126 fprintf(output
, "Upgrade: yes\n");
127 if (DistUpgrade
== true)
128 fprintf(output
, "Dist-Upgrade: yes\n");
129 if (AutoRemove
== true)
130 fprintf(output
, "Autoremove: yes\n");
131 if (_config
->FindB("APT::Solver::Strict-Pinning", true) == false)
132 fprintf(output
, "Strict-Pinning: no\n");
133 string
solverpref("APT::Solver::");
134 solverpref
.append(_config
->Find("APT::Solver::Name", "internal")).append("::Preferences");
135 if (_config
->Exists(solverpref
) == true)
136 fprintf(output
, "Preferences: %s\n", _config
->Find(solverpref
,"").c_str());
137 fprintf(output
, "\n");
142 bool EDSP::ReadResponse(FILE* input
, pkgDepCache
&Cache
) { return false; }
144 // EDSP::ReadLine - first line from the given file descriptor /*{{{*/
145 // ---------------------------------------------------------------------
146 /* Little helper method to read a complete line into a string. Similar to
147 fgets but we need to use the low-level read() here as otherwise the
148 listparser will be confused later on as mixing of fgets and read isn't
149 a supported action according to the manpages and result are undefined */
150 bool EDSP::ReadLine(int const input
, std::string
&line
) {
155 while ((data
= read(input
, &one
, sizeof(one
))) != -1) {
162 if (line
.empty() == true && isblank(one
) != 0)
169 // EDSP::StringToBool - convert yes/no to bool /*{{{*/
170 // ---------------------------------------------------------------------
171 /* we are not as lazy as we are in the global StringToBool as we really
172 only accept yes/no here - but we will ignore leading spaces */
173 bool EDSP::StringToBool(char const *answer
, bool const defValue
) {
174 for (; isspace(*answer
) != 0; ++answer
);
175 if (strncasecmp(answer
, "yes", 3) == 0)
177 else if (strncasecmp(answer
, "no", 2) == 0)
180 _error
->Warning("Value '%s' is not a boolean 'yes' or 'no'!", answer
);
184 // EDSP::ReadRequest - first stanza from the given file descriptor /*{{{*/
185 bool EDSP::ReadRequest(int const input
, std::list
<std::string
> &install
,
186 std::list
<std::string
> &remove
, bool &upgrade
,
187 bool &distUpgrade
, bool &autoRemove
)
195 while (ReadLine(input
, line
) == true)
197 // Skip empty lines before request
198 if (line
.empty() == true)
200 // The first Tag must be a request, so search for it
201 if (line
.compare(0, 8, "Request:") != 0)
204 while (ReadLine(input
, line
) == true)
206 // empty lines are the end of the request
207 if (line
.empty() == true)
210 std::list
<std::string
> *request
= NULL
;
211 if (line
.compare(0, 8, "Install:") == 0)
216 else if (line
.compare(0, 7, "Remove:") == 0)
221 else if (line
.compare(0, 8, "Upgrade:") == 0)
222 upgrade
= EDSP::StringToBool(line
.c_str() + 9, false);
223 else if (line
.compare(0, 13, "Dist-Upgrade:") == 0)
224 distUpgrade
= EDSP::StringToBool(line
.c_str() + 14, false);
225 else if (line
.compare(0, 11, "Autoremove:") == 0)
226 autoRemove
= EDSP::StringToBool(line
.c_str() + 12, false);
228 _error
->Warning("Unknown line in EDSP Request stanza: %s", line
.c_str());
232 size_t end
= line
.length();
234 size_t begin
= line
.rfind(' ');
235 if (begin
== std::string::npos
)
237 request
->push_back(line
.substr(0, end
));
240 else if (begin
< end
)
241 request
->push_back(line
.substr(begin
+ 1, end
));
243 end
= line
.find_last_not_of(' ');
244 } while (end
!= std::string::npos
);
250 // EDSP::ApplyRequest - first stanza from the given file descriptor /*{{{*/
251 bool EDSP::ApplyRequest(std::list
<std::string
> const &install
,
252 std::list
<std::string
> const &remove
,
255 for (std::list
<std::string
>::const_iterator i
= install
.begin();
256 i
!= install
.end(); ++i
)
257 Cache
.MarkInstall(Cache
.FindPkg(*i
), false);
259 for (std::list
<std::string
>::const_iterator i
= remove
.begin();
260 i
!= remove
.end(); ++i
)
261 Cache
.MarkDelete(Cache
.FindPkg(*i
));
265 // EDSP::WriteSolution - to the given file descriptor /*{{{*/
266 bool EDSP::WriteSolution(pkgDepCache
&Cache
, FILE* output
)
268 bool const Debug
= _config
->FindB("Debug::EDSP::WriteSolution", false);
269 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; ++Pkg
)
271 if (Cache
[Pkg
].Delete() == true)
272 fprintf(output
, "Remove: %d\n", Cache
.GetCandidateVer(Pkg
)->ID
);
273 else if (Cache
[Pkg
].NewInstall() == true || Cache
[Pkg
].Upgrade() == true)
274 fprintf(output
, "Install: %d\n", Cache
.GetCandidateVer(Pkg
)->ID
);
278 fprintf(output
, "Package: %s\nVersion: %s\n", Pkg
.FullName().c_str(), Cache
.GetCandidateVer(Pkg
).VerStr());
279 fprintf(output
, "\n");
285 bool EDSP::WriteError(std::string
const &message
, FILE* output
) { return false; }