cookie.c
1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <sys/types.h>
#include "cookie.h"
#include "interface/class.h"
#include "interface/hashable"
#include "utils/hash.h"
#include "utils/memory.h"
#include "commons.h"
static
int
httpCookieCtor(void * _this, va_list * params)
{
HttpCookie this = _this;
char * key = va_arg(* params, char*);
char * value;
this->nkey = va_arg(* params, size_t);
value = va_arg(* params, char*);
this->nvalue = va_arg(* params, size_t);
this->key = malloc(this->nkey + 1);
this->key[this->nkey] = 0;
memcpy(this->key, key, this->nkey);
this->value = malloc(this->nvalue + 1);
this->value[this->nvalue] = 0;
memcpy(this->value, value, this->nvalue);
this->hash = sdbm((unsigned char *)key, nkey);
return 0;
}
static
void
httpCookieDtor(void * _this, va_list * params)
{
HttpCookie this = _this;
FREE(this->key);
FREE(this->value);
FREE(this->domain);
FREE(this->path);
}
static
unsigned long
httpCookieGetHash(void * _this)
{
HttpCookie this = _this;
return this->hash;
}
static
void
httpCookieHandleDouble(void * _this, void * _double)
{
HttpCookie this = _this;
HttpCookie doub = _double;
SWAP(char*, this->key, doub->key);
SWAP(char*, this->value, doub->value);
SWAP(char*, this->domain, doub->domain);
SWAP(char*, this->path, doub->path);
SWAP(char*, this->nkey, doub->nkey);
SWAP(char*, this->nvalue, doub->nvalue);
}
INIT_IFACE(Class, httpCookieCtor, httpCookieDtor, NULL);
INIT_IFACE(Hashable, httpCookieGetHash, httpCookieHandleDouble);
CREATE_CLASS(HttpCookie, NULL, IFACE(Class), IFACE(Hashable));
// vim: set ts=4 sw=4: