Mercurial > pidgin
annotate src/protocols/oscar/msgcookie.c @ 13842:a9ff4499d9ce
[gaim-migrate @ 16295]
Hopefully improve the typing notification code so it's a lot easier
to understand. This also creates a distinction between the signals
emitted when receiving GAIM_TYPED and GAIM_NOT_TYPING messages
(by adding a gaim-typed signal). And the gaim-not-typing signal
should work in all cases.
Most of this is stuff I changed last week during work, thanks to
Meebo
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Tue, 20 Jun 2006 08:17:49 +0000 |
parents | 6519aeb66b31 |
children |
rev | line source |
---|---|
13234 | 1 /* |
2 * Gaim's oscar protocol plugin | |
3 * This file is the legal property of its developers. | |
4 * Please see the AUTHORS file distributed alongside this file. | |
5 * | |
6 * This library is free software; you can redistribute it and/or | |
7 * modify it under the terms of the GNU Lesser General Public | |
8 * License as published by the Free Software Foundation; either | |
9 * version 2 of the License, or (at your option) any later version. | |
10 * | |
11 * This library 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 GNU | |
14 * Lesser General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU Lesser General Public | |
17 * License along with this library; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
19 */ | |
20 | |
2086 | 21 /* |
22 * Cookie Caching stuff. Adam wrote this, apparently just some | |
23 * derivatives of n's SNAC work. I cleaned it up, added comments. | |
11399 | 24 * |
2086 | 25 */ |
26 | |
27 /* | |
28 * I'm assuming that cookies are type-specific. that is, we can have | |
29 * "1234578" for type 1 and type 2 concurrently. if i'm wrong, then we | |
30 * lose some error checking. if we assume cookies are not type-specific and are | |
31 * wrong, we get quirky behavior when cookies step on each others' toes. | |
32 */ | |
33 | |
13234 | 34 #include "oscar.h" |
2086 | 35 |
36 /** | |
37 * aim_cachecookie - appends a cookie to the cookie list | |
38 * | |
39 * if cookie->cookie for type cookie->type is found, updates the | |
40 * ->addtime of the found structure; otherwise adds the given cookie | |
41 * to the cache | |
42 * | |
13592 | 43 * @param od session to add to |
8866 | 44 * @param cookie pointer to struct to append |
45 * @return returns -1 on error, 0 on append, 1 on update. the cookie you pass | |
46 * in may be free'd, so don't count on its value after calling this! | |
2086 | 47 */ |
13592 | 48 int aim_cachecookie(OscarData *od, IcbmCookie *cookie) |
2086 | 49 { |
13239 | 50 IcbmCookie *newcook; |
2086 | 51 |
13592 | 52 if (!od || !cookie) |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
53 return -EINVAL; |
2086 | 54 |
13592 | 55 newcook = aim_checkcookie(od, cookie->cookie, cookie->type); |
11399 | 56 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
57 if (newcook == cookie) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
58 newcook->addtime = time(NULL); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
59 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
60 } else if (newcook) |
13592 | 61 aim_cookie_free(od, newcook); |
2086 | 62 |
11399 | 63 cookie->addtime = time(NULL); |
2086 | 64 |
13592 | 65 cookie->next = od->msgcookies; |
66 od->msgcookies = cookie; | |
2086 | 67 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
68 return 0; |
2086 | 69 } |
70 | |
71 /** | |
72 * aim_uncachecookie - grabs a cookie from the cookie cache (removes it from the list) | |
73 * | |
74 * takes a cookie string and a cookie type and finds the cookie struct associated with that duple, removing it from the cookie list ikn the process. | |
75 * | |
13592 | 76 * @param od session to grab cookie from |
8866 | 77 * @param cookie cookie string to look for |
78 * @param type cookie type to look for | |
79 * @return if found, returns the struct; if none found (or on error), returns NULL: | |
2086 | 80 */ |
13592 | 81 IcbmCookie *aim_uncachecookie(OscarData *od, guint8 *cookie, int type) |
2086 | 82 { |
13239 | 83 IcbmCookie *cur, **prev; |
2086 | 84 |
13592 | 85 if (!cookie || !od->msgcookies) |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
86 return NULL; |
2086 | 87 |
13592 | 88 for (prev = &od->msgcookies; (cur = *prev); ) { |
11399 | 89 if ((cur->type == type) && |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
90 (memcmp(cur->cookie, cookie, 8) == 0)) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
91 *prev = cur->next; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
92 return cur; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
93 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
94 prev = &cur->next; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
95 } |
2086 | 96 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
97 return NULL; |
2086 | 98 } |
99 | |
100 /** | |
13239 | 101 * aim_mkcookie - generate an IcbmCookie *struct from a cookie string, a type, and a data pointer. |
2086 | 102 * |
8866 | 103 * @param c pointer to the cookie string array |
104 * @param type cookie type to use | |
105 * @param data data to be cached with the cookie | |
106 * @return returns NULL on error, a pointer to the newly-allocated | |
107 * cookie on success. | |
2086 | 108 */ |
13592 | 109 IcbmCookie *aim_mkcookie(guint8 *c, int type, void *data) |
2086 | 110 { |
13239 | 111 IcbmCookie *cookie; |
2086 | 112 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
113 if (!c) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
114 return NULL; |
2086 | 115 |
13592 | 116 cookie = calloc(1, sizeof(IcbmCookie)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
117 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
118 cookie->data = data; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
119 cookie->type = type; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
120 memcpy(cookie->cookie, c, 8); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
121 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
122 return cookie; |
2086 | 123 } |
124 | |
125 /** | |
126 * aim_checkcookie - check to see if a cookietuple has been cached | |
127 * | |
13592 | 128 * @param od session to check for the cookie in |
8866 | 129 * @param cookie pointer to the cookie string array |
130 * @param type type of the cookie to look for | |
131 * @return returns a pointer to the cookie struct (still in the list) | |
132 * on success; returns NULL on error/not found | |
2086 | 133 */ |
134 | |
13592 | 135 IcbmCookie *aim_checkcookie(OscarData *od, const guint8 *cookie, int type) |
2086 | 136 { |
13239 | 137 IcbmCookie *cur; |
2086 | 138 |
13592 | 139 for (cur = od->msgcookies; cur; cur = cur->next) { |
11399 | 140 if ((cur->type == type) && |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
141 (memcmp(cur->cookie, cookie, 8) == 0)) |
13592 | 142 return cur; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
143 } |
2086 | 144 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
145 return NULL; |
2086 | 146 } |
147 | |
148 /** | |
13239 | 149 * aim_cookie_free - free an IcbmCookie struct |
2086 | 150 * |
10504 | 151 * this function removes the cookie *cookie from the list of cookies |
13592 | 152 * in od, and then frees all memory associated with it. including |
2086 | 153 * its data! if you want to use the private data after calling this, |
154 * make sure you copy it first. | |
155 * | |
13592 | 156 * @param od session to remove the cookie from |
8866 | 157 * @param cookie the address of a pointer to the cookie struct to remove |
158 * @return returns -1 on error, 0 on success. | |
2086 | 159 * |
160 */ | |
13592 | 161 int aim_cookie_free(OscarData *od, IcbmCookie *cookie) |
2086 | 162 { |
13239 | 163 IcbmCookie *cur, **prev; |
2086 | 164 |
13592 | 165 if (!od || !cookie) |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
166 return -EINVAL; |
2086 | 167 |
13592 | 168 for (prev = &od->msgcookies; (cur = *prev); ) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
169 if (cur == cookie) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
170 *prev = cur->next; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
171 else |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
172 prev = &cur->next; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
173 } |
2086 | 174 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
175 free(cookie->data); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
176 free(cookie); |
2086 | 177 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
178 return 0; |
11399 | 179 } |
2086 | 180 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
181 /* XXX I hate switch */ |
13592 | 182 int aim_msgcookie_gettype(int type) |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
183 { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
184 /* XXX: hokey-assed. needs fixed. */ |
13592 | 185 switch(type) { |
186 case OSCAR_CAPABILITY_BUDDYICON: return AIM_COOKIETYPE_OFTICON; | |
187 case OSCAR_CAPABILITY_TALK: return AIM_COOKIETYPE_OFTVOICE; | |
188 case OSCAR_CAPABILITY_DIRECTIM: return AIM_COOKIETYPE_OFTIMAGE; | |
189 case OSCAR_CAPABILITY_CHAT: return AIM_COOKIETYPE_CHAT; | |
190 case OSCAR_CAPABILITY_GETFILE: return AIM_COOKIETYPE_OFTGET; | |
191 case OSCAR_CAPABILITY_SENDFILE: return AIM_COOKIETYPE_OFTSEND; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
192 default: return AIM_COOKIETYPE_UNKNOWN; |
11399 | 193 } |
2086 | 194 } |