blob: 21460afde342ba769908a6e81c59e425fea9b08c (
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
|
/*
* libdpkg - Debian packaging suite library routines
* pkg-queue.h - primitives for pkg queue handling
*
* Copyright © 2010 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/>.
*/
#ifndef DPKG_PKG_QUEUE_H
#define DPKG_PKG_QUEUE_H
#include <dpkg/macros.h>
#include <dpkg/pkg-list.h>
DPKG_BEGIN_DECLS
/**
* @defgroup pkg-queue Package queues
* @ingroup dpkg-public
* @{
*/
struct pkg_queue {
struct pkg_list *head, *tail;
int length;
};
/**
* Constant initializer for a package queue.
*/
#define PKG_QUEUE_INIT \
{ .head = NULL, .tail = NULL, .length = 0 }
/**
* Compound literal for a package queue.
*/
#define PKG_QUEUE_OBJECT \
(struct pkg_queue)PKG_QUEUE_INIT
void pkg_queue_init(struct pkg_queue *queue);
void pkg_queue_destroy(struct pkg_queue *queue);
int pkg_queue_is_empty(struct pkg_queue *queue);
struct pkg_list *pkg_queue_push(struct pkg_queue *queue, struct pkginfo *pkg);
struct pkginfo *pkg_queue_pop(struct pkg_queue *queue);
/** @} */
DPKG_END_DECLS
#endif /* DPKG_PKG_QUEUE_H */
|