opkg: using active_list to list all the installed pkgs.
authorticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Mon, 15 Dec 2008 05:34:16 +0000 (05:34 +0000)
committerticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Mon, 15 Dec 2008 05:34:16 +0000 (05:34 +0000)
      adding function that allows node move from one list to another

git-svn-id: http://opkg.googlecode.com/svn/trunk@178 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358

libopkg/active_list.c
libopkg/active_list.h
libopkg/opkg_upgrade.c

index e100101d2f69a7642d3ff91db645892e6fc33160..861454e80957a899c6e584273f83c3b135112215 100644 (file)
@@ -73,6 +73,18 @@ struct active_list * active_list_prev(struct active_list *head, struct active_li
     return prev;
 }
 
+
+struct active_list *active_list_move_node(struct active_list *old_head, struct active_list *new_head, struct active_list *node) {
+    struct active_list *prev;
+    if (!old_head || !new_head || !node)
+        return NULL;
+    if (old_head == new_head)
+        return node;
+    prev = active_list_prev(old_head, node);
+    active_list_add(new_head, node);
+    return prev;
+}
+
 static void list_head_clear (struct list_head *head) {
     struct active_list *next;
     struct list_head *n, *ptr;
index 28e909a6c80378c4fba247dd9f74044f90ba6a7e..3bedc2f228053a519c18c5d8e8a47af437d4e4a1 100644 (file)
@@ -33,6 +33,7 @@ void active_list_init(struct active_list *ptr);
 void active_list_clear(struct active_list *head);
 void active_list_add_depend(struct active_list *node, struct active_list *depend);
 void active_list_add(struct active_list *head, struct active_list *node);
+struct active_list *active_list_move_node(struct active_list *old_head, struct active_list *new_head, struct active_list *node);
 
 struct active_list * active_list_next(struct active_list *head, struct active_list *ptr);
 
index a837f32c0e6944fb9aa27b566c0bdd2c9d4a7afc..0861dfeb418a5cd2e8b4e6844c8e409ae7553cb8 100644 (file)
@@ -78,22 +78,36 @@ int opkg_upgrade_pkg(opkg_conf_t *conf, pkg_t *old)
     return opkg_install_pkg(conf, new,1);
 }
 
+
+static void pkg_hash_check_installed_pkg_helper(const char *pkg_name, void *entry, void *data) {
+    struct active_list * head = (struct active_list *) data;
+    abstract_pkg_t *ab_pkg = (abstract_pkg_t *)entry;
+    pkg_vec_t *pkg_vec = ab_pkg->pkgs;
+    int j;
+    if (pkg_vec) {
+        for (j = 0; j < pkg_vec->len; j++) {
+            pkg_t *pkg = pkg_vec->pkgs[j];
+            if (pkg->state_status == SS_INSTALLED || pkg->state_status == SS_UNPACKED) {
+                active_list_add(head, &pkg->list);
+            }
+        }
+    }
+}
+
 struct active_list * prepare_upgrade_list (opkg_conf_t *conf) {
-    pkg_vec_t *all;
     struct active_list * head = active_list_head_new();
-    int i;
+    struct active_list * all = active_list_head_new();
+    struct active_list *node=NULL;
 
     /* ensure all data is valid */
     pkg_info_preinstall_check (conf);
 
-    all = pkg_vec_alloc ();
-    pkg_hash_fetch_all_installed (&conf->pkg_hash, all);
-    for (i = 0; i < all->len; i++)
-    {
+    hash_table_foreach(&conf->pkg_hash, pkg_hash_check_installed_pkg_helper, all);
+    for (node=active_list_next(all,all); node; node = active_list_next(all, node)) {
         pkg_t *old, *new;
         int cmp;
 
-        old = all->pkgs[i];
+        old = list_entry(node, pkg_t, list);
         new = pkg_hash_fetch_best_installation_candidate_by_name(conf, old->name, NULL);
 
         if (new == NULL)
@@ -102,9 +116,9 @@ struct active_list * prepare_upgrade_list (opkg_conf_t *conf) {
         cmp = pkg_compare_versions(old, new);
 
         if ( cmp < 0 ) {
-           active_list_add(head, &old->list); 
+           node = active_list_move_node(all, head, &old->list); 
         }
     }
-    pkg_vec_free (all);
+    active_list_head_delete(all);
     return head;
 }