summaryrefslogtreecommitdiffstats
path: root/lib/dpkg/pkg-array.c
blob: 0ce285e925a11149387e3e0cfee0032877f8e8bf (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
/*
 * libdpkg - Debian packaging suite library routines
 * pkg-array.c - primitives for pkg array handling
 *
 * Copyright © 1995,1996 Ian Jackson <ijackson@chiark.greenend.org.uk>
 * Copyright © 2009-2015 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 <stdlib.h>

#include <dpkg/dpkg.h>
#include <dpkg/dpkg-db.h>
#include <dpkg/pkg-spec.h>
#include <dpkg/pkg-array.h>

/**
 * Initialize a package array from package names.
 *
 * @param a          The array to initialize.
 * @param pkg_mapper A function that maps a package name to a package instance.
 * @param pkg_names  The package names list.
 */
void
pkg_array_init_from_names(struct pkg_array *a, pkg_mapper_func pkg_mapper,
                          const char **pkg_names)
{
	int i = 0;

	while (pkg_names[i])
		i++;

	a->n_pkgs = i;
	a->pkgs = m_malloc(sizeof(a->pkgs[0]) * a->n_pkgs);

	for (i = 0; pkg_names[i]; i++)
		a->pkgs[i] = pkg_mapper(pkg_names[i]);
}

/**
 * Initialize a package array from the package database.
 *
 * @param a The array to initialize.
 */
void
pkg_array_init_from_hash(struct pkg_array *a)
{
	struct pkg_hash_iter *iter;
	struct pkginfo *pkg;
	int i;

	a->n_pkgs = pkg_hash_count_pkg();
	a->pkgs = m_malloc(sizeof(a->pkgs[0]) * a->n_pkgs);

	iter = pkg_hash_iter_new();
	for (i = 0; (pkg = pkg_hash_iter_next_pkg(iter)); i++)
		a->pkgs[i] = pkg;
	pkg_hash_iter_free(iter);

	if (i != a->n_pkgs)
		internerr("inconsistent state in pkg array: i=%d != npkgs=%d",
		          i, a->n_pkgs);
}

/**
 * Visit each non-NULL package in a package array.
 *
 * @param a The array to visit.
 * @param pkg_visitor The function to visit each item of the array.
 * @param pkg_data Data to pass pkg_visit for each package visited.
 */
void
pkg_array_foreach(struct pkg_array *a, pkg_array_visitor_func *pkg_visitor,
                  void *pkg_data)
{
	int i;

	for (i = 0; i < a->n_pkgs; i++) {
		struct pkginfo *pkg = a->pkgs[i];

		if (pkg == NULL)
			continue;

		pkg_visitor(a, pkg, pkg_data);
	}
}

/**
 * Sort a package array.
 *
 * @param a The array to sort.
 * @param pkg_sort The function to sort the array.
 */
void
pkg_array_sort(struct pkg_array *a, pkg_sorter_func *pkg_sort)
{
	qsort(a->pkgs, a->n_pkgs, sizeof(a->pkgs[0]), pkg_sort);
}

/**
 * Destroy a package array.
 *
 * Frees the allocated memory and resets the members.
 *
 * @param a The array to destroy.
 */
void
pkg_array_destroy(struct pkg_array *a)
{
	a->n_pkgs = 0;
	free(a->pkgs);
	a->pkgs = NULL;
}