mark PurpleImageClass as private
[pidgin-git.git] / libpurple / protocols / oscar / msgcookie.c
blob19a3e43aeaa3cfe83224de2914ec7e922e1494e5
1 /*
2 * Purple's oscar protocol plugin
3 * This file is the legal property of its developers.
4 * Please see the AUTHORS file distributed alongside this file.
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
22 * Cookie Caching stuff. Adam wrote this, apparently just some
23 * derivatives of n's SNAC work. I cleaned it up, added comments.
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.
34 #include "oscar.h"
36 /**
37 * aim_cachecookie - appends a cookie to the cookie list
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
43 * @param od session to add to
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!
48 int aim_cachecookie(OscarData *od, IcbmCookie *cookie)
50 IcbmCookie *newcook;
52 if (!od || !cookie)
53 return -EINVAL;
55 newcook = aim_checkcookie(od, cookie->cookie, cookie->type);
57 if (newcook == cookie) {
58 newcook->addtime = time(NULL);
59 return 1;
60 } else if (newcook)
61 aim_cookie_free(od, newcook);
63 cookie->addtime = time(NULL);
65 cookie->next = od->msgcookies;
66 od->msgcookies = cookie;
68 return 0;
71 /**
72 * aim_uncachecookie - grabs a cookie from the cookie cache (removes it from the list)
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.
76 * @param od session to grab cookie from
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:
81 IcbmCookie *aim_uncachecookie(OscarData *od, guint8 *cookie, int type)
83 IcbmCookie *cur, **prev;
85 if (!cookie || !od->msgcookies)
86 return NULL;
88 for (prev = &od->msgcookies; (cur = *prev); ) {
89 if ((cur->type == type) &&
90 (memcmp(cur->cookie, cookie, 8) == 0)) {
91 *prev = cur->next;
92 return cur;
94 prev = &cur->next;
97 return NULL;
101 * aim_mkcookie - generate an IcbmCookie *struct from a cookie string, a type, and a data pointer.
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.
109 IcbmCookie *aim_mkcookie(guint8 *c, int type, void *data)
111 IcbmCookie *cookie;
113 if (!c)
114 return NULL;
116 cookie = g_new0(IcbmCookie, 1);
118 cookie->data = data;
119 cookie->type = type;
120 memcpy(cookie->cookie, c, 8);
122 return cookie;
126 * aim_checkcookie - check to see if a cookietuple has been cached
128 * @param od session to check for the cookie in
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
135 IcbmCookie *aim_checkcookie(OscarData *od, const guint8 *cookie, const int type)
137 IcbmCookie *cur;
139 for (cur = od->msgcookies; cur; cur = cur->next) {
140 if ((cur->type == type) &&
141 (memcmp(cur->cookie, cookie, 8) == 0))
142 return cur;
145 return NULL;
149 * aim_cookie_free - free an IcbmCookie struct
151 * this function removes the cookie *cookie from the list of cookies
152 * in od, and then frees all memory associated with it. including
153 * its data! if you want to use the private data after calling this,
154 * make sure you copy it first.
156 * @param od session to remove the cookie from
157 * @param cookie the address of a pointer to the cookie struct to remove
158 * @return returns -1 on error, 0 on success.
161 int aim_cookie_free(OscarData *od, IcbmCookie *cookie)
163 IcbmCookie *cur, **prev;
165 if (!od || !cookie)
166 return -EINVAL;
168 for (prev = &od->msgcookies; (cur = *prev); ) {
169 if (cur == cookie)
170 *prev = cur->next;
171 else
172 prev = &cur->next;
175 g_free(cookie->data);
176 g_free(cookie);
178 return 0;