Mercurial > pidgin.yaz
annotate src/prefs.c @ 5793:952710ac6635
[gaim-migrate @ 6218]
Removed the double-underscore before identifiers. These are reserved by
ANSI C.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Sat, 07 Jun 2003 06:41:31 +0000 |
parents | 2adc29c88a45 |
children | fb9209877f37 |
rev | line source |
---|---|
1 | 1 /* |
2 * gaim | |
3 * | |
5440 | 4 * Copyright (C) 2003, Nathan Walp <faceprint@faceprint.com> |
1 | 5 * |
6 * This program is free software; you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; either version 2 of the License, or | |
9 * (at your option) any later version. | |
10 * | |
11 * This program is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
19 * | |
20 */ | |
21 | |
349
b402a23f35df
[gaim-migrate @ 359]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
340
diff
changeset
|
22 #ifdef HAVE_CONFIG_H |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2074
diff
changeset
|
23 #include <config.h> |
349
b402a23f35df
[gaim-migrate @ 359]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
340
diff
changeset
|
24 #endif |
5440 | 25 |
1 | 26 #include <string.h> |
27 #include <stdio.h> | |
28 #include <stdlib.h> | |
5440 | 29 #include <sys/stat.h> |
30 #include <sys/types.h> | |
31 #include <glib.h> | |
32 #include "prefs.h" | |
33 #include "debug.h" | |
34 #include "util.h" | |
3366 | 35 |
4026
a997156437b6
[gaim-migrate @ 4230]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4010
diff
changeset
|
36 #ifdef _WIN32 |
a997156437b6
[gaim-migrate @ 4230]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4010
diff
changeset
|
37 #include "win32dep.h" |
a997156437b6
[gaim-migrate @ 4230]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4010
diff
changeset
|
38 #endif |
a997156437b6
[gaim-migrate @ 4230]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4010
diff
changeset
|
39 |
5440 | 40 struct pref_cb { |
41 GaimPrefCallback func; | |
42 gpointer data; | |
43 guint id; | |
44 }; | |
45 | |
46 struct gaim_pref { | |
47 GaimPrefType type; | |
48 char *name; | |
49 union { | |
50 gpointer generic; | |
51 gboolean boolean; | |
52 int integer; | |
53 char *string; | |
5561 | 54 GList *stringlist; |
5440 | 55 } value; |
56 GSList *callbacks; | |
57 struct gaim_pref *parent; | |
58 struct gaim_pref *sibling; | |
59 struct gaim_pref *first_child; | |
60 }; | |
3366 | 61 |
5440 | 62 static GHashTable *prefs_hash = NULL; |
63 | |
64 static struct gaim_pref prefs = { GAIM_PREF_NONE, NULL, {NULL}, NULL, | |
65 NULL, NULL, NULL }; | |
66 | |
5534 | 67 static guint prefs_save_timer = 0; |
68 static gboolean prefs_is_loaded = FALSE; | |
69 | |
70 | |
71 static gboolean prefs_save_callback(gpointer who_cares) { | |
72 gaim_prefs_sync(); | |
73 prefs_save_timer = 0; | |
74 return FALSE; | |
75 } | |
76 | |
77 static void schedule_prefs_save() { | |
78 if(!prefs_save_timer) | |
79 prefs_save_timer = g_timeout_add(5000, prefs_save_callback, NULL); | |
80 } | |
81 | |
82 static void prefs_save_cb(const char *name, GaimPrefType type, gpointer val, | |
83 gpointer user_data) { | |
84 | |
85 if(!prefs_is_loaded) | |
86 return; | |
87 | |
88 gaim_debug(GAIM_DEBUG_MISC, "prefs", "%s changed, scheduling save.\n", name); | |
89 | |
90 schedule_prefs_save(); | |
91 } | |
92 | |
5440 | 93 void gaim_prefs_init() { |
94 prefs_hash = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL); | |
95 | |
5534 | 96 gaim_prefs_connect_callback("/", prefs_save_cb, NULL); |
97 | |
5529
e7747cae9710
[gaim-migrate @ 5929]
Christian Hammond <chipx86@chipx86.com>
parents:
5458
diff
changeset
|
98 gaim_prefs_add_none("/core"); |
5550
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
99 gaim_prefs_add_none("/plugins"); |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
100 gaim_prefs_add_none("/plugins/core"); |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
101 gaim_prefs_add_none("/plugins/lopl"); |
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
102 gaim_prefs_add_none("/plugins/prpl"); |
5529
e7747cae9710
[gaim-migrate @ 5929]
Christian Hammond <chipx86@chipx86.com>
parents:
5458
diff
changeset
|
103 |
5440 | 104 /* XXX: this is where you would want to put prefs declarations */ |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
105 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
106 /* Away */ |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
107 gaim_prefs_add_none("/core/away"); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
108 gaim_prefs_add_bool("/core/away/away_when_idle", TRUE); |
5550
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
109 gaim_prefs_add_int("/core/away/mins_before_away", 1); |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
110 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
111 /* Away -> Auto Response */ |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
112 gaim_prefs_add_none("/core/away/auto_response"); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
113 gaim_prefs_add_bool("/core/away/auto_response/enabled", TRUE); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
114 gaim_prefs_add_bool("/core/away/auto_response/in_active_conv", TRUE); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
115 gaim_prefs_add_bool("/core/away/auto_response/idle_only", FALSE); |
5550
b18c2a37cc96
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
116 gaim_prefs_add_int("/core/away/auto_response/sec_before_resend", 60); |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
117 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
118 /* Buddies */ |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
119 gaim_prefs_add_none("/core/buddies"); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
120 gaim_prefs_add_bool("/core/buddies/use_server_alias", TRUE); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
121 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
122 /* Conversations */ |
5539
de09863bd4b5
[gaim-migrate @ 5939]
Christian Hammond <chipx86@chipx86.com>
parents:
5534
diff
changeset
|
123 gaim_prefs_add_none("/core/conversations"); |
de09863bd4b5
[gaim-migrate @ 5939]
Christian Hammond <chipx86@chipx86.com>
parents:
5534
diff
changeset
|
124 gaim_prefs_add_bool("/core/conversations/send_urls_as_links", TRUE); |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
125 gaim_prefs_add_bool("/core/conversations/away_back_on_send", TRUE); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
126 gaim_prefs_add_bool("/core/conversations/use_alias_for_title", TRUE); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
127 gaim_prefs_add_bool("/core/conversations/combine_chat_im", FALSE); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
128 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
129 /* Conversations -> Chat */ |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
130 gaim_prefs_add_none("/core/conversations/chat"); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
131 gaim_prefs_add_bool("/core/conversations/chat/show_join", TRUE); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
132 gaim_prefs_add_bool("/core/conversations/chat/show_leave", TRUE); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
133 gaim_prefs_add_bool("/core/conversations/chat/show_nick_change", TRUE); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
134 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
135 /* Conversations -> IM */ |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
136 gaim_prefs_add_none("/core/conversations/im"); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
137 gaim_prefs_add_bool("/core/conversations/im/show_login", TRUE); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
138 gaim_prefs_add_bool("/core/conversations/im/send_typing", TRUE); |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
139 |
5440 | 140 } |
3366 | 141 |
5787
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
142 static char * |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
143 get_path_dirname(const char *name) |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
144 { |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
145 char *c, *str; |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
146 |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
147 str = g_strdup(name); |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
148 |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
149 if ((c = strrchr(str, '/')) != NULL) { |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
150 *c = '\0'; |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
151 |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
152 if (*str == '\0') { |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
153 g_free(str); |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
154 |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
155 str = g_strdup("/"); |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
156 } |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
157 } |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
158 else { |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
159 g_free(str); |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
160 |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
161 str = g_strdup("."); |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
162 } |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
163 |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
164 return str; |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
165 } |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
166 |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
167 static char * |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
168 get_path_basename(const char *name) |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
169 { |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
170 const char *c; |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
171 |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
172 if ((c = strrchr(name, '/')) != NULL) |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
173 return g_strdup(c + 1); |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
174 |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
175 return g_strdup(name); |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
176 } |
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
177 |
5440 | 178 static char *pref_full_name(struct gaim_pref *pref) { |
179 GString *name; | |
180 struct gaim_pref *parent; | |
181 if(!pref) | |
182 return NULL; | |
183 | |
184 if(pref == &prefs) | |
185 return g_strdup("/"); | |
186 | |
187 name = g_string_new(pref->name); | |
188 parent = pref->parent; | |
3366 | 189 |
5440 | 190 for(parent = pref->parent; parent && parent->name; parent = parent->parent) { |
191 name = g_string_prepend_c(name, '/'); | |
192 name = g_string_prepend(name, parent->name); | |
193 } | |
194 g_string_free(name, FALSE); | |
195 return name->str; | |
196 } | |
197 | |
198 static struct gaim_pref *find_pref(const char *name) | |
199 { | |
200 if(!name || name[0] != '/') { | |
201 return NULL; | |
202 } else if(name[1] == '\0') { | |
203 return &prefs; | |
204 } else { | |
205 return g_hash_table_lookup(prefs_hash, name); | |
206 } | |
207 } | |
208 | |
209 static struct gaim_pref *find_pref_parent(const char *name) | |
210 { | |
5787
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
211 char *parent_name = get_path_dirname(name); |
5440 | 212 struct gaim_pref *ret = &prefs; |
213 | |
214 if(strcmp(parent_name, "/")) { | |
215 ret = find_pref(parent_name); | |
216 } | |
1026 | 217 |
5440 | 218 g_free(parent_name); |
219 return ret; | |
220 } | |
221 | |
222 static void free_pref_value(struct gaim_pref *pref) { | |
223 switch(pref->type) { | |
224 case GAIM_PREF_BOOLEAN: | |
225 pref->value.boolean = FALSE; | |
226 case GAIM_PREF_INT: | |
227 pref->value.integer = 0; | |
228 break; | |
229 case GAIM_PREF_STRING: | |
230 g_free(pref->value.string); | |
231 pref->value.string = NULL; | |
232 break; | |
5561 | 233 case GAIM_PREF_STRING_LIST: |
234 { | |
235 GList *tmp; | |
236 for(tmp = pref->value.stringlist; tmp; tmp = tmp->next) | |
237 g_free(tmp->data); | |
238 | |
239 g_list_free(pref->value.stringlist); | |
240 } break; | |
5440 | 241 case GAIM_PREF_NONE: |
242 break; | |
243 } | |
244 } | |
245 | |
246 static struct gaim_pref *add_pref(GaimPrefType type, const char *name) { | |
247 struct gaim_pref *parent; | |
248 struct gaim_pref *me; | |
249 struct gaim_pref *sibling; | |
5458
156e65ca910f
[gaim-migrate @ 5846]
Christian Hammond <chipx86@chipx86.com>
parents:
5451
diff
changeset
|
250 char *my_name; |
5440 | 251 |
252 parent = find_pref_parent(name); | |
253 | |
254 if(!parent) | |
255 return NULL; | |
1525
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
256 |
5787
2adc29c88a45
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
257 my_name = get_path_basename(name); |
5458
156e65ca910f
[gaim-migrate @ 5846]
Christian Hammond <chipx86@chipx86.com>
parents:
5451
diff
changeset
|
258 |
5440 | 259 for(sibling = parent->first_child; sibling; sibling = sibling->sibling) { |
260 if(!strcmp(sibling->name, my_name)) { | |
261 g_free(my_name); | |
262 return NULL; | |
263 } | |
264 } | |
265 | |
266 me = g_new0(struct gaim_pref, 1); | |
267 me->type = type; | |
268 me->name = my_name; | |
269 | |
270 me->parent = parent; | |
271 if(parent->first_child) { | |
272 /* blatant abuse of a for loop */ | |
273 for(sibling = parent->first_child; sibling->sibling; | |
274 sibling = sibling->sibling); | |
275 sibling->sibling = me; | |
276 } else { | |
277 parent->first_child = me; | |
278 } | |
279 | |
280 g_hash_table_insert(prefs_hash, g_strdup(name), (gpointer)me); | |
281 | |
282 return me; | |
283 } | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
284 |
5440 | 285 void gaim_prefs_add_none(const char *name) { |
286 add_pref(GAIM_PREF_NONE, name); | |
287 } | |
288 | |
289 void gaim_prefs_add_bool(const char *name, gboolean value) { | |
290 struct gaim_pref *pref = add_pref(GAIM_PREF_BOOLEAN, name); | |
291 | |
292 if(!pref) | |
293 return; | |
294 | |
295 pref->value.boolean = value; | |
296 } | |
3630 | 297 |
5440 | 298 void gaim_prefs_add_int(const char *name, int value) { |
299 struct gaim_pref *pref = add_pref(GAIM_PREF_INT, name); | |
300 | |
301 if(!pref) | |
302 return; | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
303 |
5440 | 304 pref->value.integer = value; |
305 } | |
306 | |
307 void gaim_prefs_add_string(const char *name, const char *value) { | |
308 struct gaim_pref *pref = add_pref(GAIM_PREF_STRING, name); | |
309 | |
310 if(!pref) | |
311 return; | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
312 |
5440 | 313 pref->value.string = g_strdup(value); |
314 } | |
315 | |
5561 | 316 void gaim_prefs_add_string_list(const char *name, GList *value) { |
317 struct gaim_pref *pref = add_pref(GAIM_PREF_STRING_LIST, name); | |
318 GList *tmp; | |
319 | |
320 if(!pref) | |
321 return; | |
322 | |
323 for(tmp = value; tmp; tmp = tmp->next) | |
324 pref->value.stringlist = g_list_append(pref->value.stringlist, | |
325 g_strdup(tmp->data)); | |
326 } | |
327 | |
5440 | 328 void remove_pref(struct gaim_pref *pref) { |
329 char *name; | |
330 | |
331 if(!pref || pref == &prefs) | |
332 return; | |
333 | |
334 if(pref->parent->first_child == pref) { | |
335 pref->parent->first_child = pref->sibling; | |
336 } else { | |
337 struct gaim_pref *sib = pref->parent->first_child; | |
338 while(sib->sibling != pref) | |
339 sib = sib->sibling; | |
340 sib->sibling = pref->sibling; | |
341 } | |
342 | |
343 name = pref_full_name(pref); | |
344 | |
345 g_hash_table_remove(prefs_hash, name); | |
346 g_free(name); | |
347 | |
348 free_pref_value(pref); | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
349 |
5440 | 350 g_slist_free(pref->callbacks); |
351 g_free(pref->name); | |
352 g_free(pref); | |
353 } | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
354 |
5440 | 355 void gaim_prefs_remove(const char *name) { |
356 struct gaim_pref *pref = find_pref(name); | |
357 struct gaim_pref *child, *child2; | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
358 |
5440 | 359 if(!pref) |
360 return; | |
361 child = pref->first_child; | |
362 while(child) { | |
363 child2 = child; | |
364 child = child->sibling; | |
365 remove_pref(child2); | |
366 } | |
367 | |
368 remove_pref(pref); | |
369 } | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
370 |
5440 | 371 void gaim_prefs_destroy() { |
372 gaim_prefs_remove("/"); | |
373 } | |
374 | |
375 static void do_callbacks(const char* name, struct gaim_pref *pref) { | |
376 GSList *cbs; | |
377 struct gaim_pref *cb_pref; | |
378 for(cb_pref = pref; cb_pref; cb_pref = cb_pref->parent) { | |
379 for(cbs = cb_pref->callbacks; cbs; cbs = cbs->next) { | |
380 struct pref_cb *cb = cbs->data; | |
381 cb->func(name, pref->type, pref->value.generic, cb->data); | |
4215 | 382 } |
383 } | |
1525
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
384 } |
ba8e6e211af5
[gaim-migrate @ 1535]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1455
diff
changeset
|
385 |
5684 | 386 void gaim_prefs_trigger_callback(const char *name) { |
387 struct gaim_pref *pref = find_pref(name); | |
388 | |
389 g_return_if_fail(pref != NULL); | |
390 do_callbacks(name, pref); | |
391 } | |
392 | |
5440 | 393 void gaim_prefs_set_generic(const char *name, gpointer value) { |
394 struct gaim_pref *pref = find_pref(name); | |
3366 | 395 |
5440 | 396 g_return_if_fail(pref != NULL); |
3500 | 397 |
5440 | 398 pref->value.generic = value; |
399 do_callbacks(name, pref); | |
3366 | 400 } |
401 | |
5440 | 402 void gaim_prefs_set_bool(const char *name, gboolean value) { |
403 struct gaim_pref *pref = find_pref(name); | |
4288 | 404 |
5533 | 405 if(pref) { |
406 g_return_if_fail(pref->type == GAIM_PREF_BOOLEAN); | |
4325 | 407 |
5533 | 408 if(pref->value.boolean != value) { |
409 pref->value.boolean = value; | |
410 do_callbacks(name, pref); | |
411 } | |
412 } else { | |
413 gaim_prefs_add_bool(name, value); | |
4288 | 414 } |
4324 | 415 } |
4325 | 416 |
5440 | 417 void gaim_prefs_set_int(const char *name, int value) { |
418 struct gaim_pref *pref = find_pref(name); | |
4325 | 419 |
5533 | 420 if(pref) { |
421 g_return_if_fail(pref->type == GAIM_PREF_INT); | |
4325 | 422 |
5533 | 423 if(pref->value.integer != value) { |
424 pref->value.integer = value; | |
425 do_callbacks(name, pref); | |
426 } | |
427 } else { | |
428 gaim_prefs_add_int(name, value); | |
5440 | 429 } |
4326 | 430 } |
431 | |
5451 | 432 void gaim_prefs_set_string(const char *name, const char *value) { |
5440 | 433 struct gaim_pref *pref = find_pref(name); |
4325 | 434 |
5533 | 435 if(pref) { |
436 g_return_if_fail(pref->type == GAIM_PREF_STRING); | |
4325 | 437 |
5533 | 438 if(strcmp(pref->value.string, value)) { |
439 g_free(pref->value.string); | |
440 pref->value.string = g_strdup(value); | |
441 do_callbacks(name, pref); | |
442 } | |
443 } else { | |
444 gaim_prefs_add_string(name, value); | |
4325 | 445 } |
446 } | |
447 | |
5561 | 448 void gaim_prefs_set_string_list(const char *name, GList *value) { |
449 struct gaim_pref *pref = find_pref(name); | |
450 if(pref) { | |
451 GList *tmp; | |
452 for(tmp = pref->value.stringlist; tmp; tmp = tmp->next) | |
453 g_free(tmp->data); | |
454 | |
455 g_list_free(pref->value.stringlist); | |
456 pref->value.stringlist = NULL; | |
457 | |
458 for(tmp = value; tmp; tmp = tmp->next) | |
459 pref->value.stringlist = g_list_append(pref->value.stringlist, | |
460 g_strdup(tmp->data)); | |
461 | |
462 } else { | |
463 gaim_prefs_add_string_list(name, value); | |
464 } | |
465 } | |
466 | |
5440 | 467 gpointer gaim_prefs_get_generic(const char *name) { |
468 struct gaim_pref *pref = find_pref(name); | |
4325 | 469 |
5440 | 470 g_return_val_if_fail(pref != NULL, NULL); |
4288 | 471 |
5440 | 472 return pref->value.generic; |
4288 | 473 } |
474 | |
5440 | 475 gboolean gaim_prefs_get_bool(const char *name) { |
476 struct gaim_pref *pref = find_pref(name); | |
3427 | 477 |
5440 | 478 g_return_val_if_fail(pref != NULL, FALSE); |
479 g_return_val_if_fail(pref->type == GAIM_PREF_BOOLEAN, FALSE); | |
3472 | 480 |
5440 | 481 return pref->value.boolean; |
3366 | 482 } |
483 | |
5440 | 484 int gaim_prefs_get_int(const char *name) { |
485 struct gaim_pref *pref = find_pref(name); | |
3500 | 486 |
5440 | 487 g_return_val_if_fail(pref != NULL, 0); |
488 g_return_val_if_fail(pref->type == GAIM_PREF_INT, 0); | |
3366 | 489 |
5440 | 490 return pref->value.integer; |
3366 | 491 } |
492 | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
493 const char *gaim_prefs_get_string(const char *name) { |
5440 | 494 struct gaim_pref *pref = find_pref(name); |
3366 | 495 |
5440 | 496 g_return_val_if_fail(pref != NULL, NULL); |
497 g_return_val_if_fail(pref->type == GAIM_PREF_STRING, NULL); | |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
498 |
5440 | 499 return pref->value.string; |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
500 } |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
501 |
5561 | 502 GList *gaim_prefs_get_string_list(const char *name) { |
503 struct gaim_pref *pref = find_pref(name); | |
504 GList *ret = NULL, *tmp; | |
505 | |
506 g_return_val_if_fail(pref != NULL, NULL); | |
507 g_return_val_if_fail(pref->type == GAIM_PREF_STRING_LIST, NULL); | |
508 | |
509 for(tmp = pref->value.stringlist; tmp; tmp = tmp->next) | |
510 ret = g_list_append(ret, g_strdup(tmp->data)); | |
511 | |
512 return ret; | |
513 } | |
514 | |
5440 | 515 guint gaim_prefs_connect_callback(const char *name, GaimPrefCallback func, gpointer data) |
516 { | |
517 struct gaim_pref *pref = find_pref(name); | |
518 struct pref_cb *cb; | |
519 static guint cb_id = 0; | |
3366 | 520 |
5440 | 521 if(!pref) |
522 return 0; | |
3366 | 523 |
5440 | 524 cb = g_new0(struct pref_cb, 1); |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
525 |
5440 | 526 cb->func = func; |
527 cb->data = data; | |
528 cb->id = ++cb_id; | |
4991 | 529 |
5440 | 530 pref->callbacks = g_slist_append(pref->callbacks, cb); |
3366 | 531 |
5440 | 532 return cb->id; |
3366 | 533 } |
534 | |
5440 | 535 gboolean disco_callback_helper(struct gaim_pref *pref, guint callback_id) { |
536 GSList *cbs; | |
537 struct gaim_pref *child; | |
2254 | 538 |
5440 | 539 if(!pref) |
540 return FALSE; | |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1840
diff
changeset
|
541 |
5440 | 542 for(cbs = pref->callbacks; cbs; cbs = cbs->next) { |
543 struct pref_cb *cb = cbs->data; | |
544 if(cb->id == callback_id) { | |
545 pref->callbacks = g_slist_remove(pref->callbacks, cb); | |
546 g_free(cb); | |
547 return TRUE; | |
4428 | 548 } |
549 } | |
550 | |
5440 | 551 for(child = pref->first_child; child; child = child->sibling) { |
552 if(disco_callback_helper(child, callback_id)) | |
553 return TRUE; | |
4428 | 554 } |
4451
ce5b64fac95d
[gaim-migrate @ 4726]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4449
diff
changeset
|
555 |
5440 | 556 return FALSE; |
1757
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
557 } |
3dfe4aefd366
[gaim-migrate @ 1767]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1755
diff
changeset
|
558 |
5440 | 559 void gaim_prefs_disconnect_callback(guint callback_id) { |
560 disco_callback_helper(&prefs, callback_id); | |
2262
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
561 } |
9c8f353331e7
[gaim-migrate @ 2272]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2254
diff
changeset
|
562 |
5440 | 563 static void gaim_prefs_write(FILE *f, struct gaim_pref *pref, int depth) { |
564 struct gaim_pref *tmp; | |
565 char *esc; | |
566 int i; | |
3500 | 567 |
5440 | 568 if(!pref) { |
569 pref = &prefs; | |
3551 | 570 |
5440 | 571 fprintf(f, "<?xml version='1.0' encoding='UTF-8' ?>\n"); |
572 fprintf(f, "<pref name='/'"); | |
573 } else { | |
574 for(i=0; i<depth; i++) | |
575 fprintf(f, "\t"); | |
576 esc = g_markup_escape_text(pref->name, -1); | |
577 fprintf(f, "<pref name='%s'", esc); | |
578 g_free(esc); | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
579 } |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
580 |
5440 | 581 switch(pref->type) { |
582 case GAIM_PREF_NONE: | |
583 break; | |
584 case GAIM_PREF_BOOLEAN: | |
585 fprintf(f, " type='bool' value='%d'", pref->value.boolean); | |
586 break; | |
587 case GAIM_PREF_INT: | |
588 fprintf(f, " type='int' value='%d'", pref->value.integer); | |
589 break; | |
590 case GAIM_PREF_STRING: | |
591 esc = g_markup_escape_text(pref->value.string, -1); | |
592 fprintf(f, " type='string' value='%s'", esc); | |
593 g_free(esc); | |
594 break; | |
5561 | 595 case GAIM_PREF_STRING_LIST: |
596 fprintf(f, " type='stringlist'"); | |
597 break; | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
598 } |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
599 |
5561 | 600 if(pref->first_child || pref->type == GAIM_PREF_STRING_LIST) { |
5440 | 601 fprintf(f, ">\n"); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
602 |
5440 | 603 for(tmp = pref->first_child; tmp; tmp = tmp->sibling) |
604 gaim_prefs_write(f, tmp, depth+1); | |
5561 | 605 |
606 if(pref->type == GAIM_PREF_STRING_LIST) { | |
607 GList *tmp2; | |
608 for(tmp2 = pref->value.stringlist; tmp2; tmp2 = tmp2->next) { | |
609 for(i=0; i<depth+1; i++) | |
610 fprintf(f, "\t"); | |
611 esc = g_markup_escape_text(tmp2->data, -1); | |
612 fprintf(f, "<item value='%s' />\n", esc); | |
613 g_free(esc); | |
614 } | |
615 } | |
616 | |
5440 | 617 for(i=0; i<depth; i++) |
618 fprintf(f, "\t"); | |
619 fprintf(f, "</pref>\n"); | |
620 } else { | |
621 fprintf(f, " />\n"); | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
622 } |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
623 } |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
624 |
5440 | 625 void gaim_prefs_sync() { |
626 FILE *file; | |
627 const char *user_dir = gaim_user_dir(); | |
628 char *filename; | |
629 char *filename_real; | |
3551 | 630 |
5534 | 631 if(!prefs_is_loaded) { |
632 gaim_debug(GAIM_DEBUG_WARNING, "prefs", "prefs saved before loading! scheduling save.\n"); | |
633 schedule_prefs_save(); /* schedule a save for after we read in */ | |
634 return; | |
635 } | |
636 | |
5440 | 637 if(!user_dir) |
638 return; | |
3551 | 639 |
5534 | 640 gaim_debug(GAIM_DEBUG_INFO, "prefs", "writing prefs out to disk.\n"); |
641 | |
5440 | 642 file = fopen(user_dir, "r"); |
643 if(!file) | |
644 mkdir(user_dir, S_IRUSR | S_IWUSR | S_IXUSR); | |
645 else | |
646 fclose(file); | |
3551 | 647 |
5440 | 648 filename = g_build_filename(user_dir, "prefs.xml.save", NULL); |
3551 | 649 |
5440 | 650 if((file = fopen(filename, "w"))) { |
651 gaim_prefs_write(file, NULL, 0); | |
652 fclose(file); | |
653 chmod(filename, S_IRUSR | S_IWUSR); | |
654 } else { | |
655 gaim_debug(GAIM_DEBUG_ERROR, "prefs", "Unable to write %s\n", | |
656 filename); | |
657 } | |
3551 | 658 |
5440 | 659 filename_real = g_build_filename(user_dir, "prefs.xml", NULL); |
660 if(rename(filename, filename_real) < 0) | |
661 gaim_debug(GAIM_DEBUG_ERROR, "prefs", "Error renaming %s to %s\n", | |
662 filename, filename_real); | |
3551 | 663 |
5440 | 664 g_free(filename); |
665 g_free(filename_real); | |
3551 | 666 } |
667 | |
5440 | 668 static GList *prefs_stack = NULL; |
873
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
669 |
5440 | 670 static void prefs_start_element_handler (GMarkupParseContext *context, |
671 const gchar *element_name, | |
672 const gchar **attribute_names, | |
673 const gchar **attribute_values, | |
674 gpointer user_data, | |
675 GError **error) { | |
676 GaimPrefType pref_type = GAIM_PREF_NONE; | |
677 int i; | |
678 const char *pref_name = NULL, *pref_value = NULL; | |
679 GString *pref_name_full; | |
680 GList *tmp; | |
3366 | 681 |
5561 | 682 if(strcmp(element_name, "pref") && strcmp(element_name, "item")) |
5440 | 683 return; |
3500 | 684 |
5440 | 685 for(i = 0; attribute_names[i]; i++) { |
686 if(!strcmp(attribute_names[i], "name")) { | |
687 pref_name = attribute_values[i]; | |
688 } else if(!strcmp(attribute_names[i], "type")) { | |
689 if(!strcmp(attribute_values[i], "bool")) | |
690 pref_type = GAIM_PREF_BOOLEAN; | |
691 else if(!strcmp(attribute_values[i], "int")) | |
692 pref_type = GAIM_PREF_INT; | |
693 else if(!strcmp(attribute_values[i], "string")) | |
694 pref_type = GAIM_PREF_STRING; | |
5561 | 695 else if(!strcmp(attribute_values[i], "stringlist")) |
696 pref_type = GAIM_PREF_STRING_LIST; | |
5440 | 697 else |
698 return; | |
699 } else if(!strcmp(attribute_names[i], "value")) { | |
700 pref_value = attribute_values[i]; | |
701 } | |
702 } | |
873
789df4b47508
[gaim-migrate @ 883]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
864
diff
changeset
|
703 |
5561 | 704 if(!strcmp(element_name, "item")) { |
705 struct gaim_pref *pref = find_pref(prefs_stack->data); | |
706 if(pref) { | |
707 pref->value.stringlist = g_list_append(pref->value.stringlist, | |
708 g_strdup(pref_value)); | |
709 } | |
5440 | 710 return; |
5561 | 711 } else if(!pref_name || !strcmp(pref_name, "/")) { |
712 return; | |
713 } | |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
714 |
5440 | 715 pref_name_full = g_string_new(pref_name); |
652
4d3285caa191
[gaim-migrate @ 662]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
619
diff
changeset
|
716 |
5529
e7747cae9710
[gaim-migrate @ 5929]
Christian Hammond <chipx86@chipx86.com>
parents:
5458
diff
changeset
|
717 for(tmp = prefs_stack; tmp; tmp = tmp->next) { |
5440 | 718 pref_name_full = g_string_prepend_c(pref_name_full, '/'); |
719 pref_name_full = g_string_prepend(pref_name_full, tmp->data); | |
720 } | |
1170 | 721 |
5440 | 722 pref_name_full = g_string_prepend_c(pref_name_full, '/'); |
1253
8342d3aab1f1
[gaim-migrate @ 1263]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1250
diff
changeset
|
723 |
5533 | 724 switch(pref_type) { |
725 case GAIM_PREF_NONE: | |
726 break; | |
727 case GAIM_PREF_BOOLEAN: | |
728 gaim_prefs_set_bool(pref_name_full->str, atoi(pref_value)); | |
729 break; | |
730 case GAIM_PREF_INT: | |
731 gaim_prefs_set_int(pref_name_full->str, atoi(pref_value)); | |
732 break; | |
733 case GAIM_PREF_STRING: | |
734 gaim_prefs_set_string(pref_name_full->str, pref_value); | |
735 break; | |
5561 | 736 case GAIM_PREF_STRING_LIST: |
737 break; | |
5440 | 738 } |
1170 | 739 |
5440 | 740 prefs_stack = g_list_prepend(prefs_stack, g_strdup(pref_name)); |
741 g_string_free(pref_name_full, TRUE); | |
1170 | 742 } |
743 | |
5440 | 744 static void prefs_end_element_handler(GMarkupParseContext *context, |
745 const gchar *element_name, gpointer user_data, GError **error) { | |
746 if(!strcmp(element_name, "pref")) { | |
747 prefs_stack = g_list_delete_link(prefs_stack, prefs_stack); | |
748 } | |
1170 | 749 } |
750 | |
5440 | 751 static GMarkupParser prefs_parser = { |
752 prefs_start_element_handler, | |
753 prefs_end_element_handler, | |
754 NULL, | |
755 NULL, | |
756 NULL | |
757 }; | |
1170 | 758 |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
759 gboolean gaim_prefs_load() { |
5440 | 760 gchar *filename = g_build_filename(gaim_user_dir(), "prefs.xml", NULL); |
761 gchar *contents = NULL; | |
762 gsize length; | |
763 GMarkupParseContext *context; | |
764 GError *error = NULL; | |
5314
1f901484599d
[gaim-migrate @ 5686]
Christian Hammond <chipx86@chipx86.com>
parents:
5297
diff
changeset
|
765 |
5534 | 766 |
767 if(!filename) { | |
768 prefs_is_loaded = TRUE; | |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
769 return FALSE; |
5534 | 770 } |
5440 | 771 |
772 gaim_debug(GAIM_DEBUG_INFO, "prefs", "Reading %s\n", filename); | |
5314
1f901484599d
[gaim-migrate @ 5686]
Christian Hammond <chipx86@chipx86.com>
parents:
5297
diff
changeset
|
773 |
5440 | 774 if(!g_file_get_contents(filename, &contents, &length, &error)) { |
775 gaim_debug(GAIM_DEBUG_ERROR, "prefs", "Error reading prefs: %s\n", | |
776 error->message); | |
777 g_error_free(error); | |
5534 | 778 prefs_is_loaded = TRUE; |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
779 return FALSE; |
1170 | 780 } |
781 | |
5440 | 782 context = g_markup_parse_context_new(&prefs_parser, 0, NULL, NULL); |
783 | |
784 if(!g_markup_parse_context_parse(context, contents, length, NULL)) { | |
785 g_markup_parse_context_free(context); | |
786 g_free(contents); | |
5534 | 787 prefs_is_loaded = TRUE; |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
788 return FALSE; |
5440 | 789 } |
790 | |
791 if(!g_markup_parse_context_end_parse(context, NULL)) { | |
792 gaim_debug(GAIM_DEBUG_ERROR, "prefs", "Error parsing %s\n", filename); | |
793 g_markup_parse_context_free(context); | |
794 g_free(contents); | |
5534 | 795 prefs_is_loaded = TRUE; |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
796 return FALSE; |
5440 | 797 } |
798 | |
799 g_markup_parse_context_free(context); | |
800 g_free(contents); | |
801 | |
802 gaim_debug(GAIM_DEBUG_INFO, "prefs", "Finished reading %s\n", filename); | |
803 g_free(filename); | |
5534 | 804 prefs_is_loaded = TRUE; |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
805 |
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
806 return TRUE; |
1006
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1002
diff
changeset
|
807 } |
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1002
diff
changeset
|
808 |