]>
git.saurik.com Git - apt.git/blob - apt-pkg/edsp.cc
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()+2);
123 if (inst
.empty() == false)
124 fprintf(output
, "Install: %s\n", inst
.c_str()+2);
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
) == false)
136 fprintf(output
, "Preferences: %s\n", _config
->Find(solverpref
,"").c_str());
141 bool EDSP::ReadResponse(FILE* input
, pkgDepCache
&Cache
) { return false; }
143 bool EDSP::ReadRequest(FILE* input
, std::list
<std::string
> &install
,
144 std::list
<std::string
> &remove
)
146 bool EDSP::ApplyRequest(std::list
<std::string
> const &install
,
147 std::list
<std::string
> const &remove
,
150 // EDSP::WriteSolution - to the given file descriptor /*{{{*/
151 bool EDSP::WriteSolution(pkgDepCache
&Cache
, FILE* output
)
153 bool const Debug
= _config
->FindB("Debug::EDSPWriter::WriteSolution", false);
154 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; ++Pkg
)
156 if (Cache
[Pkg
].Delete() == true)
157 fprintf(output
, "Remove: %d\n", Cache
.GetCandidateVer(Pkg
)->ID
);
158 else if (Cache
[Pkg
].NewInstall() == true || Cache
[Pkg
].Upgrade() == true)
159 fprintf(output
, "Install: %d\n", Cache
.GetCandidateVer(Pkg
)->ID
);
163 fprintf(output
, "Package: %s\nVersion: %s\n", Pkg
.FullName().c_str(), Cache
.GetCandidateVer(Pkg
).VerStr());
164 fprintf(output
, "\n");
170 bool EDSP::WriteError(std::string
const &message
, FILE* output
) { return false; }