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
105
106
107
108
109
110
|
/* See LICENSE file for copyright and license details. */
#ifndef COMMUNICATION_H
#define COMMUNICATION_H
#include <stdio.h>
#include <stdlib.h>
#ifndef GCC_ONLY
# if defined(__GNUC__) && !defined(__clang__)
# define GCC_ONLY(...) __VA_ARGS__
# else
# define GCC_ONLY(...) /* nothing */
# endif
#endif
/**
* Construct a message
*
* @param bufp:char** Output parameter for the buffer, must not have side-effects
* @param np:size_t* Output parameter for the size of the buffer sans `extra`
* @param extra:size_t The extra number for bytes to allocate to the buffer
* @param format:string-literal Message format string
* @param ... Message formatting arguments
*/
#define MAKE_MESSAGE(bufp, np, extra, format, ...)\
do {\
ssize_t m__;\
snprintf(NULL, 0, format "%zn", __VA_ARGS__, &m__);\
*(bufp) = malloc((size_t)(extra) + (size_t)m__ + (size_t)1);\
if (!*(bufp))\
return -1;\
sprintf(*(bufp), format, __VA_ARGS__);\
*(np) = (size_t)m__;\
} while (0)
/**
* Send a custom error without an error number
*
* @param ... The error description to send
* @return 1: Client disconnected
* 0: Success (possibily delayed)
* -1: An error occurred
*/
#define send_error(...) ((send_error)(conn, message_id, __VA_ARGS__))
/**
* Send a standard error
*
* @param ... The value of `errno`, 0 to indicate success
* @return 1: Client disconnected
* 0: Success (possibily delayed)
* -1: An error occurred
*/
#define send_errno(...) ((send_errno)(conn, message_id, __VA_ARGS__))
/**
* Send a message
*
* @param conn The index of the connection
* @param buf The data to send
* @param n The size of `buf`
* @return Zero on success, -1 on error, 1 if disconncted
* EINTR, EAGAIN, EWOULDBLOCK, and ECONNRESET count
* as success (ECONNRESET cause 1 to be returned),
* and are handled appropriately.
*/
int send_message(size_t conn, char *restrict buf, size_t n);
/**
* Send a custom error without an error number
*
* @param conn The index of the connection
* @param message_id The ID of the message to which this message is a response
* @param desc The error description to send
* @return 1: Client disconnected
* 0: Success (possibily delayed)
* -1: An error occurred
*/
GCC_ONLY(__attribute__((__nonnull__)))
int (send_error)(size_t conn, const char *restrict message_id, const char *restrict desc);
/**
* Send a standard error
*
* @param conn The index of the connection
* @param message_id The ID of the message to which this message is a response
* @param number The value of `errno`, 0 to indicate success
* @return 1: Client disconnected
* 0: Success (possibily delayed)
* -1: An error occurred
*/
GCC_ONLY(__attribute__((__nonnull__)))
int (send_errno)(size_t conn, const char *restrict message_id, int number);
/**
* Continue sending the queued messages
*
* @param conn The index of the connection
* @return Zero on success, -1 on error, 1 if disconncted
* EINTR, EAGAIN, EWOULDBLOCK, and ECONNRESET count
* as success (ECONNRESET cause 1 to be returned),
* and are handled appropriately.
*/
static inline int
continue_send(size_t conn)
{
return send_message(conn, NULL, 0);
}
#endif
|