opkg: implement opkg_set_option() and opkg_get_option()
authorticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Mon, 15 Dec 2008 05:09:30 +0000 (05:09 +0000)
committerticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Mon, 15 Dec 2008 05:09:30 +0000 (05:09 +0000)
git-svn-id: http://opkg.googlecode.com/svn/trunk@71 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358

libopkg/opkg.c
libopkg/opkg.h
libopkg/opkg_conf.c
libopkg/opkg_conf.h

index 96ec7d410e93e83b8d503bb88ced061db3051bcd..de1d9b8caaeaaa0c441fd78e7ee88bffaed8a3b2 100644 (file)
@@ -29,6 +29,7 @@ struct _opkg_t
 {
   args_t *args;
   opkg_conf_t *conf;
+  opkg_option_t *options[];
 };
 
 /** Private Functions ***/
@@ -84,6 +85,7 @@ opkg_new ()
   opkg = malloc (sizeof (opkg_t));
   args_init (opkg->args);
   opkg_conf_init (opkg->conf, opkg->args);
+  opkg_init_options_array (opkg->conf, opkg->options);
   return opkg;
 }
 
@@ -97,11 +99,84 @@ opkg_free (opkg_t *opkg)
 void
 opkg_get_option (opkg_t *opkg, char *option, void **value)
 {
+  int i = 0;
+  opkg_option_t **options = opkg->options;
+
+  /* can't store a value in a NULL pointer! */
+  if (!value)
+    return;
+
+  /* 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;
+    }
+  }
+
+  /* get the option */
+  switch (options[i]->type)
+  {
+    case OPKG_OPT_TYPE_BOOL:
+      *((int *) value) = *((int *) options[i]->value);
+      return;
+
+    case OPKG_OPT_TYPE_INT:
+      *((int *) value) = *((int *) options[i]->value);
+      return;
+
+    case OPKG_OPT_TYPE_STRING:
+      *((char **)value) = strdup (options[i]->value);
+      return;
+   }
+
 }
 
 void
 opkg_set_option (opkg_t *opkg, char *option, void *value)
 {
+  int i = 0;
+  opkg_option_t **options = opkg->options;
+
+  /* NULL values are not defined */
+  if (!value)
+    return;
+
+  /* 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;
+    }
+  }
+
+  /* set the option */
+  switch (options[i]->type)
+  {
+    case OPKG_OPT_TYPE_BOOL:
+      if (*((int *) value) == 0)
+        *((int *)options[i]->value) = 0;
+      else
+        *((int *)options[i]->value) = 1;
+      return;
+
+    case OPKG_OPT_TYPE_INT:
+      *((int *) options[i]->value) = *((int *) value);
+      return;
+
+    case OPKG_OPT_TYPE_STRING:
+      *((char **)options[i]->value) = strdup(value);
+      return;
+   }
+
 }
 
 int
index d399948e567a6e530467353ddaeaec6b6255bee6..029b20ce205a6e356e52194abe1a4e32ce1b79c1 100644 (file)
@@ -19,6 +19,9 @@ typedef struct _opkg_t opkg_t;
 
 opkg_t* opkg_new ();
 void opkg_free (opkg_t *opkg);
+void opkg_get_option (opkg_t *opkg, char *option, void **value);
+void opkg_set_option (opkg_t *opkg, char *option, void *value);
+
 int opkg_install_package (opkg_t *opkg, char *package_name);
 int opkg_remove_package (opkg_t *opkg, char *package_name);
 int opkg_upgrade_package (opkg_t *opkg, char *package_name);
index f5bf3195289e4861321e802e4197580123e4422c..cfee437032ff9c885d0cb83bd1e4620ca438db13 100644 (file)
@@ -33,7 +33,6 @@ static int opkg_conf_parse_file(opkg_conf_t *conf, const char *filename,
                                pkg_src_list_t *pkg_src_list,
                                nv_pair_list_t *tmp_dest_nv_pair_list,
                                char **tmp_lists_dir);
-static int opkg_init_options_array(const opkg_conf_t *conf, opkg_option_t **options);
 static int opkg_conf_set_option(const opkg_option_t *options,
                                const char *name, const char *value);
 static int opkg_conf_set_default_dest(opkg_conf_t *conf,
index f774b4ace35d964a76979cebc9c453df32b30c17..4b971b4fe8484e23020b52e4cc31f9fc97344514 100644 (file)
@@ -104,4 +104,7 @@ void opkg_conf_deinit(opkg_conf_t *conf);
 int opkg_conf_write_status_files(opkg_conf_t *conf);
 char *root_filename_alloc(opkg_conf_t *conf, char *filename);
 
+
+int opkg_init_options_array(const opkg_conf_t *conf, opkg_option_t **options);
+
 #endif