Mercurial > pidgin.yaz
annotate src/protocols/msn/table.c @ 9802:acf175d9f79b
[gaim-migrate @ 10670]
A wee bit o' cleanup. Rrrrrrr. Avast.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sat, 21 Aug 2004 17:20:48 +0000 |
parents | ab6636c5a136 |
children | 700f8fb9e581 |
rev | line source |
---|---|
8810 | 1 /** |
2 * @file table.c MSN helper structure | |
3 * | |
4 * gaim | |
5 * | |
9198
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
8810
diff
changeset
|
6 * Gaim is the legal property of its developers, whose names are too numerous |
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
8810
diff
changeset
|
7 * to list here. Please refer to the COPYRIGHT file distributed with this |
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
8810
diff
changeset
|
8 * source distribution. |
8810 | 9 * |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
12 * the Free Software Foundation; either version 2 of the License, or | |
13 * (at your option) any later version. | |
14 * | |
15 * This program is distributed in the hope that it will be useful, | |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 * GNU General Public License for more details. | |
19 * | |
20 * You should have received a copy of the GNU General Public License | |
21 * along with this program; if not, write to the Free Software | |
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
23 */ | |
24 #include "msn.h" | |
25 #include "table.h" | |
26 | |
27 static void | |
28 null_cmd_cb(MsnCmdProc *cmdproc, MsnCommand *cmd) | |
29 { | |
30 } | |
31 | |
32 static void | |
33 null_error_cb(MsnCmdProc *cmdproc, MsnTransaction *trans, int error) | |
34 { | |
35 } | |
36 | |
37 MsnTable * | |
38 msn_table_new() | |
39 { | |
40 MsnTable *table; | |
41 | |
42 table = g_new0(MsnTable, 1); | |
43 | |
44 table->cmds = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, NULL); | |
45 table->msgs = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, NULL); | |
46 table->errors = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, NULL); | |
47 | |
48 table->async = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, NULL); | |
49 | |
50 return table; | |
51 } | |
52 | |
53 void | |
54 msn_table_destroy(MsnTable *table) | |
55 { | |
56 g_return_if_fail(table != NULL); | |
57 | |
58 g_hash_table_destroy(table->cmds); | |
59 g_hash_table_destroy(table->msgs); | |
60 g_hash_table_destroy(table->errors); | |
61 | |
62 g_hash_table_destroy(table->async); | |
63 | |
64 g_free(table); | |
65 } | |
66 | |
67 void | |
68 msn_table_add_cmd(MsnTable *table, | |
69 char *command, char *answer, MsnTransCb cb) | |
70 { | |
71 GHashTable *cbs; | |
72 | |
73 g_return_if_fail(table != NULL); | |
74 g_return_if_fail(answer != NULL); | |
75 | |
76 cbs = NULL; | |
77 | |
78 if (command == NULL) | |
79 { | |
80 cbs = table->async; | |
81 } | |
82 else | |
83 { | |
84 cbs = g_hash_table_lookup(table->cmds, command); | |
85 | |
86 if (cbs == NULL) | |
87 { | |
88 cbs = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, NULL); | |
89 g_hash_table_insert(table->cmds, command, cbs); | |
90 } | |
91 } | |
92 | |
93 if (cb == NULL) | |
94 cb = null_cmd_cb; | |
95 | |
96 g_hash_table_insert(cbs, answer, cb); | |
97 } | |
98 | |
99 void | |
100 msn_table_add_error(MsnTable *table, | |
101 char *answer, MsnErrorCb cb) | |
102 { | |
103 g_return_if_fail(table != NULL); | |
104 g_return_if_fail(answer != NULL); | |
105 | |
106 if (cb == NULL) | |
107 cb = null_error_cb; | |
108 | |
109 g_hash_table_insert(table->errors, answer, cb); | |
110 } | |
111 | |
112 void | |
113 msn_table_add_msg_type(MsnTable *table, | |
114 char *type, MsnMsgCb cb) | |
115 { | |
116 g_return_if_fail(table != NULL); | |
117 g_return_if_fail(type != NULL); | |
118 g_return_if_fail(cb != NULL); | |
119 | |
120 #if 0 | |
121 if (cb == NULL) | |
122 cb = null_msg_cb; | |
123 #endif | |
124 | |
125 g_hash_table_insert(table->msgs, type, cb); | |
126 } |