opkg: improve download error reporting
[oweals/opkg-lede.git] / libopkg.h
1 /* opkglib.h - the itsy package management system
2
3    Florian Boor <florian.boor@kernelconcepts.de>
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2, or (at
8    your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14 */
15
16 #ifndef OPKGLIB_H
17 #define OPKGLIB_H
18
19 #ifdef HAVE_CONFIG_H
20 #include "config.h"
21 #endif
22
23
24 #ifdef OPKG_LIB
25
26 #include "opkg_conf.h"
27 #include "opkg_message.h"
28
29 #include "args.h"
30 #include "pkg.h"
31
32 typedef int (*opkg_message_callback)(opkg_conf_t *conf, message_level_t level, 
33         char *msg);
34 typedef int (*opkg_list_callback)(char *name, char *desc, char *version, 
35         pkg_state_status_t status, void *userdata);
36 typedef int (*opkg_status_callback)(char *name, int istatus, char *desc,
37         void *userdata);
38 typedef char* (*opkg_response_callback)(char *question);
39 typedef void (*opkg_download_progress_callback)(int percent, char *url);
40
41 extern int opkg_op(int argc, char *argv[]); /* opkglib.c */
42 extern int opkg_init (opkg_message_callback mcall, 
43                       opkg_response_callback rcall,
44                                           args_t * args);
45
46 extern int opkg_deinit (args_t *args);
47 extern int opkg_packages_list(args_t *args, 
48                               const char *packages, 
49                               opkg_list_callback cblist,
50                               void *userdata);
51 extern int opkg_packages_status(args_t *args, 
52                                 const char *packages, 
53                                 opkg_status_callback cbstatus,
54                                                                 void *userdata);
55 extern int opkg_packages_info(args_t *args,
56                               const char *packages,
57                               opkg_status_callback cbstatus,
58                               void *userdata);
59 extern int opkg_packages_install(args_t *args, const char *name);
60 extern int opkg_packages_remove(args_t *args, const char *name, int purge);
61 extern int opkg_lists_update(args_t *args);
62 extern int opkg_packages_upgrade(args_t *args);
63 extern int opkg_packages_download(args_t *args, const char *name);
64 extern int opkg_package_files(args_t *args,
65                               const char *name,
66                                                           opkg_list_callback cblist,
67                                                           void *userdata);
68 extern int opkg_file_search(args_t *args,
69                             const char *file,
70                                                         opkg_list_callback cblist,
71                                                         void *userdata);
72 extern int opkg_package_whatdepends(args_t *args, const char *file);
73 extern int opkg_package_whatrecommends(args_t *args, const char *file);
74 extern int opkg_package_whatprovides(args_t *args, const char *file);
75 extern int opkg_package_whatconflicts(args_t *args, const char *file);
76 extern int opkg_package_whatreplaces(args_t *args, const char *file);
77
78 extern opkg_message_callback opkg_cb_message; /* opkglib.c */
79 extern opkg_response_callback opkg_cb_response;
80 extern opkg_status_callback opkg_cb_status;
81 extern opkg_list_callback opkg_cb_list;
82 extern opkg_download_progress_callback opkg_cb_download_progress; /* ipkg_download.c */
83
84 extern void push_error_list(struct errlist **errors,char * msg);
85 extern void reverse_error_list(struct errlist **errors);
86 extern void free_error_list();
87
88 #endif
89
90
91 #endif