added parsing xml
[livewp] / applet / src / livewp-exthemes.c
1 /* vim: set sw=4 ts=4 et: */
2 /*
3  * This file is part of Live Wallpaper (livewp)
4  * 
5  * Copyright (C) 2010 Vlad Vasiliev
6  * Copyright (C) 2010 Tanya Makova
7  *       for the code
8  * 
9  * This software is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1 of
12  * the License, or (at your option) any later version.
13  * 
14  * This software is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  * 
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this software; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22  * 02110-1301 USA
23 */
24 /*******************************************************************************/
25 #include "livewp-exthemes.h"
26 /*******************************************************************************/
27
28 GHashTable  * 
29 parse_theme(gchar *file){
30     GHashTable  *hash;
31     xmlDoc *doc;
32     xmlNode *root, *first_child, *node;
33     doc = xmlReadFile(file, NULL, 0);
34     root = xmlDocGetRootElement(doc);
35     first_child = root->children;
36     hash = g_hash_table_new(g_str_hash, g_str_equal);
37     for (node = first_child; node; node = node->next){
38         if (node->type == XML_ELEMENT_NODE){ 
39             fprintf(stderr, "%s => %s\n", node->name, xmlNodeGetContent(node));
40             g_hash_table_insert(hash, node->name, xmlNodeGetContent(node));
41         }
42     }
43     xmlFreeDoc(doc);
44     xmlCleanupParser();
45     //g_hash_table_insert(hash, g_strdup("name"),  g_strdup("Xsnow"));
46     //g_hash_table_insert(hash, g_strdup("exec_path"),  g_strdup("/usr/bin/xsnow"));
47     return hash;
48 }
49
50 GSList *
51 get_list_exthemes(void){
52     Dirent  *dp;
53     DIR     *dir_fd;
54     GSList *store = NULL;
55     
56     dir_fd = opendir(EXTHEME_PATH);
57     if(dir_fd){
58
59         while((dp = readdir(dir_fd))){
60             
61             if(!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
62                 continue;
63             if(dp->d_type == DT_REG || dp->d_type == DT_LNK){
64                 store = g_slist_append(store, parse_theme(g_strdup_printf("%s%s", EXTHEME_PATH, dp->d_name)));
65             }
66         }
67         closedir(dir_fd);
68     }
69     return store;
70 }