aboutsummaryrefslogtreecommitdiffstats
path: root/lib/server.c
blob: a798894a8d34b399eea029d230097350545dde3a (plain)
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/* PipeWire AGL Cluster IPC
 *
 * Copyright © 2021 Collabora Ltd.
 *    @author Julian Bouzas <julian.bouzas@collabora.com>
 *
 * SPDX-License-Identifier: MIT
 */

#include <pthread.h>

#include "private.h"
#include "protocol.h"
#include "receiver.h"
#include "server.h"

#define BUFFER_SIZE 1024
#define MAX_REQUEST_HANDLERS 128

struct icipc_server_client_handler
{
  icipc_server_client_handler_func_t handler;
  void *data;
};

struct icipc_server_request_handler
{
  const char *name;
  icipc_server_request_handler_func_t handler;
  void *data;
};

struct icipc_server_priv {
  pthread_mutex_t mutex;
  struct icipc_server_client_handler client_handler;
  size_t n_request_handlers;
  struct icipc_server_request_handler request_handlers[MAX_REQUEST_HANDLERS];
};

static void
sender_state (struct icipc_receiver *base,
              int sender_fd,
              enum icipc_receiver_sender_state sender_state,
              void *data)
{
  struct icipc_server_priv *priv = icipc_receiver_get_user_data (base);

  icipc_log_info ("server: new state %d on client %d", sender_state, sender_fd);

  pthread_mutex_lock (&priv->mutex);
  if (priv->client_handler.handler)
    priv->client_handler.handler ((struct icipc_server *)base, sender_fd,
        sender_state, priv->client_handler.data);
  pthread_mutex_unlock (&priv->mutex);
}

static bool
handle_message (struct icipc_receiver *base,
                int sender_fd,
                const uint8_t *buffer,
                size_t size,
                void *data)
{
  struct icipc_server_priv *priv = icipc_receiver_get_user_data (base);
  const char *name = NULL;
  const struct spa_pod *args = NULL;

  icipc_log_info ("server: message from client %d received", sender_fd);

  /* parse */
  if (!icipc_protocol_parse_request (buffer, size, &name, &args)) {
    const char *msg = "could not parse request";
    const size_t s = icipc_protocol_calculate_reply_error_size (msg);
    uint8_t b[s];
    icipc_protocol_build_reply_error (b, s, msg);
    return icipc_socket_write (sender_fd, b, s) == (ssize_t)s;
  }

  /* handle */
  size_t i;
  bool res = false;
  pthread_mutex_lock (&priv->mutex);

  for (i = 0; i < MAX_REQUEST_HANDLERS; i++) {
    struct icipc_server_request_handler *rh = priv->request_handlers + i;
    if (rh->name != NULL && strcmp (rh->name, name) == 0 &&
        rh->handler != NULL) {
      res = rh->handler ((struct icipc_server *)base, sender_fd, name, args,
          rh->data);
      pthread_mutex_unlock (&priv->mutex);
      return res;
    }
  }

  /* handler was not found, reply with error */
  res = icipc_server_reply_error ((struct icipc_server *)base, sender_fd,
      "request handler not found");

  pthread_mutex_unlock (&priv->mutex);
  return res;
}

static struct icipc_receiver_events events = {
  .sender_state = sender_state,
  .handle_message = handle_message,
};

/* API */

struct icipc_server *
icipc_server_new (const char *path, bool start)
{
  struct icipc_server_priv * priv = NULL;
  struct icipc_receiver *base = NULL;

  base = icipc_receiver_new (path, BUFFER_SIZE, &events, NULL,
      sizeof (struct icipc_server_priv));
  if (base == NULL)
    return NULL;

  priv = icipc_receiver_get_user_data (base);
  pthread_mutex_init (&priv->mutex, NULL);
  priv->n_request_handlers = 0;

  if (start)
    icipc_receiver_start (base);

  return (struct icipc_server *)base;
}

void
icipc_server_free (struct icipc_server *self)
{
  struct icipc_receiver *base = icipc_server_to_receiver (self);
  struct icipc_server_priv *priv = icipc_receiver_get_user_data (base);

  pthread_mutex_destroy (&priv->mutex);

  icipc_receiver_free (base);
}

void
icipc_server_set_client_handler (struct icipc_server *self,
                                 icipc_server_client_handler_func_t handler,
                                 void *data)
{
  struct icipc_receiver *base = icipc_server_to_receiver (self);
  struct icipc_server_priv *priv = icipc_receiver_get_user_data (base);

  pthread_mutex_lock (&priv->mutex);
  priv->client_handler.handler = handler;
  priv->client_handler.data = data;
  pthread_mutex_unlock (&priv->mutex);
}

void
icipc_server_clear_client_handler (struct icipc_server *self)
{
  struct icipc_receiver *base = icipc_server_to_receiver (self);
  struct icipc_server_priv *priv = icipc_receiver_get_user_data (base);

  pthread_mutex_lock (&priv->mutex);
  priv->client_handler.handler = NULL;
  priv->client_handler.data = NULL;
  pthread_mutex_unlock (&priv->mutex);
}

bool
icipc_server_set_request_handler (struct icipc_server *self,
                                  const char *name,
                                  icipc_server_request_handler_func_t handler,
                                  void *data)
{
  struct icipc_receiver *base = icipc_server_to_receiver (self);
  struct icipc_server_priv *priv = icipc_receiver_get_user_data (base);
  size_t i;

  /* check params */
  if (name == NULL)
    return false;

  pthread_mutex_lock (&priv->mutex);

  /* make sure handler does not exist */
  for (i = 0; i < MAX_REQUEST_HANDLERS; i++) {
    struct icipc_server_request_handler *rh = priv->request_handlers + i;
    if (rh->name != NULL && strcmp (rh->name, name) == 0) {
      pthread_mutex_unlock (&priv->mutex);
      return false;
    }
  }

  /* set handler */
  for (i = 0; i < MAX_REQUEST_HANDLERS; i++) {
    struct icipc_server_request_handler *rh = priv->request_handlers + i;
    if (rh->name == NULL) {
      rh->name = name;
      rh->handler = handler;
      rh->data = data;
      pthread_mutex_unlock (&priv->mutex);
      return true;
    }
  }

  pthread_mutex_unlock (&priv->mutex);

  return false;
}

void
icipc_server_clear_request_handler (struct icipc_server *self,
                                    const char *name)
{
  struct icipc_receiver *base = icipc_server_to_receiver (self);
  struct icipc_server_priv *priv = icipc_receiver_get_user_data (base);
  size_t i;

  /* check params */
  if (name == NULL)
    return;

  pthread_mutex_lock (&priv->mutex);

  /* clear handler */
  for (i = 0; i < MAX_REQUEST_HANDLERS; i++) {
    struct icipc_server_request_handler *rh = priv->request_handlers + i;
    if (rh->name != NULL && strcmp (rh->name, name) == 0) {
      rh->name = NULL;
      break;
    }
  }

  pthread_mutex_unlock (&priv->mutex);
}

bool
icipc_server_reply_ok (struct icipc_server *self,
                       int client_fd,
                       const struct spa_pod *value)
{
  const size_t s = icipc_protocol_calculate_reply_ok_size (value);
  uint8_t b[s];
  icipc_protocol_build_reply_ok (b, s, value);
  return icipc_socket_write (client_fd, b, s) == (ssize_t)s;
}

bool
icipc_server_reply_error (struct icipc_server *self,
                          int client_fd,
                          const char *msg)
{
  if (msg == NULL)
    return false;

  const size_t s = icipc_protocol_calculate_reply_error_size (msg);
  uint8_t b[s];
  icipc_protocol_build_reply_error (b, s, msg);
  return icipc_socket_write (client_fd, b, s) == (ssize_t)s;
}