r4868 - trunk/src/target/opkg/libopkg
tick at docs.openmoko.org
tick at docs.openmoko.org
Sun Dec 14 12:10:32 CET 2008
Author: tick
Date: 2008-12-14 12:10:32 +0100 (Sun, 14 Dec 2008)
New Revision: 4868
Modified:
trunk/src/target/opkg/libopkg/active_list.c
trunk/src/target/opkg/libopkg/active_list.h
trunk/src/target/opkg/libopkg/opkg_upgrade.c
Log:
opkg: using active_list to list all the installed pkgs.
adding function that allows node move from one list to another
Modified: trunk/src/target/opkg/libopkg/active_list.c
===================================================================
--- trunk/src/target/opkg/libopkg/active_list.c 2008-12-14 11:10:14 UTC (rev 4867)
+++ trunk/src/target/opkg/libopkg/active_list.c 2008-12-14 11:10:32 UTC (rev 4868)
@@ -73,6 +73,18 @@
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;
Modified: trunk/src/target/opkg/libopkg/active_list.h
===================================================================
--- trunk/src/target/opkg/libopkg/active_list.h 2008-12-14 11:10:14 UTC (rev 4867)
+++ trunk/src/target/opkg/libopkg/active_list.h 2008-12-14 11:10:32 UTC (rev 4868)
@@ -33,6 +33,7 @@
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);
Modified: trunk/src/target/opkg/libopkg/opkg_upgrade.c
===================================================================
--- trunk/src/target/opkg/libopkg/opkg_upgrade.c 2008-12-14 11:10:14 UTC (rev 4867)
+++ trunk/src/target/opkg/libopkg/opkg_upgrade.c 2008-12-14 11:10:32 UTC (rev 4868)
@@ -78,22 +78,36 @@
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 @@
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;
}
More information about the commitlog
mailing list