From 6d93635b94a93ff3188e88a46393083fbca7e603 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Wed, 17 Sep 2003 22:04:47 +0000 Subject: Refactor node db loading functions into a common one in ephy-node-db. 2003-09-18 Christian Persch * embed/ephy-favicon-cache.c: (ephy_favicon_cache_init): * embed/ephy-history.c: (ephy_history_init): * lib/ephy-node-db.c: (ephy_node_db_load_from_file): * lib/ephy-node-db.h: * lib/ephy-state.c: (ensure_states): * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init): Refactor node db loading functions into a common one in ephy-node-db. Switch to using xmlReader api. --- embed/ephy-favicon-cache.c | 29 ++++------------------------- 1 file changed, 4 insertions(+), 25 deletions(-) (limited to 'embed/ephy-favicon-cache.c') diff --git a/embed/ephy-favicon-cache.c b/embed/ephy-favicon-cache.c index 3c4bc6654..727094f6d 100644 --- a/embed/ephy-favicon-cache.c +++ b/embed/ephy-favicon-cache.c @@ -31,6 +31,7 @@ #include "ephy-node.h" #include "ephy-debug.h" +#define EPHY_FAVICON_CACHE_XML_ROOT "ephy_favicons_cache" #define EPHY_FAVICON_CACHE_XML_VERSION "1.0" #define EPHY_FAVICON_CACHE_OBSOLETE_DAYS 30 @@ -123,30 +124,6 @@ ephy_favicon_cache_new (void) return cache; } -static void -ephy_favicon_cache_load (EphyFaviconCache *eb) -{ - xmlDocPtr doc; - xmlNodePtr root, child; - - if (g_file_test (eb->priv->xml_file, G_FILE_TEST_EXISTS) == FALSE) - return; - - doc = xmlParseFile (eb->priv->xml_file); - g_assert (doc != NULL); - - root = xmlDocGetRootElement (doc); - - for (child = root->children; child != NULL; child = child->next) - { - EphyNode *node; - - node = ephy_node_new_from_xml (eb->priv->db, child); - } - - xmlFreeDoc (doc); -} - static gboolean icon_is_obsolete (EphyNode *node, GDate *now) { @@ -304,7 +281,9 @@ ephy_favicon_cache_init (EphyFaviconCache *cache) (EphyNodeCallback) icons_removed_cb, G_OBJECT (cache)); - ephy_favicon_cache_load (cache); + ephy_node_db_load_from_file (cache->priv->db, cache->priv->xml_file, + EPHY_FAVICON_CACHE_XML_ROOT, + EPHY_FAVICON_CACHE_XML_VERSION); } static gboolean -- cgit v1.2.3