blob: 0e34605c81d0d09bc51bdc9515c713298e6b4d5f [file] [log] [blame]
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -07001/*
2 *
3 * Copyright 2015, Google Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070034#include <grpc/support/alloc.h>
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070035#include <grpc/support/log.h>
Makarand Dharmapurikar932d0272016-06-22 16:17:15 -070036#include "src/core/lib/iomgr/endpoint.h"
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070037
38typedef struct endpoint_ll_node {
39 grpc_endpoint *ep;
40 struct endpoint_ll_node *next;
41} endpoint_ll_node;
42
43static endpoint_ll_node *head = NULL;
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070044static gpr_mu g_endpoint_mutex;
45static bool g_init_done = false;
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070046
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070047void grpc_initialize_network_status_monitor() {
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070048 g_init_done = true;
49 gpr_mu_init(&g_endpoint_mutex);
50 // TODO(makarandd): Install callback with OS to monitor network status.
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070051}
52
53void grpc_destroy_network_status_monitor() {
Makarand Dharmapurikar932d0272016-06-22 16:17:15 -070054 for (endpoint_ll_node *curr = head; curr != NULL;) {
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070055 endpoint_ll_node *next = curr->next;
56 gpr_free(curr);
57 curr = next;
58 }
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070059 gpr_mu_destroy(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070060}
61
62void grpc_network_status_register_endpoint(grpc_endpoint *ep) {
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070063 if (!g_init_done) {
64 grpc_initialize_network_status_monitor();
65 }
66 gpr_mu_lock(&g_endpoint_mutex);
67 gpr_log(GPR_DEBUG, "Register endpoint %p", ep);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070068 if (head == NULL) {
69 head = (endpoint_ll_node *)gpr_malloc(sizeof(endpoint_ll_node));
70 head->ep = ep;
71 head->next = NULL;
72 } else {
73 endpoint_ll_node *prev_head = head;
74 head = (endpoint_ll_node *)gpr_malloc(sizeof(endpoint_ll_node));
75 head->ep = ep;
76 head->next = prev_head;
77 }
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070078 gpr_mu_unlock(&g_endpoint_mutex);
79}
80
81void grpc_network_status_unregister_endpoint(grpc_endpoint *ep) {
82 gpr_mu_lock(&g_endpoint_mutex);
83 GPR_ASSERT(head);
84 gpr_log(GPR_DEBUG, "Unregister endpoint %p", ep);
85 bool found = false;
86 endpoint_ll_node *prev = head;
87 // if we're unregistering the head, just move head to the next
88 if (ep == head->ep) {
Makarand Dharmapurikar932d0272016-06-22 16:17:15 -070089 head = head->next;
90 gpr_free(prev);
91 found = true;
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070092 } else {
93 for (endpoint_ll_node *curr = head->next; curr != NULL; curr = curr->next) {
94 if (ep == curr->ep) {
95 prev->next = curr->next;
96 gpr_free(curr);
97 found = true;
98 break;
99 }
100 prev = curr;
101 }
102 }
103 gpr_mu_unlock(&g_endpoint_mutex);
104 GPR_ASSERT(found);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700105}
106
107// Walk the linked-list from head and execute shutdown. It is possible that
108// other threads might be in the process of shutdown as well, but that has
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700109// no side effect since endpoint shutdown is idempotent.
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700110void grpc_network_status_shutdown_all_endpoints() {
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700111 gpr_mu_lock(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700112 if (head == NULL) {
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700113 gpr_mu_unlock(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700114 return;
115 }
116 grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
117
118 for (endpoint_ll_node *curr = head; curr != NULL; curr = curr->next) {
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700119 gpr_log(GPR_DEBUG, "Shutting down endpoint %p", curr->ep);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700120 curr->ep->vtable->shutdown(&exec_ctx, curr->ep);
121 }
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700122 gpr_mu_unlock(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700123 grpc_exec_ctx_finish(&exec_ctx);
124}