File: pkgsublist.cc

package info (click to toggle)
dpkg 1.23.3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 59,056 kB
  • sloc: ansic: 40,197; perl: 30,221; sh: 18,907; cpp: 6,054; makefile: 5,222; sed: 127
file content (270 lines) | stat: -rw-r--r-- 7,293 bytes parent folder | download
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/*
 * dselect - Debian package maintenance user interface
 * pkgsublist.cc - status modification and recursive package list handling
 *
 * Copyright © 1995 Ian Jackson <ijackson@chiark.greenend.org.uk>
 * Copyright © 2007-2014 Guillem Jover <guillem@debian.org>
 *
 * This is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

#include <config.h>
#include <compat.h>

#include <string.h>
#include <stdio.h>

#include <dpkg/i18n.h>
#include <dpkg/dpkg.h>
#include <dpkg/dpkg-db.h>

#include "dselect.h"
#include "bindings.h"

void
packagelist::add(pkginfo *pkg)
{
	debug(dbg_general, "packagelist[%p]::add(pkginfo %s)",
	      this, pkg_name(pkg, pnaw_always));
	if (!recursive ||		// Never add things to top level.
	    !pkg->clientdata ||		// Don't add pure virtual packages.
	    pkg->clientdata->uprec)	// Don't add repeated to recursive list.
		return;

	debug(dbg_general, "packagelist[%p]::add(pkginfo %s) adding",
	      this, pkg_name(pkg, pnaw_always));
	perpackagestate *state = &datatable[nitems];
	state->pkg = pkg;
	state->direct = state->original = pkg->clientdata->selected;
	state->suggested = state->selected = pkg->clientdata->selected;
	state->spriority = sp_inherit;
	state->dpriority = dp_none;
	state->uprec = pkg->clientdata;
	state->relations.init();
	pkg->clientdata = state;
	table[nitems]= state;
	nitems++;
}

void
packagelist::add(pkginfo *pkg, pkgwant nw)
{
	debug(dbg_general, "packagelist[%p]::add(pkginfo %s, %s)",
	      this, pkg_name(pkg, pnaw_always), wantstrings[nw]);
	add(pkg);
	if (!pkg->clientdata)
		return;

	pkg->clientdata->direct = nw;
	selpriority np;
	np = would_like_to_install(nw, pkg) ? sp_selecting : sp_deselecting;
	if (pkg->clientdata->spriority > np)
		return;

	debug(dbg_general, "packagelist[%p]::add(pkginfo %s, %s) setting",
	      this, pkg_name(pkg, pnaw_always), wantstrings[nw]);
	pkg->clientdata->suggested = pkg->clientdata->selected = nw;
	pkg->clientdata->spriority = np;
}

void
packagelist::add(pkginfo *pkg, const char *extrainfo, showpriority showimp)
{
	debug(dbg_general,
	      "packagelist[%p]::add(pkginfo %s, ..., showpriority %d)",
	      this, pkg_name(pkg, pnaw_always), showimp);
	add(pkg);
	if (!pkg->clientdata)
		return;

	if (pkg->clientdata->dpriority < showimp)
		pkg->clientdata->dpriority = showimp;
	pkg->clientdata->relations += extrainfo;
}

bool
packagelist::alreadydone(doneent **done, void *check)
{
	doneent *search = *done;

	while (search && search->dep != check)
		search = search->next;
	if (search)
		return true;

	debug(dbg_general, "packagelist[%p]::alreadydone(%p, %p) new",
	      this, done, check);
	search = new doneent;
	search->next = *done;
	search->dep = check;
	*done = search;

	return false;
}

void
packagelist::addunavailable(deppossi *possi)
{
	debug(dbg_general, "packagelist[%p]::addunavail(%p)", this, possi);

	if (!recursive)
		return;
	if (alreadydone(&unavdone, possi))
		return;

	if (possi->up->up->clientdata == nullptr)
		internerr("deppossi from package %s has nullptr clientdata",
		          pkg_name(possi->up->up, pnaw_always));
	if (possi->up->up->clientdata->uprec == nullptr)
		internerr("deppossi from package %s has nullptr clientdata's uprec",
		          pkg_name(possi->up->up, pnaw_always));

	varbuf& vb = possi->up->up->clientdata->relations;
	vb += possi->ed->name;
	vb += _(" does not appear to be available\n");
}

bool
packagelist::add(dependency *depends, showpriority displayimportance)
{
	debug(dbg_general,
	      "packagelist[%p]::add(dependency[%p])", this, depends);

	if (alreadydone(&depsdone, depends))
		return false;

	const char *comma = "";
	varbuf depinfo;
	depinfo += depends->up->set->name;
	depinfo += ' ';
	depinfo += gettext(relatestrings[depends->type]);
	depinfo += ' ';
	deppossi *possi;
	for (possi = depends->list;
	     possi;
	     possi = possi->next, comma = (possi && possi->next ? ", " : _(" or "))) {
		depinfo += comma;
		depinfo += possi->ed->name;
		if (possi->verrel != DPKG_RELATION_NONE) {
			switch (possi->verrel) {
			case DPKG_RELATION_LE:
				depinfo += " (<= ";
				break;
			case DPKG_RELATION_GE:
				depinfo += " (>= ";
				break;
			case DPKG_RELATION_LT:
				depinfo += " (<< ";
				break;
			case DPKG_RELATION_GT:
				depinfo += " (>> ";
				break;
			case DPKG_RELATION_EQ:
				depinfo += " (= ";
				break;
			default:
				internerr("unknown dpkg_relation %d", possi->verrel);
			}
			depinfo += versiondescribe(&possi->version, vdew_nonambig);
			depinfo += ")";
		}
	}
	depinfo += '\n';
	add(depends->up, depinfo.str(), displayimportance);
	for (possi = depends->list; possi; possi = possi->next) {
		add(&possi->ed->pkg, depinfo.str(), displayimportance);
		if (depends->type != dep_provides) {
			/* Providers are not relevant if we are looking at a
			 * provider relationship already. */
			deppossi *provider;
			for (provider = possi->ed->depended.available;
			     provider;
			     provider = provider->rev_next) {
				if (provider->up->type != dep_provides)
					continue;

				add(provider->up->up, depinfo.str(), displayimportance);
				add(provider->up, displayimportance);
			}
		}
	}

	return true;
}

void
repeatedlydisplay(packagelist *sub, showpriority initial,
                  packagelist *unredisplay)
{
	debug(dbg_general, "repeatedlydisplay(packagelist[%p])", sub);
	if (sub->resolvesuggest() != 0 && sub->deletelessimp_anyleft(initial)) {
		debug(dbg_general,
		      "repeatedlydisplay(packagelist[%p]) once", sub);
		if (unredisplay)
			unredisplay->enddisplay();

		for (;;) {
			pkginfo **newl;
			keybindings *kb;

			/* Reset manual_install flag now that resolvesuggest()
			 * has seen it. */
			manual_install = false;
			newl = sub->display();
			if (!newl)
				break;
			debug(dbg_general,
			      "repeatedlydisplay(packagelist[%p]) newl", sub);

			kb = sub->bindings;
			delete sub;
			sub = new packagelist(kb, newl);
			if (sub->resolvesuggest() <= 1)
				break;
			if (!sub->deletelessimp_anyleft(dp_must))
				break;
			debug(dbg_general,
			      "repeatedlydisplay(packagelist[%p]) again", sub);
		}
		if (unredisplay)
			unredisplay->startdisplay();
	}
	debug(dbg_general, "repeatedlydisplay(packagelist[%p]) done", sub);
	delete sub;
}

int
packagelist::deletelessimp_anyleft(showpriority than)
{
	debug(dbg_general, "packagelist[%p]::dli_al(%d): nitems=%d",
	      this, than, nitems);

	int insat, runthr;

	for (runthr = 0, insat = 0; runthr < nitems; runthr++) {
		if (table[runthr]->dpriority < than) {
			table[runthr]->free(recursive);
		} else {
			if (insat != runthr)
				table[insat]= table[runthr];
			insat++;
		}
	}
	nitems = insat;

	debug(dbg_general, "packagelist[%p]::dli_al(%d) done; nitems=%d",
	      this, than, nitems);

	return nitems;
}