Asterisk - The Open Source Telephony Project  18.5.0
messaging.c
Go to the documentation of this file.
1 /*
2  * Asterisk -- An open source telephony toolkit.
3  *
4  * Copyright (C) 2014, Digium, Inc.
5  *
6  * Matt Jordan <[email protected]>
7  *
8  * See http://www.asterisk.org for more information about
9  * the Asterisk project. Please do not directly contact
10  * any of the maintainers of this project for assistance;
11  * the project provides a web site, mailing lists and IRC
12  * channels for your use.
13  *
14  * This program is free software, distributed under the terms of
15  * the GNU General Public License Version 2. See the LICENSE file
16  * at the top of the source tree.
17  */
18 
19 /*!
20  * \file
21  *
22  * \brief Stasis out-of-call text message support
23  *
24  * \author Matt Jordan <[email protected]>
25  */
26 
27 #include "asterisk.h"
28 
29 #include "asterisk/message.h"
30 #include "asterisk/endpoints.h"
31 #include "asterisk/astobj2.h"
32 #include "asterisk/vector.h"
33 #include "asterisk/lock.h"
34 #include "asterisk/utils.h"
35 #include "asterisk/test.h"
36 #include "messaging.h"
37 
38 /*!
39  * \brief Subscription to all technologies
40  */
41 #define TECH_WILDCARD "__AST_ALL_TECH"
42 
43 /*!
44  * \brief Number of buckets for the \ref endpoint_subscriptions container
45  */
46 #define ENDPOINTS_NUM_BUCKETS 127
47 
48 /*! \brief Storage object for an application */
50  /*! ao2 ref counted private object to pass to the callback */
51  void *pvt;
52  /*! The callback to call when this application has a message */
54  /*! The name (key) of the application */
55  char app_name[];
56 };
57 
58 /*! \brief A subscription to some endpoint or technology */
60  /*! The applications that have subscribed to this endpoint or tech */
62  /*! The name of this endpoint or tech */
63  char token[];
64 };
65 
66 /*! \brief The subscriptions to endpoints */
68 
69 /*!
70  * \brief The subscriptions to technologies
71  *
72  * \note These are stored separately from standard endpoints, given how
73  * relatively few of them there are.
74  */
75 static AST_VECTOR(,struct message_subscription *) tech_subscriptions;
76 
77 /*! \brief RWLock for \c tech_subscriptions */
78 static ast_rwlock_t tech_subscriptions_lock;
79 
80 /*! \internal \brief Destructor for \c application_tuple */
81 static void application_tuple_dtor(void *obj)
82 {
83  struct application_tuple *tuple = obj;
84 
85  ao2_cleanup(tuple->pvt);
86 }
87 
88 /*! \internal \brief Constructor for \c application_tuple */
90 {
91  struct application_tuple *tuple;
92  size_t size = sizeof(*tuple) + strlen(app_name) + 1;
93 
94  ast_assert(callback != NULL);
95 
96  tuple = ao2_alloc_options(size, application_tuple_dtor, AO2_ALLOC_OPT_LOCK_NOLOCK);
97  if (!tuple) {
98  return NULL;
99  }
100 
101  strcpy(tuple->app_name, app_name); /* Safe */
102  tuple->pvt = ao2_bump(pvt);
103  tuple->callback = callback;
104 
105  return tuple;
106 }
107 
108 /*! \internal \brief Destructor for \ref message_subscription */
109 static void message_subscription_dtor(void *obj)
110 {
111  struct message_subscription *sub = obj;
112  int i;
113 
114  for (i = 0; i < AST_VECTOR_SIZE(&sub->applications); i++) {
115  struct application_tuple *tuple = AST_VECTOR_GET(&sub->applications, i);
116 
117  ao2_cleanup(tuple);
118  }
119  AST_VECTOR_FREE(&sub->applications);
120 }
121 
122 /*! \internal \brief Constructor for \ref message_subscription */
123 static struct message_subscription *message_subscription_alloc(const char *token)
124 {
125  struct message_subscription *sub;
126  size_t size = sizeof(*sub) + strlen(token) + 1;
127 
129  if (!sub) {
130  return NULL;
131  }
132  strcpy(sub->token, token); /* Safe */
133 
134  return sub;
135 }
136 
137 /*! AO2 hash function for \ref message_subscription */
138 static int message_subscription_hash_cb(const void *obj, const int flags)
139 {
140  const struct message_subscription *sub;
141  const char *key;
142 
143  switch (flags & OBJ_SEARCH_MASK) {
144  case OBJ_SEARCH_KEY:
145  key = obj;
146  break;
147  case OBJ_SEARCH_OBJECT:
148  sub = obj;
149  key = sub->token;
150  break;
151  default:
152  /* Hash can only work on something with a full key. */
153  ast_assert(0);
154  return 0;
155  }
156  return ast_str_hash(key);
157 }
158 
159 /*! AO2 comparison function for \ref message_subscription */
160 static int message_subscription_compare_cb(void *obj, void *arg, int flags)
161 {
162  const struct message_subscription *object_left = obj;
163  const struct message_subscription *object_right = arg;
164  const char *right_key = arg;
165  int cmp;
166 
167  switch (flags & OBJ_SEARCH_MASK) {
168  case OBJ_SEARCH_OBJECT:
169  right_key = object_right->token;
170  /* Fall through */
171  case OBJ_SEARCH_KEY:
172  cmp = strcmp(object_left->token, right_key);
173  break;
175  /*
176  * We could also use a partial key struct containing a length
177  * so strlen() does not get called for every comparison instead.
178  */
179  cmp = strncmp(object_left->token, right_key, strlen(right_key));
180  break;
181  default:
182  /*
183  * What arg points to is specific to this traversal callback
184  * and has no special meaning to astobj2.
185  */
186  cmp = 0;
187  break;
188  }
189  if (cmp) {
190  return 0;
191  }
192  /*
193  * At this point the traversal callback is identical to a sorted
194  * container.
195  */
196  return CMP_MATCH;
197 }
198 
199 /*! \internal \brief Convert a \c ast_msg To/From URI to a Stasis endpoint name */
200 static void msg_to_endpoint(const struct ast_msg *msg, char *buf, size_t len)
201 {
202  const char *endpoint = ast_msg_get_endpoint(msg);
203 
204  snprintf(buf, len, "%s%s%s", ast_msg_get_tech(msg),
205  ast_strlen_zero(endpoint) ? "" : "/",
206  S_OR(endpoint, ""));
207 }
208 
209 /*! \internal
210  * \brief Callback from the \c message API that determines if we can handle
211  * this message
212  */
213 static int has_destination_cb(const struct ast_msg *msg)
214 {
215  struct message_subscription *sub;
216  int i;
217  char buf[256];
218 
219  msg_to_endpoint(msg, buf, sizeof(buf));
220 
221  ast_rwlock_rdlock(&tech_subscriptions_lock);
222  for (i = 0; i < AST_VECTOR_SIZE(&tech_subscriptions); i++) {
223  sub = AST_VECTOR_GET(&tech_subscriptions, i);
224 
225  if (!sub) {
226  continue;
227  }
228 
229  if (!strcmp(sub->token, TECH_WILDCARD)
230  || !strncasecmp(sub->token, buf, strlen(sub->token))
231  || !strncasecmp(sub->token, buf, strlen(sub->token))) {
232  ast_rwlock_unlock(&tech_subscriptions_lock);
233  goto match;
234  }
235 
236  }
237  ast_rwlock_unlock(&tech_subscriptions_lock);
238 
239  sub = ao2_find(endpoint_subscriptions, buf, OBJ_SEARCH_KEY);
240  if (sub) {
241  ao2_ref(sub, -1);
242  goto match;
243  }
244 
245  ast_debug(1, "No subscription found for %s\n", buf);
246  return 0;
247 
248 match:
249  return 1;
250 }
251 
252 static struct ast_json *msg_to_json(struct ast_msg *msg)
253 {
254  struct ast_json *json_obj;
255  struct ast_json *json_vars;
256  struct ast_msg_var_iterator *it_vars;
257  const char *name;
258  const char *value;
259 
260  it_vars = ast_msg_var_iterator_init(msg);
261  if (!it_vars) {
262  return NULL;
263  }
264 
265  json_vars = ast_json_object_create();
266  if (!json_vars) {
268  return NULL;
269  }
270 
271  while (ast_msg_var_iterator_next_received(msg, it_vars, &name, &value)) {
272  struct ast_json *json_val = ast_json_string_create(value);
273  if (!json_val || ast_json_object_set(json_vars, name, json_val)) {
274  ast_json_unref(json_vars);
276  return NULL;
277  }
278 
279  ast_msg_var_unref_current(it_vars);
280  }
282 
283  json_obj = ast_json_pack("{s: s, s: s, s: s, s: o}",
284  "from", ast_msg_get_from(msg),
285  "to", ast_msg_get_to(msg),
286  "body", ast_msg_get_body(msg),
287  "variables", json_vars);
288 
289  return json_obj;
290 }
291 
292 static void dispatch_message(struct message_subscription *sub, const char *endpoint_name, struct ast_json *json_msg)
293 {
294  int i;
295 
296  ast_debug(3, "Dispatching message to subscription %s for endpoint %s\n",
297  sub->token,
298  endpoint_name);
299  for (i = 0; i < AST_VECTOR_SIZE(&sub->applications); i++) {
300  struct application_tuple *tuple = AST_VECTOR_GET(&sub->applications, i);
301 
302  tuple->callback(endpoint_name, json_msg, tuple->pvt);
303  }
304 }
305 
306 static int handle_msg_cb(struct ast_msg *msg)
307 {
308  /* We have at most 3 subscriptions: TECH_WILDCARD, tech itself, and endpoint. */
309  struct message_subscription *matching_subscriptions[3];
310  struct message_subscription *sub;
311  int i, j;
312  int result;
313  char buf[256];
314  const char *endpoint_name;
315  struct ast_json *json_msg;
316 
317  msg_to_endpoint(msg, buf, sizeof(buf));
318  endpoint_name = buf;
319  json_msg = msg_to_json(msg);
320  if (!json_msg) {
321  return -1;
322  }
323  result = -1;
324 
325  /* Find subscriptions to TECH_WILDCARD and to the endpoint's technology. */
326  ast_rwlock_rdlock(&tech_subscriptions_lock);
327  for (i = 0, j = 0; i < AST_VECTOR_SIZE(&tech_subscriptions) && j < 2; i++) {
328  sub = AST_VECTOR_GET(&tech_subscriptions, i);
329 
330  if (!sub) {
331  continue;
332  }
333 
334  if (!strcmp(sub->token, TECH_WILDCARD)
335  || !strncasecmp(sub->token, buf, strlen(sub->token))) {
336  ao2_ref(sub, +1);
337  matching_subscriptions[j++] = sub;
338  }
339  }
340  ast_rwlock_unlock(&tech_subscriptions_lock);
341 
342  /* Find the subscription to this particular endpoint. */
343  sub = ao2_find(endpoint_subscriptions, buf, OBJ_SEARCH_KEY);
344  if (sub) {
345  matching_subscriptions[j++] = sub;
346  }
347 
348  /* Dispatch the message to all matching subscriptions. */
349  for (i = 0; i < j; i++) {
350  sub = matching_subscriptions[i];
351 
352  dispatch_message(sub, endpoint_name, json_msg);
353 
354  ao2_ref(sub, -1);
355  result = 0;
356  }
357 
358  ast_json_unref(json_msg);
359  return result;
360 }
361 
363  .name = "ari",
364  .handle_msg = handle_msg_cb,
365  .has_destination = has_destination_cb,
366 };
367 
368 static int messaging_subscription_cmp(struct message_subscription *sub, const char *key)
369 {
370  return !strcmp(sub->token, key) ? 1 : 0;
371 }
372 
373 static int application_tuple_cmp(struct application_tuple *item, const char *key)
374 {
375  return !strcmp(item->app_name, key) ? 1 : 0;
376 }
377 
378 static int is_app_subscribed(struct message_subscription *sub, const char *app_name)
379 {
380  int i;
381 
382  for (i = 0; i < AST_VECTOR_SIZE(&sub->applications); i++) {
383  struct application_tuple *tuple;
384 
385  tuple = AST_VECTOR_GET(&sub->applications, i);
386  if (tuple && !strcmp(tuple->app_name, app_name)) {
387  return 1;
388  }
389  }
390 
391  return 0;
392 }
393 
394 static struct message_subscription *get_subscription(struct ast_endpoint *endpoint)
395 {
396  struct message_subscription *sub = NULL;
397 
398  if (endpoint && !ast_strlen_zero(ast_endpoint_get_resource(endpoint))) {
399  sub = ao2_find(endpoint_subscriptions, ast_endpoint_get_id(endpoint), OBJ_SEARCH_KEY);
400  } else {
401  int i;
402 
403  ast_rwlock_rdlock(&tech_subscriptions_lock);
404  for (i = 0; i < AST_VECTOR_SIZE(&tech_subscriptions); i++) {
405  sub = AST_VECTOR_GET(&tech_subscriptions, i);
406 
407  if (sub && !strcmp(sub->token, endpoint ? ast_endpoint_get_tech(endpoint) : TECH_WILDCARD)) {
408  ao2_bump(sub);
409  break;
410  }
411 
412  /* Need to reset the pointer at this line to prevent from using the wrong subscription due to
413  * the token check failing.
414  */
415  sub = NULL;
416  }
417  ast_rwlock_unlock(&tech_subscriptions_lock);
418  }
419 
420  return sub;
421 }
422 
423 void messaging_app_unsubscribe_endpoint(const char *app_name, const char *endpoint_id)
424 {
426  RAII_VAR(struct ast_endpoint *, endpoint, NULL, ao2_cleanup);
427 
428  endpoint = ast_endpoint_find_by_id(endpoint_id);
429  sub = get_subscription(endpoint);
430  if (!sub) {
431  return;
432  }
433 
434  ao2_lock(sub);
435  if (!is_app_subscribed(sub, app_name)) {
436  ao2_unlock(sub);
437  return;
438  }
439 
441  if (AST_VECTOR_SIZE(&sub->applications) == 0) {
442  if (endpoint && !ast_strlen_zero(ast_endpoint_get_resource(endpoint))) {
443  ao2_unlink(endpoint_subscriptions, sub);
444  } else {
445  ast_rwlock_wrlock(&tech_subscriptions_lock);
446  AST_VECTOR_REMOVE_CMP_UNORDERED(&tech_subscriptions, endpoint ? ast_endpoint_get_id(endpoint) : TECH_WILDCARD,
448  ast_rwlock_unlock(&tech_subscriptions_lock);
449  ao2_ref(sub, -1); /* Release the reference held by tech_subscriptions */
450  }
451  }
452  ao2_unlock(sub);
453 
454  ast_debug(3, "App '%s' unsubscribed to messages from endpoint '%s'\n", app_name, endpoint ? ast_endpoint_get_id(endpoint) : "-- ALL --");
455  ast_test_suite_event_notify("StasisMessagingSubscription", "SubState: Unsubscribed\r\nAppName: %s\r\nToken: %s\r\n",
456  app_name, endpoint ? ast_endpoint_get_id(endpoint) : "ALL");
457 }
458 
460 {
461  struct message_subscription *sub = get_subscription(endpoint);
462 
463  if (sub) {
464  return sub;
465  }
466 
467  sub = message_subscription_alloc(endpoint ? ast_endpoint_get_id(endpoint) : TECH_WILDCARD);
468  if (!sub) {
469  return NULL;
470  }
471 
472  /* Either endpoint_subscriptions or tech_subscriptions will hold a reference to
473  * the subscription. This reference is released to allow the subscription to
474  * eventually destruct when there are no longer any applications receiving
475  * events from the subscription.
476  */
477  if (endpoint && !ast_strlen_zero(ast_endpoint_get_resource(endpoint))) {
478  ao2_link(endpoint_subscriptions, sub);
479  } else {
480  ast_rwlock_wrlock(&tech_subscriptions_lock);
481  ao2_ref(sub, +1);
482  if (AST_VECTOR_APPEND(&tech_subscriptions, sub)) {
483  /* Release the refs that were for the vector and the allocation. */
484  ao2_ref(sub, -2);
485  sub = NULL;
486  }
487  ast_rwlock_unlock(&tech_subscriptions_lock);
488  }
489 
490  return sub;
491 }
492 
494 {
496  struct application_tuple *tuple;
497 
498  sub = get_or_create_subscription(endpoint);
499  if (!sub) {
500  return -1;
501  }
502 
503  ao2_lock(sub);
504  if (is_app_subscribed(sub, app_name)) {
505  ao2_unlock(sub);
506  return 0;
507  }
508 
509  tuple = application_tuple_alloc(app_name, callback, pvt);
510  if (!tuple) {
511  ao2_unlock(sub);
512  return -1;
513  }
514  if (AST_VECTOR_APPEND(&sub->applications, tuple)) {
515  ao2_ref(tuple, -1);
516  ao2_unlock(sub);
517  return -1;
518  }
519  ao2_unlock(sub);
520 
521  ast_debug(3, "App '%s' subscribed to messages from endpoint '%s'\n", app_name, endpoint ? ast_endpoint_get_id(endpoint) : "-- ALL --");
522  ast_test_suite_event_notify("StasisMessagingSubscription", "SubState: Subscribed\r\nAppName: %s\r\nToken: %s\r\n",
523  app_name, endpoint ? ast_endpoint_get_id(endpoint) : "ALL");
524 
525  return 0;
526 }
527 
528 
530 {
531  ast_msg_handler_unregister(&ari_msg_handler);
532  ao2_ref(endpoint_subscriptions, -1);
533  AST_VECTOR_FREE(&tech_subscriptions);
534  ast_rwlock_destroy(&tech_subscriptions_lock);\
535 
536  return 0;
537 }
538 
539 int messaging_init(void)
540 {
541  endpoint_subscriptions = ao2_t_container_alloc_hash(AO2_ALLOC_OPT_LOCK_RWLOCK, 0,
543  message_subscription_compare_cb, "Endpoint messaging subscription container creation");
544  if (!endpoint_subscriptions) {
545  return -1;
546  }
547 
548  if (AST_VECTOR_INIT(&tech_subscriptions, 4)) {
549  ao2_ref(endpoint_subscriptions, -1);
550  return -1;
551  }
552 
553  if (ast_rwlock_init(&tech_subscriptions_lock)) {
554  ao2_ref(endpoint_subscriptions, -1);
555  AST_VECTOR_FREE(&tech_subscriptions);
556  return -1;
557  }
558 
559  if (ast_msg_handler_register(&ari_msg_handler)) {
560  ao2_ref(endpoint_subscriptions, -1);
561  AST_VECTOR_FREE(&tech_subscriptions);
562  ast_rwlock_destroy(&tech_subscriptions_lock);
563  return -1;
564  }
565 
566  return 0;
567 }
#define AST_VECTOR_FREE(vec)
Deallocates this vector.
Definition: vector.h:174
int ast_msg_handler_unregister(const struct ast_msg_handler *handler)
Unregister a ast_msg_handler.
Definition: message.c:1671
#define ast_rwlock_rdlock(a)
Definition: lock.h:233
static void message_subscription_dtor(void *obj)
Definition: messaging.c:109
Asterisk locking-related definitions:
Asterisk main include file. File version handling, generic pbx functions.
static int application_tuple_cmp(struct application_tuple *item, const char *key)
Definition: messaging.c:373
const char * ast_msg_get_tech(const struct ast_msg *msg)
Retrieve the technology associated with this message.
Definition: message.c:546
struct ast_json * ast_json_pack(char const *format,...)
Helper for creating complex JSON values.
Definition: json.c:591
const char * ast_msg_get_endpoint(const struct ast_msg *msg)
Retrieve the endpoint associated with this message.
Definition: message.c:551
#define AST_VECTOR_REMOVE_CMP_UNORDERED(vec, value, cmp, cleanup)
Remove an element from a vector that matches the given comparison.
Definition: vector.h:488
static int has_destination_cb(const struct ast_msg *msg)
Definition: messaging.c:213
The arg parameter is a search key, but is not an object.
Definition: astobj2.h:1105
#define ast_rwlock_destroy(rwlock)
Definition: lock.h:231
void ast_json_unref(struct ast_json *value)
Decrease refcount on value. If refcount reaches zero, value is freed.
Definition: json.c:73
An external processor of received messages.
Definition: message.h:98
char buf[BUFSIZE]
Definition: eagi_proxy.c:66
static int message_subscription_compare_cb(void *obj, void *arg, int flags)
Definition: messaging.c:160
static int handle_msg_cb(struct ast_msg *msg)
Definition: messaging.c:306
static struct message_subscription * message_subscription_alloc(const char *token)
Definition: messaging.c:123
const char * ast_endpoint_get_tech(const struct ast_endpoint *endpoint)
Gets the technology of the given endpoint.
int ast_msg_handler_register(const struct ast_msg_handler *handler)
Register a ast_msg_handler.
Definition: message.c:1629
message_received_cb callback
Definition: messaging.c:53
int messaging_cleanup(void)
Tidy up the messaging layer.
Definition: messaging.c:529
#define TECH_WILDCARD
Subscription to all technologies.
Definition: messaging.c:41
#define AST_VECTOR_APPEND(vec, elem)
Append an element to a vector, growing the vector if needed.
Definition: vector.h:256
Storage object for an application.
Definition: messaging.c:49
Test Framework API.
static struct aco_type item
Definition: test_config.c:1463
static struct stasis_rest_handlers applications
REST handler for /api-docs/applications.json.
#define ao2_alloc_options(data_size, destructor_fn, options)
Definition: astobj2.h:406
#define ast_assert(a)
Definition: utils.h:695
#define ao2_unlock(a)
Definition: astobj2.h:730
static int match(struct ast_sockaddr *addr, unsigned short callno, unsigned short dcallno, const struct chan_iax2_pvt *cur, int check_dcallno)
Definition: chan_iax2.c:2315
struct ast_endpoint * ast_endpoint_find_by_id(const char *id)
Finds the endpoint with the given tech[/resource] id.
Endpoint abstractions.
#define NULL
Definition: resample.c:96
Out-of-call text message support.
int value
Definition: syslog.c:37
#define ast_rwlock_unlock(a)
Definition: lock.h:232
const char * ast_msg_get_body(const struct ast_msg *msg)
Get the body of a message.
Definition: message.c:531
int ast_msg_var_iterator_next_received(const struct ast_msg *msg, struct ast_msg_var_iterator *iter, const char **name, const char **value)
Get the next variable name and value that was set on a received message.
Definition: message.c:694
int messaging_app_subscribe_endpoint(const char *app_name, struct ast_endpoint *endpoint, message_received_cb callback, void *pvt)
Subscribe an application to an endpoint for messages.
Definition: messaging.c:493
static struct ast_json * msg_to_json(struct ast_msg *msg)
Definition: messaging.c:252
void ast_msg_var_iterator_destroy(struct ast_msg_var_iterator *iter)
Destroy a message variable iterator.
Definition: message.c:706
const char * ast_endpoint_get_resource(const struct ast_endpoint *endpoint)
Gets the resource name of the given endpoint.
int ast_json_object_set(struct ast_json *object, const char *key, struct ast_json *value)
Set a field in a JSON object.
Definition: json.c:404
Utility functions.
#define ast_strlen_zero(foo)
Definition: strings.h:52
const char * ast_msg_get_to(const struct ast_msg *msg)
Retrieve the destination of this message.
Definition: message.c:541
#define ao2_bump(obj)
Definition: astobj2.h:491
#define ast_debug(level,...)
Log a DEBUG message.
Definition: logger.h:452
The arg parameter is a partial search key similar to OBJ_SEARCH_KEY.
Definition: astobj2.h:1120
#define AST_VECTOR_INIT(vec, size)
Initialize a vector.
Definition: vector.h:113
static struct ao2_container * endpoint_subscriptions
The subscriptions to endpoints.
Definition: messaging.c:67
#define AST_VECTOR_ELEM_CLEANUP_NOOP(elem)
Vector element cleanup that does nothing.
Definition: vector.h:573
#define RAII_VAR(vartype, varname, initval, dtor)
Declare a variable that will call a destructor function when it goes out of scope.
Definition: utils.h:911
struct ast_json * ast_json_string_create(const char *value)
Construct a JSON string from value.
Definition: json.c:268
void ast_msg_var_unref_current(struct ast_msg_var_iterator *iter)
Unref a message var from inside an iterator loop.
Definition: message.c:700
#define ao2_ref(o, delta)
Definition: astobj2.h:464
#define ao2_lock(a)
Definition: astobj2.h:718
int(* message_received_cb)(const char *endpoint_id, struct ast_json *json_msg, void *pvt)
Callback handler for when a message is received from the core.
Definition: messaging.h:41
int messaging_init(void)
Initialize the messaging layer.
Definition: messaging.c:539
#define ast_test_suite_event_notify(s, f,...)
Definition: test.h:196
static int message_subscription_hash_cb(const void *obj, const int flags)
Definition: messaging.c:138
static struct message_subscription * get_or_create_subscription(struct ast_endpoint *endpoint)
Definition: messaging.c:459
#define ao2_unlink(container, obj)
Definition: astobj2.h:1598
struct ast_msg_handler ari_msg_handler
Definition: messaging.c:362
const char * ast_msg_get_from(const struct ast_msg *msg)
Retrieve the source of this message.
Definition: message.c:536
#define ast_rwlock_init(rwlock)
wrapper for rwlock with tracking enabled
Definition: lock.h:222
static int len(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t buflen)
static const char name[]
Definition: cdr_mysql.c:74
#define ao2_t_container_alloc_hash(ao2_options, container_options, n_buckets, hash_fn, sort_fn, cmp_fn, tag)
Allocate and initialize a hash container with the desired number of buckets.
Definition: astobj2.h:1308
A subscription to some endpoint or technology.
Definition: messaging.c:59
Vector container support.
#define ao2_find(container, arg, flags)
Definition: astobj2.h:1756
static struct application_tuple * application_tuple_alloc(const char *app_name, message_received_cb callback, void *pvt)
Definition: messaging.c:89
static struct message_subscription * get_subscription(struct ast_endpoint *endpoint)
Definition: messaging.c:394
#define ast_rwlock_wrlock(a)
Definition: lock.h:234
const char * name
Name of the message handler.
Definition: message.h:102
struct ast_json * ast_json_object_create(void)
Create a new JSON object.
Definition: json.c:389
The arg parameter is an object of the same type.
Definition: astobj2.h:1091
#define AST_VECTOR_GET(vec, idx)
Get an element from a vector.
Definition: vector.h:682
Structure for rwlock and tracking information.
Definition: lock.h:156
#define ao2_cleanup(obj)
Definition: astobj2.h:1958
#define S_OR(a, b)
returns the equivalent of logic or for strings: first one if not empty, otherwise second one...
Definition: strings.h:79
static AST_VECTOR(struct message_subscription *)
The subscriptions to technologies.
Definition: messaging.c:75
static PGresult * result
Definition: cel_pgsql.c:88
void messaging_app_unsubscribe_endpoint(const char *app_name, const char *endpoint_id)
Subscribe for messages from a particular endpoint.
Definition: messaging.c:423
Stasis out-of-call text message support.
struct stasis_forward * sub
Definition: res_corosync.c:240
static void dispatch_message(struct message_subscription *sub, const char *endpoint_name, struct ast_json *json_msg)
Definition: messaging.c:292
static void msg_to_endpoint(const struct ast_msg *msg, char *buf, size_t len)
Definition: messaging.c:200
Abstract JSON element (object, array, string, int, ...).
#define ENDPOINTS_NUM_BUCKETS
Number of buckets for the endpoint_subscriptions container.
Definition: messaging.c:46
Generic container type.
A message.
Definition: message.c:233
Search option field mask.
Definition: astobj2.h:1076
static int messaging_subscription_cmp(struct message_subscription *sub, const char *key)
Definition: messaging.c:368
#define AST_VECTOR_SIZE(vec)
Get the number of elements in a vector.
Definition: vector.h:611
const char * ast_endpoint_get_id(const struct ast_endpoint *endpoint)
Gets the tech/resource id of the given endpoint.
static force_inline int attribute_pure ast_str_hash(const char *str)
Compute a hash value on a string.
Definition: strings.h:1206
static int is_app_subscribed(struct message_subscription *sub, const char *app_name)
Definition: messaging.c:378
#define ao2_link(container, obj)
Definition: astobj2.h:1549
struct ast_msg_var_iterator * ast_msg_var_iterator_init(const struct ast_msg *msg)
Create a new message variable iterator.
Definition: message.c:644