opkg: correct the name of the state changed callback and run it when appropriate
[oweals/opkg-lede.git] / pkg_src_list.h
1 /* pkg_src_list.h - the itsy package management system
2
3    Carl D. Worth
4
5    Copyright (C) 2001 University of Southern California
6
7    This program is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License as
9    published by the Free Software Foundation; either version 2, or (at
10    your option) any later version.
11
12    This program is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    General Public License for more details.
16 */
17
18 #ifndef PKG_SRC_LIST_H
19 #define PKG_SRC_LIST_H
20
21 #include "pkg_src.h"
22
23 typedef struct pkg_src_list_elt pkg_src_list_elt_t;
24 struct pkg_src_list_elt
25 {
26     pkg_src_list_elt_t *next;
27     pkg_src_t *data;
28 };
29
30 typedef struct pkg_src_list pkg_src_list_t;
31 struct pkg_src_list
32 {
33     pkg_src_list_elt_t pre_head;
34     pkg_src_list_elt_t *head;
35     pkg_src_list_elt_t *tail;
36 };
37
38 static inline int pkg_src_list_empty(pkg_src_list_t *list)
39 {
40      if (list->head == NULL)
41           return 1;
42      else
43           return 0;
44 }
45
46 int pkg_src_list_elt_init(pkg_src_list_elt_t *elt, nv_pair_t *data);
47 void pkg_src_list_elt_deinit(pkg_src_list_elt_t *elt);
48
49 int pkg_src_list_init(pkg_src_list_t *list);
50 void pkg_src_list_deinit(pkg_src_list_t *list);
51
52 pkg_src_t *pkg_src_list_append(pkg_src_list_t *list, const char *name, const char *root_dir, const char *extra_data, int gzip);
53 int pkg_src_list_push(pkg_src_list_t *list, pkg_src_t *data);
54 pkg_src_list_elt_t *pkg_src_list_pop(pkg_src_list_t *list);
55
56 #endif
57