libopkg: remove internal dependency on libopkg.h and opkg_cmd.h
authorticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Mon, 15 Dec 2008 05:03:46 +0000 (05:03 +0000)
committerticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Mon, 15 Dec 2008 05:03:46 +0000 (05:03 +0000)
git-svn-id: http://opkg.googlecode.com/svn/trunk@64 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358

12 files changed:
libopkg/libopkg.c
libopkg/libopkg.h
libopkg/opkg_download.c
libopkg/opkg_download.h
libopkg/opkg_message.c
libopkg/opkg_message.h
libopkg/opkg_remove.c
libopkg/opkg_state.c
libopkg/opkg_state.h
libopkg/opkg_utils.h
libopkg/user.c
libopkg/user.h

index afc42da860185d6ab122c13387eff085ce5e5b99..3f5adc3122682e63fc50fc4a5fbd0636e8f16dc5 100644 (file)
@@ -26,8 +26,6 @@
 
 
 
-opkg_message_callback opkg_cb_message = NULL;
-opkg_response_callback opkg_cb_response = NULL;
 opkg_status_callback opkg_cb_status = NULL;
 opkg_list_callback opkg_cb_list = NULL;
 
index c2e6bf07f516c7a4e810cf5056a300f2db2639d2..5a963bb750759914648cf96cda74d896eda0bd5c 100644 (file)
 #include "opkg_conf.h"
 #include "opkg_message.h"
 #include "opkg_state.h"
+#include "opkg_download.h"
+#include "opkg_utils.h"
 
 #include "args.h"
 #include "pkg.h"
+#include "user.h"
 
-typedef int (*opkg_message_callback)(opkg_conf_t *conf, message_level_t level, 
-       char *msg);
-typedef int (*opkg_list_callback)(char *name, char *desc, char *version, 
-       pkg_state_status_t status, void *userdata);
 typedef int (*opkg_status_callback)(char *name, int istatus, char *desc,
        void *userdata);
-typedef char* (*opkg_response_callback)(char *question);
-typedef void (*opkg_download_progress_callback)(int percent, char *url);
-typedef void (*opkg_state_changed_callback)(opkg_state_t state, const char *data);
+typedef int (*opkg_list_callback)(char *name, char *desc, char *version, 
+       pkg_state_status_t status, void *userdata);
 typedef void (*opkg_progress_callback)(int complete, int total, void *userdata);
 
 extern int opkg_op(int argc, char *argv[]); /* opkglib.c */
@@ -76,15 +74,11 @@ extern int opkg_package_whatprovides(args_t *args, const char *file);
 extern int opkg_package_whatconflicts(args_t *args, const char *file);
 extern int opkg_package_whatreplaces(args_t *args, const char *file);
 
-extern opkg_message_callback opkg_cb_message; /* opkglib.c */
-extern opkg_response_callback opkg_cb_response;
+extern opkg_message_callback opkg_cb_message; /* opkg_message.c */
+extern opkg_response_callback opkg_cb_response; /* user.c */
 extern opkg_status_callback opkg_cb_status;
 extern opkg_list_callback opkg_cb_list;
 extern opkg_download_progress_callback opkg_cb_download_progress; /* opkg_download.c */
 extern opkg_state_changed_callback opkg_cb_state_changed; /* opkg_state.c */
 
-extern void push_error_list(struct errlist **errors,char * msg);
-extern void reverse_error_list(struct errlist **errors);
-extern void free_error_list();
-
 #endif
index 4dab8092f5001e5e94cc02e70edd235ec7849d7a..cbf8264521baa96dd6eaf1016aec5eb341b5ca22 100644 (file)
@@ -32,7 +32,6 @@
 #include "file_util.h"
 #include "str_util.h"
 
-#include "libopkg.h"
 opkg_download_progress_callback opkg_cb_download_progress = NULL;
 
 int
index da65b0032903950063708423e66edf5b063f3749..b87838085d5f9940a46c7da7934c279b20b3a187 100644 (file)
@@ -20,6 +20,8 @@
 
 #include "opkg_conf.h"
 
+typedef void (*opkg_download_progress_callback)(int percent, char *url);
+
 int opkg_download(opkg_conf_t *conf, const char *src, const char *dest_file_name);
 int opkg_download_pkg(opkg_conf_t *conf, pkg_t *pkg, const char *dir);
 /*
index b96e7d6982fa823c28a4c68045043643c50fcd25..c00dd979a953b198e25096caf27c808798503027 100644 (file)
@@ -18,9 +18,7 @@
 #include "opkg_conf.h"
 #include "opkg_message.h"
 
-#include "libopkg.h"
-
-//#define opkg_message(conf, level, fmt, arg...) opkg_cb_message(conf, level, fmt, ## arg)
+opkg_message_callback opkg_cb_message = NULL;
 
 void
 opkg_message (opkg_conf_t * conf, message_level_t level, char *fmt, ...)
index 86f895b5329915396a579d47ef86604329ff5c78..e0182ddaa24e48278bc837a30fd23d1a9f787d17 100644 (file)
@@ -27,6 +27,9 @@ typedef enum {
      OPKG_DEBUG2,      /* more debug level message */
 } message_level_t;
 
+typedef int (*opkg_message_callback)(opkg_conf_t *conf, message_level_t level, 
+       char *msg);
+
 extern void opkg_message(opkg_conf_t *conf, message_level_t level, char *fmt, ...);
 
 #endif /* _OPKG_MESSAGE_H_ */
index 6f80c4dd779467d954ee565afc2ed8ff1f6091dc..afb8aa79e9b2d040931933fc18d965957d2d7975 100644 (file)
@@ -26,8 +26,6 @@
 #include "sprintf_alloc.h"
 #include "str_util.h"
 
-#include "opkg_cmd.h"
-
 /*
  * Returns number of the number of packages depending on the packages provided by this package.
  * Every package implicitly provides itself.
index f094de7a5385a5d0127475988beb61127e6e9193..36018c73a57a9b9b2419abdfa2e7a45d3e2ed81c 100644 (file)
@@ -15,7 +15,6 @@
    General Public License for more details.
 */
 
-#include "libopkg.h"
 #include "opkg_state.h"
 
 
index 9442d939487dbdc21988231970d7cd4d33cd5472..44b8d0dc1fc1e40418ab218643cc5a483e3aa629 100644 (file)
@@ -18,7 +18,7 @@
 #ifndef OPKG_STATE_H
 #define OPKG_STATE_H
 
-#include <opkg_message.h>
+#include "opkg_message.h"
 
 extern int opkg_state_changed;
 
@@ -36,5 +36,8 @@ typedef enum _opkg_state {
 
 void opkg_set_current_state (opkg_conf_t *conf, opkg_state_t state, const char *data);
 
+typedef void (*opkg_state_changed_callback)(opkg_state_t state, const char *data);
+
+
 
 #endif /* OPKG_STATE_H */
index f47e35f660613f184517d1946538a0b1e81a7aee..782d7d67d8012ce1664420f69cb7568321e65224 100644 (file)
 
 #include "pkg.h"
 
+void push_error_list(struct errlist **errors,char * msg);
+void reverse_error_list(struct errlist **errors);
+void free_error_list();
+
 int get_available_blocks(char * filesystem);
 char **read_raw_pkgs_from_file(const char *file_name);
 char **read_raw_pkgs_from_stream(FILE *fp);
index 557f7ce890577877f96d1887ab8a50f3d7a112a0..2467de9958eef51a08381356223011efb5b61db5 100644 (file)
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    General Public License for more details.
 */
-
+#include <stdlib.h>
 #include <stdio.h>
 #include <stdarg.h>
+#include <string.h>
 #include "file_util.h"
 #include "str_util.h"
-#include "libopkg.h"
-
+#include "user.h"
 
 static char *question = NULL;
 static int question_len = 255;
 
+opkg_response_callback opkg_cb_response = NULL;
+
 char *get_user_response(const char *format, ...)
 {
      int len = question_len;
index fa0f8189150e2efa4dfe0e7ed5600e6ed314b186..a14575bc832d56db1aaea17d4b8ccd361288f588 100644 (file)
@@ -19,5 +19,6 @@
 #include <stdio.h>
 #include <stdarg.h>
 
+typedef char* (*opkg_response_callback)(char *question);
 char *get_user_response(const char *format, ...);