08762791e4c2b2c00e3f0b6044266fb0a2db7d87
[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 && xmlStrcmp(node->name, "param")){
39           //  child = 
40         //}
41         if (node->type == XML_ELEMENT_NODE){ 
42             //fprintf(stderr, "%s => %s\n", node->name, xmlNodeGetContent(node));
43             g_hash_table_insert(hash, g_strdup((gchar*)node->name), g_strdup((gchar*)xmlNodeGetContent(node)));
44         }
45     }
46     if (!(g_hash_table_lookup(hash, "category")))
47         g_hash_table_insert(hash, g_strdup("category"), g_strdup("Unknown"));  
48     if (!(g_hash_table_lookup(hash, "name")))
49         g_hash_table_insert(hash, g_strdup("name"), g_strdup("Unknown"));
50
51     xmlFreeDoc(doc);
52     xmlCleanupParser();
53     return hash;
54 }
55
56 /*******************************************************************************/
57 gint compar (gpointer a, gpointer b){
58     return strcmp( (g_hash_table_lookup(a, "name")), (g_hash_table_lookup(b, "name")) );
59 }
60
61
62 GSList *
63 get_list_exthemes(void){
64     Dirent  *dp;
65     DIR     *dir_fd;
66     GSList *store = NULL;
67     
68     dir_fd = opendir(EXTHEME_PATH);
69     if(dir_fd){
70
71         while((dp = readdir(dir_fd))){
72             
73             if(!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
74                 continue;
75             /* TO DO read only *.xml files */
76             if(dp->d_type == DT_REG || dp->d_type == DT_LNK){
77                 store = g_slist_append(store, parse_theme(g_strdup_printf("%s%s", EXTHEME_PATH, dp->d_name)));
78             }
79         }
80         closedir(dir_fd);
81     }
82     store = g_slist_sort(store, (GCompareFunc)compar);
83     return store;
84 }