Freeciv-3.2
Loading...
Searching...
No Matches
packets_json.h
Go to the documentation of this file.
1/***********************************************************************
2 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
6 any later version.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12***********************************************************************/
13#ifndef FC__PACKETS_JSON_H
14#define FC__PACKETS_JSON_H
15
16#ifdef __cplusplus
17extern "C" {
18#endif /* __cplusplus */
19
20#include <jansson.h>
21
22#define log_packet_json log_debug
23
25 enum packet_type *ptype);
26
27#define SEND_PACKET_START(packet_type) \
28 unsigned char buffer[MAX_LEN_PACKET * 5]; \
29 struct plocation *pid_addr; \
30 char *json_buffer = NULL; \
31 struct json_data_out dout; \
32 dio_output_init(&(dout.raw), buffer, sizeof(buffer)); \
33 if (pc->json_mode) { \
34 dout.json = json_object(); \
35 dio_put_uint16_raw(&(dout.raw), 0); \
36 pid_addr = plocation_field_new("pid"); \
37 dio_put_uint8_json(&dout, pid_addr, packet_type); \
38 FC_FREE(pid_addr); \
39 } else { \
40 dout.json = NULL; \
41 dio_put_type_raw(&dout.raw, pc->packet_header.length, 0); \
42 dio_put_type_raw(&dout.raw, pc->packet_header.type, packet_type); \
43 }
44
45#define SEND_PACKET_END(packet_type) \
46 { \
47 size_t size; \
48 if (pc->json_mode) { \
49 json_buffer = json_dumps(dout.json, JSON_COMPACT | JSON_ENSURE_ASCII); \
50 if (json_buffer) { \
51 dio_put_string_raw(&(dout.raw), json_buffer); \
52 log_packet_json("Json out: %s", json_buffer); \
53 } \
54 size = dio_output_used(&dout.raw); \
55 \
56 dio_output_rewind(&(dout.raw)); \
57 dio_put_uint16_raw(&(dout.raw), size); \
58 free(json_buffer); \
59 json_decref(dout.json); \
60 } else { \
61 size = dio_output_used(&dout.raw); \
62 \
63 dio_output_rewind(&dout.raw); \
64 dio_put_type_raw(&dout.raw, pc->packet_header.length, size); \
65 } \
66 fc_assert(!dout.raw.too_short); \
67 return send_packet_data(pc, buffer, size, packet_type); \
68 }
69
70#define SEND_PACKET_DISCARD() \
71 { \
72 if (pc->json_mode) { \
73 json_decref(dout.json); \
74 } \
75 return 0; \
76 }
77
78#define RECEIVE_PACKET_START(packet_type, result) \
79 struct packet_type packet_buf, *result = &packet_buf; \
80 struct data_in din; \
81 if (!pc->json_mode) { \
82 dio_input_init(&din, pc->buffer->data, \
83 data_type_size(pc->packet_header.length)); \
84 { \
85 int size; \
86 \
87 dio_get_type_raw(&din, pc->packet_header.length, &size); \
88 dio_input_init(&din, pc->buffer->data, MIN(size, pc->buffer->ndata)); \
89 } \
90 dio_input_skip(&din, (data_type_size(pc->packet_header.length) \
91 + data_type_size(pc->packet_header.type))); \
92 }
93
94#define RECEIVE_PACKET_END(result) \
95 if (pc->json_mode) { \
96 json_decref(pc->json_packet); \
97 result = fc_malloc(sizeof(*result)); \
98 *result = packet_buf; \
99 return result; \
100 } else { \
101 if (!packet_check(&din, pc)) { \
102 return NULL; \
103 } \
104 remove_packet_from_buffer(pc->buffer); \
105 result = fc_malloc(sizeof(*result)); \
106 *result = packet_buf; \
107 return result; \
108 }
109
110#define RECEIVE_PACKET_FIELD_ERROR(field, ...) \
111 log_packet("Error on field '" #field "'" __VA_ARGS__); \
112 return NULL;
113
114/* Utilities to exchange strings and string vectors. */
115#define PACKET_STRVEC_SEPARATOR '\3'
116#define PACKET_STRVEC_COMPUTE(str, strvec) \
117 if (NULL != strvec) { \
118 strvec_to_str(strvec, PACKET_STRVEC_SEPARATOR, str, sizeof(str)); \
119 } else { \
120 str[0] = '\0'; \
121 }
122#define PACKET_STRVEC_EXTRACT(strvec, str) \
123 if ('\0' != str[0]) { \
124 strvec = strvec_new(); \
125 strvec_from_str(strvec, PACKET_STRVEC_SEPARATOR, str); \
126 } else { \
127 strvec = NULL; \
128 }
129
130#ifdef __cplusplus
131}
132#endif /* __cplusplus */
133
134#endif /* FC__PACKETS_JSON_H */
char * incite_cost
Definition comments.c:75
packet_type
void * get_packet_from_connection_json(struct connection *pc, enum packet_type *ptype)