Sun, 03 Aug 2003 09:47:15 +0000
[gaim-migrate @ 6864]
Lots of Makefile.am and configure.ac fixes from Robot101. Doumo arigatou,
Mr. Roboto!
committer: Christian Hammond <chipx86@chipx86.com>
| 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
6f7d28b0f98d
[gaim-migrate @ 359]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
340
diff
changeset
|
22 | #ifdef HAVE_CONFIG_H |
|
2090
bab8b7e309db
[gaim-migrate @ 2100]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2074
diff
changeset
|
23 | #include <config.h> |
|
349
6f7d28b0f98d
[gaim-migrate @ 359]
Eric Warmenhoven <warmenhoven@yahoo.com>
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> | |
| 6216 | 32 | #include "internal.h" |
| 5440 | 33 | #include "prefs.h" |
| 34 | #include "debug.h" | |
| 35 | #include "util.h" | |
| 3366 | 36 | |
|
4026
4ec5559caae9
[gaim-migrate @ 4230]
Herman Bloggs <herman@bluedigits.com>
parents:
4010
diff
changeset
|
37 | #ifdef _WIN32 |
|
4ec5559caae9
[gaim-migrate @ 4230]
Herman Bloggs <herman@bluedigits.com>
parents:
4010
diff
changeset
|
38 | #include "win32dep.h" |
|
4ec5559caae9
[gaim-migrate @ 4230]
Herman Bloggs <herman@bluedigits.com>
parents:
4010
diff
changeset
|
39 | #endif |
|
4ec5559caae9
[gaim-migrate @ 4230]
Herman Bloggs <herman@bluedigits.com>
parents:
4010
diff
changeset
|
40 | |
| 5440 | 41 | struct pref_cb { |
| 42 | GaimPrefCallback func; | |
| 43 | gpointer data; | |
| 44 | guint id; | |
| 45 | }; | |
| 46 | ||
| 47 | struct gaim_pref { | |
| 48 | GaimPrefType type; | |
| 49 | char *name; | |
| 50 | union { | |
| 51 | gpointer generic; | |
| 52 | gboolean boolean; | |
| 53 | int integer; | |
| 54 | char *string; | |
| 5561 | 55 | GList *stringlist; |
| 5440 | 56 | } value; |
| 57 | GSList *callbacks; | |
| 58 | struct gaim_pref *parent; | |
| 59 | struct gaim_pref *sibling; | |
| 60 | struct gaim_pref *first_child; | |
| 61 | }; | |
| 3366 | 62 | |
| 5440 | 63 | static GHashTable *prefs_hash = NULL; |
| 64 | ||
| 65 | static struct gaim_pref prefs = { GAIM_PREF_NONE, NULL, {NULL}, NULL, | |
| 66 | NULL, NULL, NULL }; | |
| 67 | ||
| 5534 | 68 | static guint prefs_save_timer = 0; |
| 69 | static gboolean prefs_is_loaded = FALSE; | |
| 70 | ||
| 71 | ||
| 72 | static gboolean prefs_save_callback(gpointer who_cares) { | |
| 73 | gaim_prefs_sync(); | |
| 74 | prefs_save_timer = 0; | |
| 75 | return FALSE; | |
| 76 | } | |
| 77 | ||
| 78 | static void schedule_prefs_save() { | |
| 79 | if(!prefs_save_timer) | |
| 80 | prefs_save_timer = g_timeout_add(5000, prefs_save_callback, NULL); | |
| 81 | } | |
| 82 | ||
| 83 | static void prefs_save_cb(const char *name, GaimPrefType type, gpointer val, | |
| 84 | gpointer user_data) { | |
| 85 | ||
| 86 | if(!prefs_is_loaded) | |
| 87 | return; | |
| 88 | ||
| 89 | gaim_debug(GAIM_DEBUG_MISC, "prefs", "%s changed, scheduling save.\n", name); | |
| 90 | ||
| 91 | schedule_prefs_save(); | |
| 92 | } | |
| 93 | ||
| 5440 | 94 | void gaim_prefs_init() { |
| 95 | prefs_hash = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL); | |
| 96 | ||
| 5534 | 97 | gaim_prefs_connect_callback("/", prefs_save_cb, NULL); |
| 98 | ||
|
5529
4a9fd5f1a400
[gaim-migrate @ 5929]
Christian Hammond <chipx86@chipx86.com>
parents:
5458
diff
changeset
|
99 | gaim_prefs_add_none("/core"); |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
100 | gaim_prefs_add_none("/plugins"); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
101 | gaim_prefs_add_none("/plugins/core"); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
102 | gaim_prefs_add_none("/plugins/lopl"); |
|
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
103 | gaim_prefs_add_none("/plugins/prpl"); |
|
5529
4a9fd5f1a400
[gaim-migrate @ 5929]
Christian Hammond <chipx86@chipx86.com>
parents:
5458
diff
changeset
|
104 | |
| 5440 | 105 | /* XXX: this is where you would want to put prefs declarations */ |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
106 | |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
107 | /* Away */ |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
108 | gaim_prefs_add_none("/core/away"); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
109 | gaim_prefs_add_bool("/core/away/away_when_idle", TRUE); |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
110 | gaim_prefs_add_int("/core/away/mins_before_away", 1); |
| 6216 | 111 | /* XXX: internationalized string in prefs...evil */ |
| 112 | gaim_prefs_add_string("/core/away/default_message", | |
| 113 | _("Slightly less boring default")); | |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
114 | |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
115 | /* Away -> Auto Response */ |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
116 | gaim_prefs_add_none("/core/away/auto_response"); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
117 | gaim_prefs_add_bool("/core/away/auto_response/enabled", TRUE); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
118 | gaim_prefs_add_bool("/core/away/auto_response/in_active_conv", TRUE); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
119 | gaim_prefs_add_bool("/core/away/auto_response/idle_only", FALSE); |
|
5550
1938d1e59cf8
[gaim-migrate @ 5951]
Christian Hammond <chipx86@chipx86.com>
parents:
5547
diff
changeset
|
120 | gaim_prefs_add_int("/core/away/auto_response/sec_before_resend", 60); |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
121 | |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
122 | /* Buddies */ |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
123 | gaim_prefs_add_none("/core/buddies"); |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
124 | gaim_prefs_add_bool("/core/buddies/use_server_alias", TRUE); |
| 5440 | 125 | } |
| 3366 | 126 | |
|
5787
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
127 | static char * |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
128 | get_path_dirname(const char *name) |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
129 | { |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
130 | char *c, *str; |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
131 | |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
132 | str = g_strdup(name); |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
133 | |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
134 | if ((c = strrchr(str, '/')) != NULL) { |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
135 | *c = '\0'; |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
136 | |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
137 | if (*str == '\0') { |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
138 | g_free(str); |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
139 | |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
140 | str = g_strdup("/"); |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
141 | } |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
142 | } |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
143 | else { |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
144 | g_free(str); |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
145 | |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
146 | str = g_strdup("."); |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
147 | } |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
148 | |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
149 | return str; |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
150 | } |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
151 | |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
152 | static char * |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
153 | get_path_basename(const char *name) |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
154 | { |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
155 | const char *c; |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
156 | |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
157 | if ((c = strrchr(name, '/')) != NULL) |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
158 | return g_strdup(c + 1); |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
159 | |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
160 | return g_strdup(name); |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
161 | } |
|
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
162 | |
| 5440 | 163 | static char *pref_full_name(struct gaim_pref *pref) { |
| 164 | GString *name; | |
| 165 | struct gaim_pref *parent; | |
| 166 | if(!pref) | |
| 167 | return NULL; | |
| 168 | ||
| 169 | if(pref == &prefs) | |
| 170 | return g_strdup("/"); | |
| 171 | ||
| 172 | name = g_string_new(pref->name); | |
| 173 | parent = pref->parent; | |
| 3366 | 174 | |
| 5440 | 175 | for(parent = pref->parent; parent && parent->name; parent = parent->parent) { |
| 176 | name = g_string_prepend_c(name, '/'); | |
| 177 | name = g_string_prepend(name, parent->name); | |
| 178 | } | |
| 179 | g_string_free(name, FALSE); | |
| 180 | return name->str; | |
| 181 | } | |
| 182 | ||
| 183 | static struct gaim_pref *find_pref(const char *name) | |
| 184 | { | |
| 185 | if(!name || name[0] != '/') { | |
| 186 | return NULL; | |
| 187 | } else if(name[1] == '\0') { | |
| 188 | return &prefs; | |
| 189 | } else { | |
| 190 | return g_hash_table_lookup(prefs_hash, name); | |
| 191 | } | |
| 192 | } | |
| 193 | ||
| 194 | static struct gaim_pref *find_pref_parent(const char *name) | |
| 195 | { | |
|
5787
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
196 | char *parent_name = get_path_dirname(name); |
| 5440 | 197 | struct gaim_pref *ret = &prefs; |
| 198 | ||
| 199 | if(strcmp(parent_name, "/")) { | |
| 200 | ret = find_pref(parent_name); | |
| 201 | } | |
| 1026 | 202 | |
| 5440 | 203 | g_free(parent_name); |
| 204 | return ret; | |
| 205 | } | |
| 206 | ||
| 207 | static void free_pref_value(struct gaim_pref *pref) { | |
| 208 | switch(pref->type) { | |
| 209 | case GAIM_PREF_BOOLEAN: | |
| 210 | pref->value.boolean = FALSE; | |
| 211 | case GAIM_PREF_INT: | |
| 212 | pref->value.integer = 0; | |
| 213 | break; | |
| 214 | case GAIM_PREF_STRING: | |
| 215 | g_free(pref->value.string); | |
| 216 | pref->value.string = NULL; | |
| 217 | break; | |
| 5561 | 218 | case GAIM_PREF_STRING_LIST: |
| 219 | { | |
| 220 | GList *tmp; | |
| 221 | for(tmp = pref->value.stringlist; tmp; tmp = tmp->next) | |
| 222 | g_free(tmp->data); | |
| 223 | ||
| 224 | g_list_free(pref->value.stringlist); | |
| 225 | } break; | |
| 5440 | 226 | case GAIM_PREF_NONE: |
| 227 | break; | |
| 228 | } | |
| 229 | } | |
| 230 | ||
| 231 | static struct gaim_pref *add_pref(GaimPrefType type, const char *name) { | |
| 232 | struct gaim_pref *parent; | |
| 233 | struct gaim_pref *me; | |
| 234 | struct gaim_pref *sibling; | |
|
5458
b360ef43126d
[gaim-migrate @ 5846]
Christian Hammond <chipx86@chipx86.com>
parents:
5451
diff
changeset
|
235 | char *my_name; |
| 5440 | 236 | |
| 237 | parent = find_pref_parent(name); | |
| 238 | ||
| 239 | if(!parent) | |
| 240 | return NULL; | |
|
1525
b4ece1a718cd
[gaim-migrate @ 1535]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1455
diff
changeset
|
241 | |
|
5787
026063bb6b38
[gaim-migrate @ 6212]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
242 | my_name = get_path_basename(name); |
|
5458
b360ef43126d
[gaim-migrate @ 5846]
Christian Hammond <chipx86@chipx86.com>
parents:
5451
diff
changeset
|
243 | |
| 5440 | 244 | for(sibling = parent->first_child; sibling; sibling = sibling->sibling) { |
| 245 | if(!strcmp(sibling->name, my_name)) { | |
| 246 | g_free(my_name); | |
| 247 | return NULL; | |
| 248 | } | |
| 249 | } | |
| 250 | ||
| 251 | me = g_new0(struct gaim_pref, 1); | |
| 252 | me->type = type; | |
| 253 | me->name = my_name; | |
| 254 | ||
| 255 | me->parent = parent; | |
| 256 | if(parent->first_child) { | |
| 257 | /* blatant abuse of a for loop */ | |
| 258 | for(sibling = parent->first_child; sibling->sibling; | |
| 259 | sibling = sibling->sibling); | |
| 260 | sibling->sibling = me; | |
| 261 | } else { | |
| 262 | parent->first_child = me; | |
| 263 | } | |
| 264 | ||
| 265 | g_hash_table_insert(prefs_hash, g_strdup(name), (gpointer)me); | |
| 266 | ||
| 267 | return me; | |
| 268 | } | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
269 | |
| 5440 | 270 | void gaim_prefs_add_none(const char *name) { |
| 271 | add_pref(GAIM_PREF_NONE, name); | |
| 272 | } | |
| 273 | ||
| 274 | void gaim_prefs_add_bool(const char *name, gboolean value) { | |
| 275 | struct gaim_pref *pref = add_pref(GAIM_PREF_BOOLEAN, name); | |
| 276 | ||
| 277 | if(!pref) | |
| 278 | return; | |
| 279 | ||
| 280 | pref->value.boolean = value; | |
| 281 | } | |
| 3630 | 282 | |
| 5440 | 283 | void gaim_prefs_add_int(const char *name, int value) { |
| 284 | struct gaim_pref *pref = add_pref(GAIM_PREF_INT, name); | |
| 285 | ||
| 286 | if(!pref) | |
| 287 | return; | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
288 | |
| 5440 | 289 | pref->value.integer = value; |
| 290 | } | |
| 291 | ||
| 292 | void gaim_prefs_add_string(const char *name, const char *value) { | |
| 293 | struct gaim_pref *pref = add_pref(GAIM_PREF_STRING, name); | |
| 294 | ||
| 295 | if(!pref) | |
| 296 | return; | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
297 | |
| 5440 | 298 | pref->value.string = g_strdup(value); |
| 299 | } | |
| 300 | ||
| 5561 | 301 | void gaim_prefs_add_string_list(const char *name, GList *value) { |
| 302 | struct gaim_pref *pref = add_pref(GAIM_PREF_STRING_LIST, name); | |
| 303 | GList *tmp; | |
| 304 | ||
| 305 | if(!pref) | |
| 306 | return; | |
| 307 | ||
| 308 | for(tmp = value; tmp; tmp = tmp->next) | |
| 309 | pref->value.stringlist = g_list_append(pref->value.stringlist, | |
| 310 | g_strdup(tmp->data)); | |
| 311 | } | |
| 312 | ||
| 5440 | 313 | void remove_pref(struct gaim_pref *pref) { |
| 314 | char *name; | |
| 315 | ||
| 316 | if(!pref || pref == &prefs) | |
| 317 | return; | |
| 318 | ||
| 319 | if(pref->parent->first_child == pref) { | |
| 320 | pref->parent->first_child = pref->sibling; | |
| 321 | } else { | |
| 322 | struct gaim_pref *sib = pref->parent->first_child; | |
| 323 | while(sib->sibling != pref) | |
| 324 | sib = sib->sibling; | |
| 325 | sib->sibling = pref->sibling; | |
| 326 | } | |
| 327 | ||
| 328 | name = pref_full_name(pref); | |
| 329 | ||
| 330 | g_hash_table_remove(prefs_hash, name); | |
| 331 | g_free(name); | |
| 332 | ||
| 333 | free_pref_value(pref); | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
334 | |
| 5440 | 335 | g_slist_free(pref->callbacks); |
| 336 | g_free(pref->name); | |
| 337 | g_free(pref); | |
| 338 | } | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
339 | |
| 5440 | 340 | void gaim_prefs_remove(const char *name) { |
| 341 | struct gaim_pref *pref = find_pref(name); | |
| 342 | struct gaim_pref *child, *child2; | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
343 | |
| 5440 | 344 | if(!pref) |
| 345 | return; | |
| 346 | child = pref->first_child; | |
| 347 | while(child) { | |
| 348 | child2 = child; | |
| 349 | child = child->sibling; | |
| 350 | remove_pref(child2); | |
| 351 | } | |
| 352 | ||
| 353 | remove_pref(pref); | |
| 354 | } | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
355 | |
| 5440 | 356 | void gaim_prefs_destroy() { |
| 357 | gaim_prefs_remove("/"); | |
| 358 | } | |
| 359 | ||
| 360 | static void do_callbacks(const char* name, struct gaim_pref *pref) { | |
| 361 | GSList *cbs; | |
| 362 | struct gaim_pref *cb_pref; | |
| 363 | for(cb_pref = pref; cb_pref; cb_pref = cb_pref->parent) { | |
| 364 | for(cbs = cb_pref->callbacks; cbs; cbs = cbs->next) { | |
| 365 | struct pref_cb *cb = cbs->data; | |
| 366 | cb->func(name, pref->type, pref->value.generic, cb->data); | |
| 4215 | 367 | } |
| 368 | } | |
|
1525
b4ece1a718cd
[gaim-migrate @ 1535]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1455
diff
changeset
|
369 | } |
|
b4ece1a718cd
[gaim-migrate @ 1535]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1455
diff
changeset
|
370 | |
| 5684 | 371 | void gaim_prefs_trigger_callback(const char *name) { |
| 372 | struct gaim_pref *pref = find_pref(name); | |
| 373 | ||
| 5814 | 374 | if(!pref) { |
| 375 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 376 | "gaim_prefs_trigger_callback: Unknown pref %s\n", name); | |
| 377 | return; | |
| 378 | } | |
| 379 | ||
| 5684 | 380 | do_callbacks(name, pref); |
| 381 | } | |
| 382 | ||
| 5440 | 383 | void gaim_prefs_set_generic(const char *name, gpointer value) { |
| 384 | struct gaim_pref *pref = find_pref(name); | |
| 3366 | 385 | |
| 5814 | 386 | if(!pref) { |
| 387 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 388 | "gaim_prefs_set_generic: Unknown pref %s\n", name); | |
| 389 | return; | |
| 390 | } | |
| 3500 | 391 | |
| 5440 | 392 | pref->value.generic = value; |
| 393 | do_callbacks(name, pref); | |
| 3366 | 394 | } |
| 395 | ||
| 5440 | 396 | void gaim_prefs_set_bool(const char *name, gboolean value) { |
| 397 | struct gaim_pref *pref = find_pref(name); | |
| 4288 | 398 | |
| 5533 | 399 | if(pref) { |
| 5814 | 400 | if(pref->type != GAIM_PREF_BOOLEAN) { |
| 401 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 402 | "gaim_prefs_set_bool: %s not a boolean pref\n", name); | |
| 403 | return; | |
| 404 | } | |
| 4325 | 405 | |
| 5533 | 406 | if(pref->value.boolean != value) { |
| 407 | pref->value.boolean = value; | |
| 408 | do_callbacks(name, pref); | |
| 409 | } | |
| 410 | } else { | |
| 411 | gaim_prefs_add_bool(name, value); | |
| 4288 | 412 | } |
| 4324 | 413 | } |
| 4325 | 414 | |
| 5440 | 415 | void gaim_prefs_set_int(const char *name, int value) { |
| 416 | struct gaim_pref *pref = find_pref(name); | |
| 4325 | 417 | |
| 5533 | 418 | if(pref) { |
| 5814 | 419 | if(pref->type != GAIM_PREF_INT) { |
| 420 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 421 | "gaim_prefs_set_int: %s not an integer pref\n", name); | |
| 422 | return; | |
| 423 | } | |
| 4325 | 424 | |
| 5533 | 425 | if(pref->value.integer != value) { |
| 426 | pref->value.integer = value; | |
| 427 | do_callbacks(name, pref); | |
| 428 | } | |
| 429 | } else { | |
| 430 | gaim_prefs_add_int(name, value); | |
| 5440 | 431 | } |
| 4326 | 432 | } |
| 433 | ||
| 5451 | 434 | void gaim_prefs_set_string(const char *name, const char *value) { |
| 5440 | 435 | struct gaim_pref *pref = find_pref(name); |
| 4325 | 436 | |
| 5533 | 437 | if(pref) { |
| 5814 | 438 | if(pref->type != GAIM_PREF_STRING) { |
| 439 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 440 | "gaim_prefs_set_string: %s not a string pref\n", name); | |
| 441 | return; | |
| 442 | } | |
| 4325 | 443 | |
| 6295 | 444 | if((value && !pref->value.string) || |
| 445 | (!value && pref->value.string) || | |
| 446 | strcmp(pref->value.string, value)) { | |
| 5533 | 447 | g_free(pref->value.string); |
| 448 | pref->value.string = g_strdup(value); | |
| 449 | do_callbacks(name, pref); | |
| 450 | } | |
| 451 | } else { | |
| 452 | gaim_prefs_add_string(name, value); | |
| 4325 | 453 | } |
| 454 | } | |
| 455 | ||
| 5561 | 456 | void gaim_prefs_set_string_list(const char *name, GList *value) { |
| 457 | struct gaim_pref *pref = find_pref(name); | |
| 458 | if(pref) { | |
| 459 | GList *tmp; | |
| 5814 | 460 | |
| 461 | if(pref->type != GAIM_PREF_STRING_LIST) { | |
| 462 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 463 | "gaim_prefs_set_string_list: %s not a string list pref\n", | |
| 464 | name); | |
| 465 | return; | |
| 466 | } | |
| 467 | ||
| 5561 | 468 | for(tmp = pref->value.stringlist; tmp; tmp = tmp->next) |
| 469 | g_free(tmp->data); | |
| 470 | ||
| 471 | g_list_free(pref->value.stringlist); | |
| 472 | pref->value.stringlist = NULL; | |
| 473 | ||
| 474 | for(tmp = value; tmp; tmp = tmp->next) | |
| 475 | pref->value.stringlist = g_list_append(pref->value.stringlist, | |
| 476 | g_strdup(tmp->data)); | |
| 477 | ||
|
5986
d2304ce429ce
[gaim-migrate @ 6434]
Christian Hammond <chipx86@chipx86.com>
parents:
5949
diff
changeset
|
478 | do_callbacks(name, pref); |
|
d2304ce429ce
[gaim-migrate @ 6434]
Christian Hammond <chipx86@chipx86.com>
parents:
5949
diff
changeset
|
479 | |
| 5561 | 480 | } else { |
| 481 | gaim_prefs_add_string_list(name, value); | |
| 482 | } | |
| 483 | } | |
| 484 | ||
| 5440 | 485 | gpointer gaim_prefs_get_generic(const char *name) { |
| 486 | struct gaim_pref *pref = find_pref(name); | |
| 4325 | 487 | |
| 5814 | 488 | if(!pref) { |
| 489 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 490 | "gaim_prefs_get_generic: Unknown pref %s\n", name); | |
| 491 | return NULL; | |
| 492 | } | |
| 4288 | 493 | |
| 5440 | 494 | return pref->value.generic; |
| 4288 | 495 | } |
| 496 | ||
| 5440 | 497 | gboolean gaim_prefs_get_bool(const char *name) { |
| 498 | struct gaim_pref *pref = find_pref(name); | |
| 3427 | 499 | |
| 5814 | 500 | if(!pref) { |
| 501 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 502 | "gaim_prefs_get_bool: Unknown pref %s\n", name); | |
| 503 | return FALSE; | |
| 504 | } else if(pref->type != GAIM_PREF_BOOLEAN) { | |
| 505 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 506 | "gaim_prefs_get_bool: %s not a boolean pref\n", name); | |
| 507 | return FALSE; | |
| 508 | } | |
|
3472
3939deb42c1e
[gaim-migrate @ 3523]
Robert McQueen <robot101@debian.org>
parents:
3466
diff
changeset
|
509 | |
| 5440 | 510 | return pref->value.boolean; |
| 3366 | 511 | } |
| 512 | ||
| 5440 | 513 | int gaim_prefs_get_int(const char *name) { |
| 514 | struct gaim_pref *pref = find_pref(name); | |
| 3500 | 515 | |
| 5814 | 516 | if(!pref) { |
| 517 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 518 | "gaim_prefs_get_int: Unknown pref %s\n", name); | |
| 519 | return 0; | |
| 520 | } else if(pref->type != GAIM_PREF_INT) { | |
| 521 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 522 | "gaim_prefs_get_int: %s not an integer pref\n", name); | |
| 523 | return 0; | |
| 524 | } | |
| 3366 | 525 | |
| 5440 | 526 | return pref->value.integer; |
| 3366 | 527 | } |
| 528 | ||
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
529 | const char *gaim_prefs_get_string(const char *name) { |
| 5440 | 530 | struct gaim_pref *pref = find_pref(name); |
| 3366 | 531 | |
| 5814 | 532 | if(!pref) { |
| 533 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 534 | "gaim_prefs_get_string: Unknown pref %s\n", name); | |
| 535 | return NULL; | |
| 536 | } else if(pref->type != GAIM_PREF_STRING) { | |
| 537 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 538 | "gaim_prefs_get_string: %s not a string pref\n", name); | |
| 539 | return NULL; | |
| 540 | } | |
|
4469
ef60c820b884
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
541 | |
| 5440 | 542 | return pref->value.string; |
|
4469
ef60c820b884
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
543 | } |
|
ef60c820b884
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4461
diff
changeset
|
544 | |
| 5561 | 545 | GList *gaim_prefs_get_string_list(const char *name) { |
| 546 | struct gaim_pref *pref = find_pref(name); | |
| 547 | GList *ret = NULL, *tmp; | |
| 548 | ||
| 5814 | 549 | if(!pref) { |
| 550 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 551 | "gaim_prefs_get_string_list: Unknown pref %s\n", name); | |
| 552 | return NULL; | |
| 553 | } else if(pref->type != GAIM_PREF_STRING_LIST) { | |
| 554 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", | |
| 555 | "gaim_prefs_get_string_list: %s not a string list pref\n", name); | |
| 556 | return NULL; | |
| 557 | } | |
| 5561 | 558 | |
| 559 | for(tmp = pref->value.stringlist; tmp; tmp = tmp->next) | |
| 560 | ret = g_list_append(ret, g_strdup(tmp->data)); | |
| 561 | ||
| 562 | return ret; | |
| 563 | } | |
| 564 | ||
| 5440 | 565 | guint gaim_prefs_connect_callback(const char *name, GaimPrefCallback func, gpointer data) |
| 566 | { | |
| 567 | struct gaim_pref *pref = find_pref(name); | |
| 568 | struct pref_cb *cb; | |
| 569 | static guint cb_id = 0; | |
| 3366 | 570 | |
| 5440 | 571 | if(!pref) |
| 572 | return 0; | |
| 3366 | 573 | |
| 5440 | 574 | cb = g_new0(struct pref_cb, 1); |
|
1881
bcd5d457cdbb
[gaim-migrate @ 1891]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1840
diff
changeset
|
575 | |
| 5440 | 576 | cb->func = func; |
| 577 | cb->data = data; | |
| 578 | cb->id = ++cb_id; | |
| 4991 | 579 | |
| 5440 | 580 | pref->callbacks = g_slist_append(pref->callbacks, cb); |
| 3366 | 581 | |
| 5440 | 582 | return cb->id; |
| 3366 | 583 | } |
| 584 | ||
| 5440 | 585 | gboolean disco_callback_helper(struct gaim_pref *pref, guint callback_id) { |
| 586 | GSList *cbs; | |
| 587 | struct gaim_pref *child; | |
| 2254 | 588 | |
| 5440 | 589 | if(!pref) |
| 590 | return FALSE; | |
|
1881
bcd5d457cdbb
[gaim-migrate @ 1891]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1840
diff
changeset
|
591 | |
| 5440 | 592 | for(cbs = pref->callbacks; cbs; cbs = cbs->next) { |
| 593 | struct pref_cb *cb = cbs->data; | |
| 594 | if(cb->id == callback_id) { | |
| 595 | pref->callbacks = g_slist_remove(pref->callbacks, cb); | |
| 596 | g_free(cb); | |
| 597 | return TRUE; | |
| 4428 | 598 | } |
| 599 | } | |
| 600 | ||
| 5440 | 601 | for(child = pref->first_child; child; child = child->sibling) { |
| 602 | if(disco_callback_helper(child, callback_id)) | |
| 603 | return TRUE; | |
| 4428 | 604 | } |
|
4451
5a484f11e395
[gaim-migrate @ 4726]
Herman Bloggs <herman@bluedigits.com>
parents:
4449
diff
changeset
|
605 | |
| 5440 | 606 | return FALSE; |
|
1757
8c57846a4691
[gaim-migrate @ 1767]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1755
diff
changeset
|
607 | } |
|
8c57846a4691
[gaim-migrate @ 1767]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1755
diff
changeset
|
608 | |
| 5440 | 609 | void gaim_prefs_disconnect_callback(guint callback_id) { |
| 610 | disco_callback_helper(&prefs, callback_id); | |
| 2262 | 611 | } |
| 612 | ||
| 5440 | 613 | static void gaim_prefs_write(FILE *f, struct gaim_pref *pref, int depth) { |
| 614 | struct gaim_pref *tmp; | |
| 615 | char *esc; | |
| 616 | int i; | |
| 3500 | 617 | |
| 5440 | 618 | if(!pref) { |
| 619 | pref = &prefs; | |
| 3551 | 620 | |
| 5440 | 621 | fprintf(f, "<?xml version='1.0' encoding='UTF-8' ?>\n"); |
| 622 | fprintf(f, "<pref name='/'"); | |
| 623 | } else { | |
| 624 | for(i=0; i<depth; i++) | |
| 625 | fprintf(f, "\t"); | |
| 626 | esc = g_markup_escape_text(pref->name, -1); | |
| 627 | fprintf(f, "<pref name='%s'", esc); | |
| 628 | g_free(esc); | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
629 | } |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
630 | |
| 5440 | 631 | switch(pref->type) { |
| 632 | case GAIM_PREF_NONE: | |
| 633 | break; | |
| 634 | case GAIM_PREF_BOOLEAN: | |
| 635 | fprintf(f, " type='bool' value='%d'", pref->value.boolean); | |
| 636 | break; | |
| 637 | case GAIM_PREF_INT: | |
| 638 | fprintf(f, " type='int' value='%d'", pref->value.integer); | |
| 639 | break; | |
| 640 | case GAIM_PREF_STRING: | |
| 641 | esc = g_markup_escape_text(pref->value.string, -1); | |
| 642 | fprintf(f, " type='string' value='%s'", esc); | |
| 643 | g_free(esc); | |
| 644 | break; | |
| 5561 | 645 | case GAIM_PREF_STRING_LIST: |
| 646 | fprintf(f, " type='stringlist'"); | |
| 647 | break; | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
648 | } |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
649 | |
| 5561 | 650 | if(pref->first_child || pref->type == GAIM_PREF_STRING_LIST) { |
| 5440 | 651 | fprintf(f, ">\n"); |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
652 | |
| 5440 | 653 | for(tmp = pref->first_child; tmp; tmp = tmp->sibling) |
| 654 | gaim_prefs_write(f, tmp, depth+1); | |
| 5561 | 655 | |
| 656 | if(pref->type == GAIM_PREF_STRING_LIST) { | |
| 657 | GList *tmp2; | |
| 658 | for(tmp2 = pref->value.stringlist; tmp2; tmp2 = tmp2->next) { | |
| 659 | for(i=0; i<depth+1; i++) | |
| 660 | fprintf(f, "\t"); | |
| 661 | esc = g_markup_escape_text(tmp2->data, -1); | |
| 662 | fprintf(f, "<item value='%s' />\n", esc); | |
| 663 | g_free(esc); | |
| 664 | } | |
| 665 | } | |
| 666 | ||
| 5440 | 667 | for(i=0; i<depth; i++) |
| 668 | fprintf(f, "\t"); | |
| 669 | fprintf(f, "</pref>\n"); | |
| 670 | } else { | |
| 671 | fprintf(f, " />\n"); | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
672 | } |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
673 | } |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5105
diff
changeset
|
674 | |
| 5440 | 675 | void gaim_prefs_sync() { |
| 676 | FILE *file; | |
| 677 | const char *user_dir = gaim_user_dir(); | |
| 678 | char *filename; | |
| 679 | char *filename_real; | |
| 3551 | 680 | |
| 5534 | 681 | if(!prefs_is_loaded) { |
| 682 | gaim_debug(GAIM_DEBUG_WARNING, "prefs", "prefs saved before loading! scheduling save.\n"); | |
| 683 | schedule_prefs_save(); /* schedule a save for after we read in */ | |
| 684 | return; | |
| 685 | } | |
| 686 | ||
| 5440 | 687 | if(!user_dir) |
| 688 | return; | |
| 3551 | 689 | |
| 5534 | 690 | gaim_debug(GAIM_DEBUG_INFO, "prefs", "writing prefs out to disk.\n"); |
| 691 | ||
| 5440 | 692 | file = fopen(user_dir, "r"); |
| 693 | if(!file) | |
| 694 | mkdir(user_dir, S_IRUSR | S_IWUSR | S_IXUSR); | |
| 695 | else | |
| 696 | fclose(file); | |
| 3551 | 697 | |
| 5440 | 698 | filename = g_build_filename(user_dir, "prefs.xml.save", NULL); |
| 3551 | 699 | |
| 5440 | 700 | if((file = fopen(filename, "w"))) { |
| 701 | gaim_prefs_write(file, NULL, 0); | |
| 702 | fclose(file); | |
| 703 | chmod(filename, S_IRUSR | S_IWUSR); | |
| 704 | } else { | |
| 705 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", "Unable to write %s\n", | |
| 706 | filename); | |
| 707 | } | |
| 3551 | 708 | |
| 5440 | 709 | filename_real = g_build_filename(user_dir, "prefs.xml", NULL); |
| 710 | if(rename(filename, filename_real) < 0) | |
| 711 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", "Error renaming %s to %s\n", | |
| 712 | filename, filename_real); | |
| 3551 | 713 | |
| 5440 | 714 | g_free(filename); |
| 715 | g_free(filename_real); | |
| 3551 | 716 | } |
| 717 | ||
| 5440 | 718 | static GList *prefs_stack = NULL; |
|
873
d40eff5fc359
[gaim-migrate @ 883]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
864
diff
changeset
|
719 | |
| 5440 | 720 | static void prefs_start_element_handler (GMarkupParseContext *context, |
| 721 | const gchar *element_name, | |
| 722 | const gchar **attribute_names, | |
| 723 | const gchar **attribute_values, | |
| 724 | gpointer user_data, | |
| 725 | GError **error) { | |
| 726 | GaimPrefType pref_type = GAIM_PREF_NONE; | |
| 727 | int i; | |
| 728 | const char *pref_name = NULL, *pref_value = NULL; | |
| 729 | GString *pref_name_full; | |
| 730 | GList *tmp; | |
| 3366 | 731 | |
| 5561 | 732 | if(strcmp(element_name, "pref") && strcmp(element_name, "item")) |
| 5440 | 733 | return; |
| 3500 | 734 | |
| 5440 | 735 | for(i = 0; attribute_names[i]; i++) { |
| 736 | if(!strcmp(attribute_names[i], "name")) { | |
| 737 | pref_name = attribute_values[i]; | |
| 738 | } else if(!strcmp(attribute_names[i], "type")) { | |
| 739 | if(!strcmp(attribute_values[i], "bool")) | |
| 740 | pref_type = GAIM_PREF_BOOLEAN; | |
| 741 | else if(!strcmp(attribute_values[i], "int")) | |
| 742 | pref_type = GAIM_PREF_INT; | |
| 743 | else if(!strcmp(attribute_values[i], "string")) | |
| 744 | pref_type = GAIM_PREF_STRING; | |
| 5561 | 745 | else if(!strcmp(attribute_values[i], "stringlist")) |
| 746 | pref_type = GAIM_PREF_STRING_LIST; | |
| 5440 | 747 | else |
| 748 | return; | |
| 749 | } else if(!strcmp(attribute_names[i], "value")) { | |
| 750 | pref_value = attribute_values[i]; | |
| 751 | } | |
| 752 | } | |
|
873
d40eff5fc359
[gaim-migrate @ 883]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
864
diff
changeset
|
753 | |
| 5561 | 754 | if(!strcmp(element_name, "item")) { |
| 5838 | 755 | struct gaim_pref *pref; |
| 756 | ||
| 757 | pref_name_full = g_string_new(""); | |
| 758 | ||
| 759 | for(tmp = prefs_stack; tmp; tmp = tmp->next) { | |
| 760 | pref_name_full = g_string_prepend(pref_name_full, tmp->data); | |
| 761 | pref_name_full = g_string_prepend_c(pref_name_full, '/'); | |
| 762 | } | |
| 763 | ||
| 764 | pref = find_pref(pref_name_full->str); | |
| 765 | ||
| 5561 | 766 | if(pref) { |
| 767 | pref->value.stringlist = g_list_append(pref->value.stringlist, | |
| 768 | g_strdup(pref_value)); | |
| 769 | } | |
| 5838 | 770 | } else { |
| 771 | if(!pref_name || !strcmp(pref_name, "/")) | |
| 772 | return; | |
|
652
dd4ccd3e5c72
[gaim-migrate @ 662]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
619
diff
changeset
|
773 | |
| 5838 | 774 | pref_name_full = g_string_new(pref_name); |
|
652
dd4ccd3e5c72
[gaim-migrate @ 662]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
619
diff
changeset
|
775 | |
| 5838 | 776 | for(tmp = prefs_stack; tmp; tmp = tmp->next) { |
| 777 | pref_name_full = g_string_prepend_c(pref_name_full, '/'); | |
| 778 | pref_name_full = g_string_prepend(pref_name_full, tmp->data); | |
| 779 | } | |
| 780 | ||
| 5440 | 781 | pref_name_full = g_string_prepend_c(pref_name_full, '/'); |
|
1253
f02697a6aada
[gaim-migrate @ 1263]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1250
diff
changeset
|
782 | |
| 5838 | 783 | switch(pref_type) { |
| 784 | case GAIM_PREF_NONE: | |
| 785 | break; | |
| 786 | case GAIM_PREF_BOOLEAN: | |
| 787 | gaim_prefs_set_bool(pref_name_full->str, atoi(pref_value)); | |
| 788 | break; | |
| 789 | case GAIM_PREF_INT: | |
| 790 | gaim_prefs_set_int(pref_name_full->str, atoi(pref_value)); | |
| 791 | break; | |
| 792 | case GAIM_PREF_STRING: | |
| 793 | gaim_prefs_set_string(pref_name_full->str, pref_value); | |
| 794 | break; | |
| 795 | case GAIM_PREF_STRING_LIST: | |
| 796 | gaim_prefs_set_string_list(pref_name_full->str, NULL); | |
| 797 | break; | |
| 798 | } | |
| 799 | prefs_stack = g_list_prepend(prefs_stack, g_strdup(pref_name)); | |
| 800 | g_string_free(pref_name_full, TRUE); | |
| 5440 | 801 | } |
| 1170 | 802 | } |
| 803 | ||
| 5440 | 804 | static void prefs_end_element_handler(GMarkupParseContext *context, |
| 805 | const gchar *element_name, gpointer user_data, GError **error) { | |
| 5940 | 806 | if(prefs_stack && !strcmp(element_name, "pref")) { |
| 807 | g_free(prefs_stack->data); | |
| 5440 | 808 | prefs_stack = g_list_delete_link(prefs_stack, prefs_stack); |
| 809 | } | |
| 1170 | 810 | } |
| 811 | ||
| 5440 | 812 | static GMarkupParser prefs_parser = { |
| 813 | prefs_start_element_handler, | |
| 814 | prefs_end_element_handler, | |
| 815 | NULL, | |
| 816 | NULL, | |
| 817 | NULL | |
| 818 | }; | |
| 1170 | 819 | |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
820 | gboolean gaim_prefs_load() { |
| 5440 | 821 | gchar *filename = g_build_filename(gaim_user_dir(), "prefs.xml", NULL); |
| 822 | gchar *contents = NULL; | |
| 823 | gsize length; | |
| 824 | GMarkupParseContext *context; | |
| 825 | GError *error = NULL; | |
|
5314
56ef6a09fb99
[gaim-migrate @ 5686]
Christian Hammond <chipx86@chipx86.com>
parents:
5297
diff
changeset
|
826 | |
| 5534 | 827 | |
| 828 | if(!filename) { | |
| 829 | prefs_is_loaded = TRUE; | |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
830 | return FALSE; |
| 5534 | 831 | } |
| 5440 | 832 | |
| 833 | gaim_debug(GAIM_DEBUG_INFO, "prefs", "Reading %s\n", filename); | |
|
5314
56ef6a09fb99
[gaim-migrate @ 5686]
Christian Hammond <chipx86@chipx86.com>
parents:
5297
diff
changeset
|
834 | |
| 5440 | 835 | if(!g_file_get_contents(filename, &contents, &length, &error)) { |
| 836 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", "Error reading prefs: %s\n", | |
| 837 | error->message); | |
| 838 | g_error_free(error); | |
|
6040
ab00305db747
[gaim-migrate @ 6490]
Mark Doliner <markdoliner@pidgin.im>
parents:
5986
diff
changeset
|
839 | g_free(filename); |
| 5534 | 840 | prefs_is_loaded = TRUE; |
|
6040
ab00305db747
[gaim-migrate @ 6490]
Mark Doliner <markdoliner@pidgin.im>
parents:
5986
diff
changeset
|
841 | |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
842 | return FALSE; |
| 1170 | 843 | } |
| 844 | ||
| 5440 | 845 | context = g_markup_parse_context_new(&prefs_parser, 0, NULL, NULL); |
| 846 | ||
| 847 | if(!g_markup_parse_context_parse(context, contents, length, NULL)) { | |
| 848 | g_markup_parse_context_free(context); | |
| 849 | g_free(contents); | |
|
6040
ab00305db747
[gaim-migrate @ 6490]
Mark Doliner <markdoliner@pidgin.im>
parents:
5986
diff
changeset
|
850 | g_free(filename); |
| 5534 | 851 | prefs_is_loaded = TRUE; |
|
6040
ab00305db747
[gaim-migrate @ 6490]
Mark Doliner <markdoliner@pidgin.im>
parents:
5986
diff
changeset
|
852 | |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
853 | return FALSE; |
| 5440 | 854 | } |
| 855 | ||
| 856 | if(!g_markup_parse_context_end_parse(context, NULL)) { | |
| 857 | gaim_debug(GAIM_DEBUG_ERROR, "prefs", "Error parsing %s\n", filename); | |
| 858 | g_markup_parse_context_free(context); | |
| 859 | g_free(contents); | |
|
6040
ab00305db747
[gaim-migrate @ 6490]
Mark Doliner <markdoliner@pidgin.im>
parents:
5986
diff
changeset
|
860 | g_free(filename); |
| 5534 | 861 | prefs_is_loaded = TRUE; |
|
6040
ab00305db747
[gaim-migrate @ 6490]
Mark Doliner <markdoliner@pidgin.im>
parents:
5986
diff
changeset
|
862 | |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
863 | return FALSE; |
| 5440 | 864 | } |
| 865 | ||
|
6040
ab00305db747
[gaim-migrate @ 6490]
Mark Doliner <markdoliner@pidgin.im>
parents:
5986
diff
changeset
|
866 | gaim_debug(GAIM_DEBUG_INFO, "prefs", "Finished reading %s\n", filename); |
| 5440 | 867 | g_markup_parse_context_free(context); |
| 868 | g_free(contents); | |
| 869 | g_free(filename); | |
| 5534 | 870 | prefs_is_loaded = TRUE; |
|
5545
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
871 | |
|
a8b1a1262402
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5539
diff
changeset
|
872 | return TRUE; |
|
1006
fb2f2a403962
[gaim-migrate @ 1016]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1002
diff
changeset
|
873 | } |
|
fb2f2a403962
[gaim-migrate @ 1016]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1002
diff
changeset
|
874 |