c2e6bf07f516c7a4e810cf5056a300f2db2639d2
[oweals/opkg-lede.git] / libopkg / 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 #include "opkg_conf.h"
25 #include "opkg_message.h"
26 #include "opkg_state.h"
27
28 #include "args.h"
29 #include "pkg.h"
30
31 typedef int (*opkg_message_callback)(opkg_conf_t *conf, message_level_t level, 
32         char *msg);
33 typedef int (*opkg_list_callback)(char *name, char *desc, char *version, 
34         pkg_state_status_t status, void *userdata);
35 typedef int (*opkg_status_callback)(char *name, int istatus, char *desc,
36         void *userdata);
37 typedef char* (*opkg_response_callback)(char *question);
38 typedef void (*opkg_download_progress_callback)(int percent, char *url);
39 typedef void (*opkg_state_changed_callback)(opkg_state_t state, const char *data);
40 typedef void (*opkg_progress_callback)(int complete, int total, void *userdata);
41
42 extern int opkg_op(int argc, char *argv[]); /* opkglib.c */
43 extern int opkg_init (opkg_message_callback mcall, 
44                       opkg_response_callback rcall,
45                                           args_t * args);
46
47 extern int opkg_deinit (args_t *args);
48 extern int opkg_packages_list(args_t *args, 
49                               const char *packages, 
50                               opkg_list_callback cblist,
51                               void *userdata);
52 extern int opkg_packages_status(args_t *args, 
53                                 const char *packages, 
54                                 opkg_status_callback cbstatus,
55                                                                 void *userdata);
56 extern int opkg_packages_info(args_t *args,
57                               const char *packages,
58                               opkg_status_callback cbstatus,
59                               void *userdata);
60 extern int opkg_packages_install(args_t *args, const char *name);
61 extern int opkg_packages_remove(args_t *args, const char *name, int purge);
62 extern int opkg_lists_update(args_t *args);
63 extern int opkg_packages_upgrade(args_t *args);
64 extern int opkg_packages_download(args_t *args, const char *name);
65 extern int opkg_package_files(args_t *args,
66                               const char *name,
67                                                           opkg_list_callback cblist,
68                                                           void *userdata);
69 extern int opkg_file_search(args_t *args,
70                             const char *file,
71                                                         opkg_list_callback cblist,
72                                                         void *userdata);
73 extern int opkg_package_whatdepends(args_t *args, const char *file);
74 extern int opkg_package_whatrecommends(args_t *args, const char *file);
75 extern int opkg_package_whatprovides(args_t *args, const char *file);
76 extern int opkg_package_whatconflicts(args_t *args, const char *file);
77 extern int opkg_package_whatreplaces(args_t *args, const char *file);
78
79 extern opkg_message_callback opkg_cb_message; /* opkglib.c */
80 extern opkg_response_callback opkg_cb_response;
81 extern opkg_status_callback opkg_cb_status;
82 extern opkg_list_callback opkg_cb_list;
83 extern opkg_download_progress_callback opkg_cb_download_progress; /* opkg_download.c */
84 extern opkg_state_changed_callback opkg_cb_state_changed; /* opkg_state.c */
85
86 extern void push_error_list(struct errlist **errors,char * msg);
87 extern void reverse_error_list(struct errlist **errors);
88 extern void free_error_list();
89
90 #endif