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