diff options
Diffstat (limited to 'libopkg')
-rw-r--r-- | libopkg/Makefile.am | 2 | ||||
-rw-r--r-- | libopkg/opkg.c | 67 | ||||
-rw-r--r-- | libopkg/opkg.h | 2 |
3 files changed, 35 insertions, 36 deletions
diff --git a/libopkg/Makefile.am b/libopkg/Makefile.am index 373d09c..043c5c4 100644 --- a/libopkg/Makefile.am +++ b/libopkg/Makefile.am @@ -46,6 +46,8 @@ libopkg_la_SOURCES = \ libopkg_la_LIBADD = $(top_builddir)/libbb/libbb.la $(CURL_LIBS) $(GPGME_LIBS) $(OPENSSL_LIBS) $(PATHFINDER_LIBS) +libopkg_la_LDFLAGS = -version-info 1:0:0 + # make sure we only export symbols that are for public use #libopkg_la_LDFLAGS = -export-symbols-regex "^opkg_.*" diff --git a/libopkg/opkg.c b/libopkg/opkg.c index 7c3e18f..92f61f4 100644 --- a/libopkg/opkg.c +++ b/libopkg/opkg.c @@ -158,80 +158,77 @@ opkg_re_read_config_files(void) return opkg_new(); } -void -opkg_get_option(char *option, void **value) +int +opkg_get_option(char *option, void *value) { - int i = 0; + int i; extern opkg_option_t options[]; - /* look up the option - * TODO: this would be much better as a hash table - */ - while (options[i].name) { - if (strcmp(options[i].name, option) != 0) { - i++; - continue; - } + opkg_assert(option != NULL); + opkg_assert(value != NULL); + + *(char**)value = NULL; + + for (i=0; options[i].name; i++) { + if (strcmp(options[i].name, option) == 0) + break; } - /* get the option */ + if (options[i].name == NULL) + /* Not found. */ + return -1; + switch (options[i].type) { case OPKG_OPT_TYPE_BOOL: - *((int *) value) = *((int *) options[i].value); - return; + *(int *)value = *(int *)options[i].value; + break; case OPKG_OPT_TYPE_INT: - *((int *) value) = *((int *) options[i].value); - return; + *(int *)value = *(int *)options[i].value; + break; case OPKG_OPT_TYPE_STRING: - *((char **) value) = xstrdup(options[i].value); - return; + *(char **)value = xstrdup(*(char **)options[i].value); + break; } + return 0; } void opkg_set_option(char *option, void *value) { - int i = 0, found = 0; + int i; extern opkg_option_t options[]; opkg_assert(option != NULL); opkg_assert(value != NULL); - /* look up the option - * TODO: this would be much better as a hash table - */ - while (options[i].name) { - if (strcmp(options[i].name, option) == 0) { - found = 1; + for (i=0; options[i].name; i++) { + if (strcmp(options[i].name, option) == 0) break; - } - i++; } - if (!found) { + if (options[i].name == NULL) { opkg_msg(ERROR, "Invalid option: %s\n", option); return; } - /* set the option */ switch (options[i].type) { case OPKG_OPT_TYPE_BOOL: - if (*((int *) value) == 0) + if ((long)value == 0) *((int *) options[i].value) = 0; else *((int *) options[i].value) = 1; - return; + break; case OPKG_OPT_TYPE_INT: - *((int *) options[i].value) = *((int *) value); - return; + *((int *) options[i].value) = (long)value; + break; case OPKG_OPT_TYPE_STRING: - *((char **) options[i].value) = xstrdup(value); - return; + *((char **) options[i].value) = xstrdup((char *)value); + break; } } diff --git a/libopkg/opkg.h b/libopkg/opkg.h index b39f7fb..4fbd404 100644 --- a/libopkg/opkg.h +++ b/libopkg/opkg.h @@ -43,7 +43,7 @@ struct _opkg_progress_data_t int opkg_new (void); void opkg_free (void); int opkg_re_read_config_files (void); -void opkg_get_option (char *option, void **value); +int opkg_get_option (char *option, void *value); void opkg_set_option (char *option, void *value); int opkg_install_package (const char *package_name, opkg_progress_callback_t callback, void *user_data); |