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 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#include <aws/common/bus.h>
#include <aws/common/allocator.h>
#include <aws/common/atomics.h>
#include <aws/common/byte_buf.h>
#include <aws/common/condition_variable.h>
#include <aws/common/hash_table.h>
#include <aws/common/linked_list.h>
#include <aws/common/logging.h>
#include <aws/common/mutex.h>
#include <aws/common/thread.h>
#include <inttypes.h>
#ifdef _MSC_VER
# pragma warning(push)
# pragma warning(disable : 4204) /* nonstandard extension used: non-constant aggregate initializer */
#endif
struct aws_bus {
struct aws_allocator *allocator;
/* vtable and additional data structures for delivery policy */
void *impl;
};
/* MUST be the first member of any impl to allow blind casting */
struct bus_vtable {
void (*clean_up)(struct aws_bus *bus);
int (*send)(struct aws_bus *bus, uint64_t address, void *payload, void (*destructor)(void *));
int (*subscribe)(struct aws_bus *bus, uint64_t address, aws_bus_listener_fn *callback, void *user_data);
void (*unsubscribe)(struct aws_bus *bus, uint64_t address, aws_bus_listener_fn *callback, void *user_data);
};
/* each bound callback is stored as a bus_listener in the slots table */
struct bus_listener {
struct aws_linked_list_node list_node;
void *user_data;
aws_bus_listener_fn *deliver;
};
/* value type stored in each slot in the slots table in a bus */
struct listener_list {
struct aws_allocator *allocator;
struct aws_linked_list listeners;
};
/* find a listener list (or NULL) by address */
static struct listener_list *bus_find_listeners(struct aws_hash_table *slots, uint64_t address) {
struct aws_hash_element *elem = NULL;
if (aws_hash_table_find(slots, (void *)(uintptr_t)address, &elem)) {
return NULL;
}
if (!elem) {
return NULL;
}
struct listener_list *list = elem->value;
return list;
}
/* find a listener list by address, or create/insert/return a new one */
static struct listener_list *bus_find_or_create_listeners(
struct aws_allocator *allocator,
struct aws_hash_table *slots,
uint64_t address) {
struct listener_list *list = bus_find_listeners(slots, address);
if (list) {
return list;
}
list = aws_mem_calloc(allocator, 1, sizeof(struct listener_list));
list->allocator = allocator;
aws_linked_list_init(&list->listeners);
aws_hash_table_put(slots, (void *)(uintptr_t)address, list, NULL);
return list;
}
static void s_bus_deliver_msg_to_slot(
struct aws_bus *bus,
uint64_t slot,
uint64_t address,
struct aws_hash_table *slots,
const void *payload) {
(void)bus;
struct listener_list *list = bus_find_listeners(slots, slot);
if (!list) {
return;
}
struct aws_linked_list_node *node = aws_linked_list_begin(&list->listeners);
for (; node != aws_linked_list_end(&list->listeners); node = aws_linked_list_next(node)) {
struct bus_listener *listener = AWS_CONTAINER_OF(node, struct bus_listener, list_node);
listener->deliver(address, payload, listener->user_data);
}
}
/* common delivery logic */
static void s_bus_deliver_msg(
struct aws_bus *bus,
uint64_t address,
struct aws_hash_table *slots,
const void *payload) {
s_bus_deliver_msg_to_slot(bus, AWS_BUS_ADDRESS_ALL, address, slots, payload);
s_bus_deliver_msg_to_slot(bus, address, address, slots, payload);
}
/* common subscribe logic */
static int s_bus_subscribe(
struct aws_bus *bus,
uint64_t address,
struct aws_hash_table *slots,
aws_bus_listener_fn *callback,
void *user_data) {
if (address == AWS_BUS_ADDRESS_CLOSE) {
AWS_LOGF_ERROR(AWS_LS_COMMON_BUS, "Cannot directly subscribe to AWS_BUS_ADDRESS_CLOSE(0)");
return aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
}
struct listener_list *list = bus_find_or_create_listeners(bus->allocator, slots, address);
struct bus_listener *listener = aws_mem_calloc(bus->allocator, 1, sizeof(struct bus_listener));
listener->deliver = callback;
listener->user_data = user_data;
aws_linked_list_push_back(&list->listeners, &listener->list_node);
return AWS_OP_SUCCESS;
}
/* common unsubscribe logic */
static void s_bus_unsubscribe(
struct aws_bus *bus,
uint64_t address,
struct aws_hash_table *slots,
aws_bus_listener_fn *callback,
void *user_data) {
(void)bus;
if (address == AWS_BUS_ADDRESS_CLOSE) {
AWS_LOGF_WARN(AWS_LS_COMMON_BUS, "Attempted to unsubscribe from invalid address AWS_BUS_ADDRESS_CLOSE");
return;
}
struct listener_list *list = bus_find_listeners(slots, address);
if (!list) {
return;
}
struct aws_linked_list_node *node;
for (node = aws_linked_list_begin(&list->listeners); node != aws_linked_list_end(&list->listeners);
node = aws_linked_list_next(node)) {
struct bus_listener *listener = AWS_CONTAINER_OF(node, struct bus_listener, list_node);
if (listener->deliver == callback && listener->user_data == user_data) {
aws_linked_list_remove(node);
aws_mem_release(list->allocator, listener);
return;
}
}
}
/* destructor for listener lists in the slots tables */
void s_bus_destroy_listener_list(void *data) {
struct listener_list *list = data;
AWS_PRECONDITION(list->allocator);
/* call all listeners with an AWS_BUS_ADDRESS_CLOSE message type to clean up */
while (!aws_linked_list_empty(&list->listeners)) {
struct aws_linked_list_node *back = aws_linked_list_back(&list->listeners);
struct bus_listener *listener = AWS_CONTAINER_OF(back, struct bus_listener, list_node);
listener->deliver(AWS_BUS_ADDRESS_CLOSE, NULL, listener->user_data);
aws_linked_list_pop_back(&list->listeners);
aws_mem_release(list->allocator, listener);
}
aws_mem_release(list->allocator, list);
}
/*
* AWS_BUS_SYNC implementation
*/
struct bus_sync_impl {
struct bus_vtable vtable;
struct {
/* Map of address -> list of listeners */
struct aws_hash_table table;
} slots;
};
static void s_bus_sync_clean_up(struct aws_bus *bus) {
struct bus_sync_impl *impl = bus->impl;
aws_hash_table_clean_up(&impl->slots.table);
aws_mem_release(bus->allocator, impl);
}
static int s_bus_sync_send(struct aws_bus *bus, uint64_t address, void *payload, void (*destructor)(void *)) {
struct bus_sync_impl *impl = bus->impl;
s_bus_deliver_msg(bus, address, &impl->slots.table, payload);
if (destructor) {
destructor(payload);
}
return AWS_OP_SUCCESS;
}
static int s_bus_sync_subscribe(struct aws_bus *bus, uint64_t address, aws_bus_listener_fn *callback, void *user_data) {
struct bus_sync_impl *impl = bus->impl;
return s_bus_subscribe(bus, address, &impl->slots.table, callback, user_data);
}
static void s_bus_sync_unsubscribe(
struct aws_bus *bus,
uint64_t address,
aws_bus_listener_fn *callback,
void *user_data) {
struct bus_sync_impl *impl = bus->impl;
s_bus_unsubscribe(bus, address, &impl->slots.table, callback, user_data);
}
static struct bus_vtable bus_sync_vtable = {
.clean_up = s_bus_sync_clean_up,
.send = s_bus_sync_send,
.subscribe = s_bus_sync_subscribe,
.unsubscribe = s_bus_sync_unsubscribe,
};
static void s_bus_sync_init(struct aws_bus *bus, const struct aws_bus_options *options) {
(void)options;
struct bus_sync_impl *impl = bus->impl = aws_mem_calloc(bus->allocator, 1, sizeof(struct bus_sync_impl));
impl->vtable = bus_sync_vtable;
if (aws_hash_table_init(
&impl->slots.table, bus->allocator, 8, aws_hash_ptr, aws_ptr_eq, NULL, s_bus_destroy_listener_list)) {
goto error;
}
return;
error:
aws_mem_release(bus->allocator, impl);
}
/*
* AWS_BUS_ASYNC implementation
*/
struct bus_async_impl {
struct bus_vtable vtable;
struct {
/* Map of address -> list of listeners */
struct aws_hash_table table;
} slots;
/* Queue of bus_messages to deliver */
struct {
struct aws_mutex mutex;
/* backing memory for the message free list */
void *buffer;
void *buffer_end; /* 1 past the end of buffer */
/* message free list */
struct aws_linked_list free; /* struct bus_message */
/* message delivery queue */
struct aws_linked_list msgs; /* struct bus_message */
/* list of pending adds/removes of listeners */
struct aws_linked_list subs; /* struct pending_listener */
} queue;
/* dispatch thread */
struct {
struct aws_thread thread;
struct aws_condition_variable notify;
bool running;
struct aws_atomic_var started;
struct aws_atomic_var exited;
} dispatch;
bool reliable;
};
/* represents a message in the queue on impls that queue */
struct bus_message {
struct aws_linked_list_node list_node;
uint64_t address;
void *payload;
void (*destructor)(void *);
};
struct pending_listener {
struct aws_linked_list_node list_node;
uint64_t address;
aws_bus_listener_fn *listener;
void *user_data;
uint32_t add : 1;
uint32_t remove : 1;
};
static void s_bus_message_clean_up(struct bus_message *msg) {
if (msg->destructor) {
msg->destructor(msg->payload);
}
msg->destructor = NULL;
msg->payload = NULL;
}
/* Assumes the caller holds the lock */
static void s_bus_async_free_message(struct aws_bus *bus, struct bus_message *msg) {
struct bus_async_impl *impl = bus->impl;
s_bus_message_clean_up(msg);
if ((void *)msg >= impl->queue.buffer && (void *)msg < impl->queue.buffer_end) {
AWS_ZERO_STRUCT(*msg);
aws_linked_list_push_back(&impl->queue.free, &msg->list_node);
return;
}
aws_mem_release(bus->allocator, msg);
}
/* Assumes the caller holds the lock */
struct bus_message *s_bus_async_alloc_message(struct aws_bus *bus) {
struct bus_async_impl *impl = bus->impl;
/* try the free list first */
if (!aws_linked_list_empty(&impl->queue.free)) {
struct aws_linked_list_node *msg_node = aws_linked_list_pop_back(&impl->queue.free);
struct bus_message *msg = AWS_CONTAINER_OF(msg_node, struct bus_message, list_node);
return msg;
}
/* unreliable will re-use the oldest message */
if (!impl->reliable) {
struct aws_linked_list_node *msg_node = aws_linked_list_pop_front(&impl->queue.msgs);
struct bus_message *msg = AWS_CONTAINER_OF(msg_node, struct bus_message, list_node);
s_bus_async_free_message(bus, msg);
return s_bus_async_alloc_message(bus);
}
return aws_mem_calloc(bus->allocator, 1, sizeof(struct bus_message));
}
/*
* resolve all adds and removes of listeners, in FIFO order
* NOTE: expects mutex to be held by caller
*/
static void s_bus_apply_listeners(struct aws_bus *bus, struct aws_linked_list *pending_subs) {
struct bus_async_impl *impl = bus->impl;
while (!aws_linked_list_empty(pending_subs)) {
struct aws_linked_list_node *node = aws_linked_list_pop_front(pending_subs);
struct pending_listener *listener = AWS_CONTAINER_OF(node, struct pending_listener, list_node);
if (listener->add) {
s_bus_subscribe(bus, listener->address, &impl->slots.table, listener->listener, listener->user_data);
} else if (listener->remove) {
s_bus_unsubscribe(bus, listener->address, &impl->slots.table, listener->listener, listener->user_data);
}
aws_mem_release(bus->allocator, listener);
}
}
static void s_bus_async_deliver_messages(struct aws_bus *bus, struct aws_linked_list *pending_msgs) {
struct bus_async_impl *impl = bus->impl;
struct aws_linked_list_node *msg_node = aws_linked_list_begin(pending_msgs);
for (; msg_node != aws_linked_list_end(pending_msgs); msg_node = aws_linked_list_next(msg_node)) {
struct bus_message *msg = AWS_CONTAINER_OF(msg_node, struct bus_message, list_node);
s_bus_deliver_msg(bus, msg->address, &impl->slots.table, msg->payload);
s_bus_message_clean_up(msg);
}
/* push all pending messages back on the free list */
aws_mutex_lock(&impl->queue.mutex);
{
while (!aws_linked_list_empty(pending_msgs)) {
msg_node = aws_linked_list_pop_front(pending_msgs);
struct bus_message *msg = AWS_CONTAINER_OF(msg_node, struct bus_message, list_node);
s_bus_async_free_message(bus, msg);
}
}
aws_mutex_unlock(&impl->queue.mutex);
}
static void s_bus_async_clean_up(struct aws_bus *bus) {
struct bus_async_impl *impl = bus->impl;
/* shut down delivery thread, clean up dispatch */
AWS_LOGF_TRACE(AWS_LS_COMMON_BUS, "bus: %p clean_up: starting final drain", (void *)bus);
aws_mutex_lock(&impl->queue.mutex);
impl->dispatch.running = false;
aws_mutex_unlock(&impl->queue.mutex);
aws_condition_variable_notify_one(&impl->dispatch.notify);
/* Spin wait for the final drain and dispatch thread to complete */
while (!aws_atomic_load_int(&impl->dispatch.exited)) {
aws_thread_current_sleep(1000 * 1000); /* 1 microsecond */
}
AWS_LOGF_TRACE(AWS_LS_COMMON_BUS, "bus: %p clean_up: finished final drain", (void *)bus);
aws_thread_join(&impl->dispatch.thread);
aws_thread_clean_up(&impl->dispatch.thread);
aws_condition_variable_clean_up(&impl->dispatch.notify);
/* should be impossible for subs or msgs to remain after final drain */
AWS_FATAL_ASSERT(aws_linked_list_empty(&impl->queue.msgs));
AWS_FATAL_ASSERT(aws_linked_list_empty(&impl->queue.subs));
/* this frees everything that the free/msgs lists point to */
if (impl->queue.buffer) {
aws_mem_release(bus->allocator, impl->queue.buffer);
}
aws_mutex_clean_up(&impl->queue.mutex);
aws_hash_table_clean_up(&impl->slots.table);
aws_mem_release(bus->allocator, impl);
}
static bool s_bus_async_should_wake_up(void *user_data) {
struct bus_async_impl *impl = user_data;
return !impl->dispatch.running || !aws_linked_list_empty(&impl->queue.subs) ||
!aws_linked_list_empty(&impl->queue.msgs);
}
static bool s_bus_async_is_running(struct bus_async_impl *impl) {
aws_mutex_lock(&impl->queue.mutex);
bool running = impl->dispatch.running;
aws_mutex_unlock(&impl->queue.mutex);
return running;
}
/* Async bus delivery thread loop */
static void s_bus_async_deliver(void *user_data) {
struct aws_bus *bus = user_data;
struct bus_async_impl *impl = bus->impl;
aws_atomic_store_int(&impl->dispatch.started, 1);
AWS_LOGF_DEBUG(AWS_LS_COMMON_BUS, "bus %p: delivery thread loop started", (void *)bus);
/* once shutdown has been triggered, need to drain one more time to ensure all queues are empty */
int pending_drains = 1;
do {
struct aws_linked_list pending_msgs;
aws_linked_list_init(&pending_msgs);
struct aws_linked_list pending_subs;
aws_linked_list_init(&pending_subs);
aws_mutex_lock(&impl->queue.mutex);
{
aws_condition_variable_wait_pred(
&impl->dispatch.notify, &impl->queue.mutex, s_bus_async_should_wake_up, impl);
/* copy out any queued subs/unsubs */
aws_linked_list_swap_contents(&impl->queue.subs, &pending_subs);
/* copy out any queued messages */
aws_linked_list_swap_contents(&impl->queue.msgs, &pending_msgs);
}
aws_mutex_unlock(&impl->queue.mutex);
/* first resolve subs/unsubs */
if (!aws_linked_list_empty(&pending_subs)) {
s_bus_apply_listeners(bus, &pending_subs);
}
/* Then deliver queued messages */
if (!aws_linked_list_empty(&pending_msgs)) {
s_bus_async_deliver_messages(bus, &pending_msgs);
}
} while (s_bus_async_is_running(impl) || pending_drains--);
/* record that the dispatch thread is done */
aws_atomic_store_int(&impl->dispatch.exited, 1);
}
int s_bus_async_send(struct aws_bus *bus, uint64_t address, void *payload, void (*destructor)(void *)) {
struct bus_async_impl *impl = bus->impl;
aws_mutex_lock(&impl->queue.mutex);
{
if (!impl->dispatch.running) {
AWS_LOGF_WARN(
AWS_LS_COMMON_BUS, "bus %p: message sent after clean_up: address: %" PRIu64 "", (void *)bus, address);
aws_mutex_unlock(&impl->queue.mutex);
return aws_raise_error(AWS_ERROR_INVALID_STATE);
}
struct bus_message *msg = s_bus_async_alloc_message(bus);
msg->address = address;
msg->payload = payload;
msg->destructor = destructor;
/* push the message onto the delivery queue */
aws_linked_list_push_back(&impl->queue.msgs, &msg->list_node);
}
aws_mutex_unlock(&impl->queue.mutex);
/* notify the delivery thread to wake up */
aws_condition_variable_notify_one(&impl->dispatch.notify);
return AWS_OP_SUCCESS;
}
int s_bus_async_subscribe(struct aws_bus *bus, uint64_t address, aws_bus_listener_fn *listener, void *user_data) {
struct bus_async_impl *impl = bus->impl;
if (address == AWS_BUS_ADDRESS_CLOSE) {
AWS_LOGF_ERROR(AWS_LS_COMMON_BUS, "Cannot subscribe to AWS_BUS_ADDRESS_CLOSE");
return aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
}
aws_mutex_lock(&impl->queue.mutex);
{
if (!impl->dispatch.running) {
AWS_LOGF_WARN(
AWS_LS_COMMON_BUS,
"bus %p: subscribe requested after clean_up: address: %" PRIu64 "",
(void *)bus,
address);
aws_mutex_unlock(&impl->queue.mutex);
return aws_raise_error(AWS_ERROR_INVALID_STATE);
}
struct pending_listener *sub = aws_mem_calloc(bus->allocator, 1, sizeof(struct pending_listener));
sub->address = address;
sub->listener = listener;
sub->user_data = user_data;
sub->add = true;
aws_linked_list_push_back(&impl->queue.subs, &sub->list_node);
}
aws_mutex_unlock(&impl->queue.mutex);
/* notify the delivery thread to wake up */
aws_condition_variable_notify_one(&impl->dispatch.notify);
return AWS_OP_SUCCESS;
}
void s_bus_async_unsubscribe(struct aws_bus *bus, uint64_t address, aws_bus_listener_fn *listener, void *user_data) {
struct bus_async_impl *impl = bus->impl;
if (address == AWS_BUS_ADDRESS_CLOSE) {
AWS_LOGF_ERROR(AWS_LS_COMMON_BUS, "Cannot unsubscribe from AWS_BUS_ADDRESS_CLOSE");
return;
}
aws_mutex_lock(&impl->queue.mutex);
{
if (!impl->dispatch.running) {
AWS_LOGF_WARN(
AWS_LS_COMMON_BUS,
"bus %p: unsubscribe requested after clean_up: address: %" PRIu64 "",
(void *)bus,
address);
aws_mutex_unlock(&impl->queue.mutex);
return;
}
struct pending_listener *unsub = aws_mem_calloc(bus->allocator, 1, sizeof(struct pending_listener));
unsub->address = address;
unsub->listener = listener;
unsub->user_data = user_data;
unsub->remove = true;
aws_linked_list_push_back(&impl->queue.subs, &unsub->list_node);
}
aws_mutex_unlock(&impl->queue.mutex);
/* notify the delivery thread to wake up */
aws_condition_variable_notify_one(&impl->dispatch.notify);
}
static struct bus_vtable bus_async_vtable = {
.clean_up = s_bus_async_clean_up,
.send = s_bus_async_send,
.subscribe = s_bus_async_subscribe,
.unsubscribe = s_bus_async_unsubscribe,
};
static void s_bus_async_init(struct aws_bus *bus, const struct aws_bus_options *options) {
struct bus_async_impl *impl = bus->impl = aws_mem_calloc(bus->allocator, 1, sizeof(struct bus_async_impl));
impl->vtable = bus_async_vtable;
impl->reliable = (options->policy == AWS_BUS_ASYNC_RELIABLE);
/* init msg queue */
if (aws_mutex_init(&impl->queue.mutex)) {
AWS_LOGF_ERROR(
AWS_LS_COMMON_BUS,
"bus %p: Unable to initialize queue synchronization: %s",
(void *)bus,
aws_error_name(aws_last_error()));
goto error;
}
aws_linked_list_init(&impl->queue.msgs);
aws_linked_list_init(&impl->queue.free);
aws_linked_list_init(&impl->queue.subs);
/* push as many bus_messages as we can into the free list from the buffer */
if (options->buffer_size) {
impl->queue.buffer = aws_mem_calloc(bus->allocator, 1, options->buffer_size);
impl->queue.buffer_end = ((uint8_t *)impl->queue.buffer) + options->buffer_size;
const int msg_count = (int)(options->buffer_size / sizeof(struct bus_message));
for (int msg_idx = 0; msg_idx < msg_count; ++msg_idx) {
struct bus_message *msg = (void *)&((char *)impl->queue.buffer)[msg_idx * sizeof(struct bus_message)];
aws_linked_list_push_back(&impl->queue.free, &msg->list_node);
}
}
/* init subscription table */
if (aws_hash_table_init(
&impl->slots.table, bus->allocator, 8, aws_hash_ptr, aws_ptr_eq, NULL, s_bus_destroy_listener_list)) {
AWS_LOGF_ERROR(
AWS_LS_COMMON_BUS,
"bus %p: Unable to initialize bus addressing table: %s",
(void *)bus,
aws_error_name(aws_last_error()));
goto error;
}
/* Setup dispatch thread */
if (aws_condition_variable_init(&impl->dispatch.notify)) {
AWS_LOGF_ERROR(
AWS_LS_COMMON_BUS,
"bus %p: Unable to initialize async notify: %s",
(void *)bus,
aws_error_name(aws_last_error()));
goto error;
}
if (aws_thread_init(&impl->dispatch.thread, bus->allocator)) {
AWS_LOGF_ERROR(
AWS_LS_COMMON_BUS,
"bus %p: Unable to initialize background thread: %s",
(void *)bus,
aws_error_name(aws_last_error()));
goto error;
}
impl->dispatch.running = true;
aws_atomic_init_int(&impl->dispatch.started, 0);
aws_atomic_init_int(&impl->dispatch.exited, 0);
if (aws_thread_launch(&impl->dispatch.thread, s_bus_async_deliver, bus, aws_default_thread_options())) {
AWS_LOGF_ERROR(
AWS_LS_COMMON_BUS,
"bus %p: Unable to launch delivery thread: %s",
(void *)bus,
aws_error_name(aws_last_error()));
goto error;
}
/* wait for dispatch thread to start before returning control */
AWS_LOGF_TRACE(AWS_LS_COMMON_BUS, "bus %p: Waiting for delivery thread to start", (void *)bus);
while (!aws_atomic_load_int(&impl->dispatch.started)) {
aws_thread_current_sleep(1000 * 1000);
}
AWS_LOGF_TRACE(AWS_LS_COMMON_BUS, "bus %p: Delivery thread started", (void *)bus);
return;
error:
aws_thread_clean_up(&impl->dispatch.thread);
aws_condition_variable_clean_up(&impl->dispatch.notify);
aws_hash_table_clean_up(&impl->slots.table);
aws_mem_release(bus->allocator, &impl->queue.buffer);
aws_mutex_clean_up(&impl->queue.mutex);
aws_mem_release(bus->allocator, impl);
bus->impl = NULL;
}
/*
* Public API
*/
struct aws_bus *aws_bus_new(struct aws_allocator *allocator, const struct aws_bus_options *options) {
struct aws_bus *bus = aws_mem_calloc(allocator, 1, sizeof(struct aws_bus));
bus->allocator = allocator;
switch (options->policy) {
case AWS_BUS_ASYNC_RELIABLE:
case AWS_BUS_ASYNC_UNRELIABLE:
s_bus_async_init(bus, options);
break;
case AWS_BUS_SYNC_RELIABLE:
s_bus_sync_init(bus, options);
break;
}
if (!bus->impl) {
aws_mem_release(allocator, bus);
return NULL;
}
return bus;
}
void aws_bus_destroy(struct aws_bus *bus) {
struct bus_vtable *vtable = bus->impl;
vtable->clean_up(bus);
aws_mem_release(bus->allocator, bus);
}
int aws_bus_subscribe(struct aws_bus *bus, uint64_t address, aws_bus_listener_fn *listener, void *user_data) {
struct bus_vtable *vtable = bus->impl;
return vtable->subscribe(bus, address, listener, user_data);
}
void aws_bus_unsubscribe(struct aws_bus *bus, uint64_t address, aws_bus_listener_fn *listener, void *user_data) {
struct bus_vtable *vtable = bus->impl;
vtable->unsubscribe(bus, address, listener, user_data);
}
int aws_bus_send(struct aws_bus *bus, uint64_t address, void *payload, void (*destructor)(void *)) {
struct bus_vtable *vtable = bus->impl;
return vtable->send(bus, address, payload, destructor);
}
#ifdef _MSC_VER
# pragma warning(pop)
#endif
|