packet.c
1.9 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#include <json/json.h>
#include "token/packet.h"
static
void
__construct(struct PACKET * _this, va_list * params)
{
packet_set_default_content(_this);
}
static
void
__jsonConst(struct PACKET * _this, struct json_object * json)
{
struct json_object * header = NULL;
struct json_object * data = NULL;
if (! json_type_array == json_object_get_type(json)) {
packet_set_default_content(_this);
return;
}
header = json_object_array_get_idx(json, 0);
data = json_object_array_get_idx(json, 1);
if (! (header && data)) {
packet_set_default_content(_this);
return;
}
packet_setHeader(_this, newFromJson(DYNTYPE, header));
packet_setData(_this, newFromJson(DYNTYPE, data));
}
static
void
__destruct(struct PACKET * _this)
{
}
static
struct json_object *
__toJson(struct PACKET * _this)
{
struct json_object * json = json_object_new_array();
json_object_array_add(json, toJson(packet_getHeader(_this)));
json_object_array_add(json, toJson(packet_getData(_this)));
return json;
}
static const
struct CCLASS _packet = {
sizeof(struct PACKET),
(ctor)__construct,
(jCtor)__jsonConst,
(dtor)__destruct,
(jTo)__toJson
};
const struct CCLASS * const PACKET = &_packet;
struct DYNTYPE *
packet_getHeader(
struct PACKET * _this)
{
return _this->content[PACKET_HEADER];
}
struct DYNTYPE *
packet_getData(
struct PACKET * _this)
{
return _this->content[PACKET_DATA];
}
void
packet_setHeader(
struct PACKET * _this,
struct DYNTYPE * header)
{
_this->content[PACKET_HEADER] = header;
}
void
packet_setData(
struct PACKET * _this,
struct DYNTYPE * data)
{
_this->content[PACKET_DATA] = data;
}
void
packet_set_default_content(
struct PACKET * _this)
{
_this->content[PACKET_HEADER] = NULL;
_this->content[PACKET_DATA] = NULL;
}
// vim: set et ts=4 sw=4: