3d1e701af69750c1a733b6cee87311a137b500b3
[oweals/opkg-lede.git] / libopkg / opkg.h
1 /* opkg.h - the opkg  package management system
2
3    Thomas Wood <thomas@openedhand.com>
4
5    Copyright (C) 2008 OpenMoko Inc
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 OPKG_H
19 #define OPKG_H
20
21 #include "pkg.h"
22 #include "opkg_message.h"
23
24 typedef struct _opkg_progress_data_t opkg_progress_data_t;
25
26 typedef void (*opkg_progress_callback_t) (const opkg_progress_data_t *progress, void *user_data);
27 typedef void (*opkg_package_callback_t) (pkg_t *pkg, void *user_data);
28
29 enum _opkg_action_t
30 {
31   OPKG_INSTALL,
32   OPKG_REMOVE,
33   OPKG_DOWNLOAD
34 };
35
36 enum _opkg_error_code_t
37 {
38   OPKG_NO_ERROR,
39   OPKG_UNKNOWN_ERROR,
40   OPKG_DOWNLOAD_FAILED,
41   OPKG_DEPENDENCIES_FAILED,
42   OPKG_PACKAGE_ALREADY_INSTALLED,
43   OPKG_PACKAGE_NOT_AVAILABLE,
44   OPKG_PACKAGE_NOT_FOUND,
45   OPKG_PACKAGE_NOT_INSTALLED,
46   OPKG_GPG_ERROR,
47   OPKG_MD5_ERROR,
48   OPKG_SHA256_ERROR
49 };
50
51 struct _opkg_progress_data_t
52 {
53   int percentage;
54   int action;
55   pkg_t *pkg;
56 };
57
58 int opkg_new (void);
59 void opkg_free (void);
60 int opkg_re_read_config_files (void);
61 void opkg_get_option (char *option, void **value);
62 void opkg_set_option (char *option, void *value);
63
64 int opkg_install_package (const char *package_name, opkg_progress_callback_t callback, void *user_data);
65 int opkg_remove_package (const char *package_name, opkg_progress_callback_t callback, void *user_data);
66 int opkg_upgrade_package (const char *package_name, opkg_progress_callback_t callback, void *user_data);
67 int opkg_upgrade_all (opkg_progress_callback_t callback, void *user_data);
68 int opkg_update_package_lists (opkg_progress_callback_t callback, void *user_data);
69
70 int opkg_list_packages (opkg_package_callback_t callback, void *user_data);
71 int opkg_list_upgradable_packages (opkg_package_callback_t callback, void *user_data);
72 pkg_t* opkg_find_package (const char *name, const char *version, const char *architecture, const char *repository);
73
74 int opkg_repository_accessibility_check(void);
75
76 #endif /* OPKG_H */