From 5537132932e9cbb71229523c8bafa0051f2ba10d Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Fri, 23 Jan 2004 21:03:07 +0000 Subject: build new sources 2004-01-23 JP Rosevear * Makefile.am: build new sources * e-folder-map.[hc]: builds a list of 1.4 folder paths of a certain type svn path=/trunk/; revision=24389 --- e-util/ChangeLog | 7 ++ e-util/Makefile.am | 2 + e-util/e-folder-map.c | 188 ++++++++++++++++++++++++++++++++++++++++++++++++++ e-util/e-folder-map.h | 35 ++++++++++ 4 files changed, 232 insertions(+) create mode 100644 e-util/e-folder-map.c create mode 100644 e-util/e-folder-map.h diff --git a/e-util/ChangeLog b/e-util/ChangeLog index c283750bdd..a9455307ee 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,10 @@ +2004-01-23 JP Rosevear + + * Makefile.am: build new sources + + * e-folder-map.[hc]: builds a list of 1.4 folder paths of a + certain type + 2004-01-20 JP Rosevear * Makefile.am: don't build dead files diff --git a/e-util/Makefile.am b/e-util/Makefile.am index 18e649cdfb..b88b20db2e 100644 --- a/e-util/Makefile.am +++ b/e-util/Makefile.am @@ -22,6 +22,7 @@ eutilinclude_HEADERS = \ e-corba-utils.h \ e-dialog-utils.h \ e-dialog-widgets.h \ + e-folder-map.h \ e-gtk-utils.h \ e-gui-utils.h \ e-host-utils.h \ @@ -50,6 +51,7 @@ libeutil_la_SOURCES = \ e-account-list.c \ e-account.c \ e-bconf-map.c \ + e-folder-map.c \ e-categories-config.c \ e-categories-master-list-wombat.c \ e-component-listener.c \ diff --git a/e-util/e-folder-map.c b/e-util/e-folder-map.c new file mode 100644 index 0000000000..e2297cefdc --- /dev/null +++ b/e-util/e-folder-map.c @@ -0,0 +1,188 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Authors: Jeffrey Stedfast + * + * Copyright 2004 Ximian, Inc. (www.ximian.com) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. + * + */ + + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include "e-folder-map.h" + +#define d(x) x + +static gboolean +is_type_folder (const char *metadata, const char *search_type) +{ + xmlNodePtr node; + xmlDocPtr doc; + char *type; + + if (!(doc = xmlParseFile (metadata))) { + g_warning ("Cannot parse `%s'", metadata); + return FALSE; + } + + if (!(node = xmlDocGetRootElement (doc))) { + g_warning ("`%s' corrupt: document contains no root node", metadata); + xmlFreeDoc (doc); + return FALSE; + } + + if (!node->name || strcmp (node->name, "efolder") != 0) { + g_warning ("`%s' corrupt: root node is not 'efolder'", metadata); + xmlFreeDoc (doc); + return FALSE; + } + + node = node->children; + while (node != NULL) { + if (node->name && !strcmp (node->name, "type")) { + type = xmlNodeGetContent (node); + if (!strcmp (type, search_type)) { + xmlFreeDoc (doc); + xmlFree (type); + + return TRUE; + } + + xmlFree (type); + + break; + } + + node = node->next; + } + + xmlFreeDoc (doc); + + return FALSE; +} + +static void +e_folder_map_dir (const char *dirname, const char *type, GSList **dir_list) +{ + struct dirent *dent; + char *path, *name; + struct stat st; + DIR *dir; + + path = g_strdup_printf ("%s/folder-metadata.xml", dirname); + if (stat (path, &st) == -1 || !S_ISREG (st.st_mode)) { + g_free (path); + return; + } + + if (!is_type_folder (path, type)) { + g_free (path); + goto try_subdirs; + } + + d(g_message ("Found '%s'", dirname)); + *dir_list = g_slist_prepend (*dir_list, g_strdup (dirname)); + + g_free (path); + + try_subdirs: + + path = g_strdup_printf ("%s/subfolders", dirname); + if (stat (path, &st) == -1 || !S_ISDIR (st.st_mode)) { + g_free (path); + return; + } + + if (!(dir = opendir (path))) { + g_warning ("cannot open `%s': %s", path, strerror (errno)); + g_free (path); + return; + } + + while ((dent = readdir (dir))) { + char *full_path; + + if (dent->d_name[0] == '.') + continue; + + full_path = g_strdup_printf ("%s/%s", path, dent->d_name); + if (stat (full_path, &st) == -1 || !S_ISDIR (st.st_mode)) { + g_free (full_path); + continue; + } + + name = g_strdup_printf ("%s/%s", full_path, dent->d_name); + e_folder_map_dir (full_path, name, dir_list); + g_free (full_path); + g_free (name); + } + + closedir (dir); + + g_free (path); +} + +GSList * +e_folder_map_local_folders (char *local_dir, char *type) +{ + struct dirent *dent; + struct stat st; + DIR *dir; + GSList *dir_list = NULL; + + if (!(dir = opendir (local_dir))) { + g_warning ("cannot open `%s': %s", local_dir, strerror (errno)); + return NULL; + } + + while ((dent = readdir (dir))) { + char *full_path; + + if (dent->d_name[0] == '.') + continue; + + full_path = g_build_filename (local_dir, dent->d_name, NULL); + d(g_message ("Looking in %s", full_path)); + if (stat (full_path, &st) == -1 || !S_ISDIR (st.st_mode)) { + g_free (full_path); + continue; + } + + e_folder_map_dir (full_path, type, &dir_list); + + g_free (full_path); + } + + closedir (dir); + + return dir_list; +} diff --git a/e-util/e-folder-map.h b/e-util/e-folder-map.h new file mode 100644 index 0000000000..aeb5b39811 --- /dev/null +++ b/e-util/e-folder-map.h @@ -0,0 +1,35 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Authors: Jeffrey Stedfast + * + * Copyright 2004 Ximian, Inc. (www.ximian.com) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. + * + */ + + +#ifndef __E_FOLDER_MAP_H__ +#define __E_FOLDER_MAP_H__ + +#include + +G_BEGIN_DECLS + +GSList *e_folder_map_local_folders (char *local_dir, char *type); + +G_END_DECLS + +#endif /* __E_FOLDER_MAP_H__ */ -- cgit v1.2.3