]> cygwin.com Git - cygwin-apps/setup.git/blame - libsolv.h
Remove the function filemanip.cc:base()
[cygwin-apps/setup.git] / libsolv.h
CommitLineData
1c159e0a
JT
1/*
2 * Copyright (c) 2017 Jon Turney
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 *
12 */
13
14#ifndef LIBSOLV_H
15#define LIBSOLV_H
16
17#include "solv/pool.h"
18#include "solv/repo.h"
1d553f34 19#include "solv/solver.h"
1c159e0a
JT
20#include "PackageSpecification.h"
21#include "PackageTrust.h"
22#include "package_source.h"
23#include "package_depends.h"
24#include <map>
25#include <vector>
26
27typedef trusts package_stability_t;
28
29typedef enum
30{
31 package_binary,
32 package_source
33}
34package_type_t;
35
36// ---------------------------------------------------------------------------
37// interface to class SolverVersion
38//
39// a wrapper around a libsolv Solvable
40// ---------------------------------------------------------------------------
41
42class SolverPool;
1d553f34 43class SolverSolution;
1c159e0a
JT
44
45class SolvableVersion
46{
47 public:
48 SolvableVersion() : id(0), pool(0) {};
49 SolvableVersion(Id _id, Pool *_pool) : id(_id), pool(_pool) {};
50
51 // converted to a bool, this is true if this isn't the result of the default
52 // constructor (an 'empty' version, in some sense)
53 explicit operator bool () const { return (id != 0); }
54
55 const std::string Name () const;
56 const std::string SDesc () const;
57 // In setup-speak, 'Canonical' version means 'e:v-r', the non-decomposed version
58 const std::string Canonical_version () const;
5ebe14e4 59 // Return the dependency list
1c159e0a 60 const PackageDepends depends() const;
5ebe14e4
KB
61 // Return the obsoletes list
62 const PackageDepends obsoletes() const;
1c159e0a
JT
63 bool accessible () const;
64 package_type_t Type () const;
65 package_stability_t Stability () const;
c59b92e8
JT
66 // the associated source package name, if this is a binary package
67 const std::string sourcePackageName () const;
1c159e0a
JT
68 // the associated source package, if this is a binary package
69 SolvableVersion sourcePackage () const;
70 // where this package archive can be obtained from
71 packagesource *source() const;
72
c59b92e8
JT
73 // fixup spkg_id
74 void fixup_spkg_id(SolvableVersion spkg_id) const;
75
1c159e0a
JT
76 // utility function to compare package versions
77 static int compareVersions(const SolvableVersion &a, const SolvableVersion &b);
78
79 // comparison operators
80
81 // these are somewhat necessary as otherwise we are compared as bool values
82 bool operator == (SolvableVersion const &) const;
83 bool operator != (SolvableVersion const &) const;
84
85 // these are only well defined for versions of the same package
86 bool operator < (SolvableVersion const &) const;
87 bool operator <= (SolvableVersion const &) const;
88 bool operator > (SolvableVersion const &) const;
89 bool operator >= (SolvableVersion const &) const;
90
91 private:
92 Id id;
93 Pool *pool;
94
95 friend SolverPool;
1d553f34 96 friend SolverSolution;
5ebe14e4
KB
97
98 const PackageDepends deplist(Id keyname) const;
bfe593cf 99 Id name_id () const;
1c159e0a
JT
100};
101
102// ---------------------------------------------------------------------------
103// Helper class SolvRepo
104//
105// ---------------------------------------------------------------------------
106
107class SolvRepo
108{
109public:
3c3d695d
KB
110 typedef enum
111 {
112 priorityLow = 0,
113 priorityNormal,
114 priorityHigh,
115 } priority_t;
1c159e0a
JT
116 Repo *repo;
117 Repodata *data;
118 bool test;
3c3d695d 119 void setPriority(priority_t p) { repo->priority = p; }
1c159e0a
JT
120};
121
122// ---------------------------------------------------------------------------
123// interface to class SolverPool
124//
125// a simplified wrapper for libsolv
126// ---------------------------------------------------------------------------
127
128class SolverPool
129{
130public:
131 SolverPool();
132 SolvRepo *getRepo(const std::string &name, bool test = false);
133
134 // Utility class for passing arguments to addPackage()
135 class addPackageData
136 {
137 public:
138 std::string reponame;
139 std::string version;
140 std::string vendor;
141 std::string sdesc;
142 std::string ldesc;
143 package_stability_t stability;
144 package_type_t type;
145 packagesource archive;
146 PackageSpecification spkg;
147 SolvableVersion spkg_id;
148 PackageDepends *requires;
20b98f20 149 PackageDepends *obsoletes;
1c159e0a
JT
150 };
151
152 SolvableVersion addPackage(const std::string& pkgname,
153 const addPackageData &pkgdata);
154
155 void internalize(void);
1d553f34
JT
156 void use_test_packages(bool use_test_packages);
157
1c159e0a
JT
158
159private:
160 Id makedeps(Repo *repo, PackageDepends *requires);
161 Pool *pool;
162
163 typedef std::map<std::string, SolvRepo *> RepoList;
164 RepoList repos;
1d553f34
JT
165
166 friend SolverSolution;
1c159e0a
JT
167};
168
169
1d553f34
JT
170// ---------------------------------------------------------------------------
171// interface to class SolverTaskQueue
172//
173// This is used to contain a set of package install/uninstall tasks selected via
174// the UI to be passed to solver
175// ---------------------------------------------------------------------------
176
177class SolverTasks
178{
179 public:
180 enum task
181 {
182 taskInstall,
183 taskUninstall,
9deed604
KB
184 taskReinstall,
185 taskKeep,
bfe593cf 186 taskSkip,
1d553f34
JT
187 };
188 void add(const SolvableVersion &v, task t)
189 {
190 tasks.push_back(taskList::value_type(v, t));
191 };
16994679
KB
192 /* Create solver tasks corresponding to state of database */
193 void setTasks();
194
1d553f34 195 private:
389e4dff 196 typedef std::vector<std::pair<const SolvableVersion, task>> taskList;
1d553f34
JT
197 taskList tasks;
198
199 friend SolverSolution;
200};
201
202// ---------------------------------------------------------------------------
203// SolverTransactionList
204//
205// a list of transactions output by the solver
206// ---------------------------------------------------------------------------
207
208class SolverTransaction
209{
210 public:
211 typedef enum
212 {
213 transIgnore,
214 transInstall,
215 transErase,
216 } transType;
217
218 SolverTransaction(SolvableVersion version_, transType type_) :
219 version(version_), type(type_) {};
220
221 SolvableVersion version;
222 transType type;
223};
224
225typedef std::vector<SolverTransaction> SolverTransactionList;
226
227// ---------------------------------------------------------------------------
228// interface to class SolverSolution
229//
230// A wrapper around the libsolv solver
231// ---------------------------------------------------------------------------
232
233class SolverSolution
234{
235 public:
236 SolverSolution(SolverPool &_pool) : pool(_pool), solv(NULL) {};
237 ~SolverSolution();
238
7c94d449
KB
239 /* Reset package database to correspond to trans */
240 void trans2db() const;
241
9a7507eb
KB
242 /* Reset transaction list to correspond to package database */
243 void db2trans();
244
45f5ab69
JT
245 enum updateMode
246 {
247 keep, // don't update
248 updateBest, // update to best version
249 updateForce, // distupdate: downgrade if necessary to best version in repo
250 };
251 bool update(SolverTasks &tasks, updateMode update, bool use_test_packages, bool include_source);
1d553f34
JT
252 std::string report() const;
253
254 const SolverTransactionList &transactions() const;
255
256 private:
257 static SolverTransaction::transType type(Transaction *trans, int pos);
258
259 SolverPool &pool;
260 Solver *solv;
261 SolverTransactionList trans;
262};
263
1c159e0a 264#endif // LIBSOLV_H
This page took 0.05046 seconds and 5 git commands to generate.