blob: 38a1c9b7d4171b90f294c9f099af13fef2d4a1ee [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);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070067 if (head == NULL) {
68 head = (endpoint_ll_node *)gpr_malloc(sizeof(endpoint_ll_node));
69 head->ep = ep;
70 head->next = NULL;
71 } else {
72 endpoint_ll_node *prev_head = head;
73 head = (endpoint_ll_node *)gpr_malloc(sizeof(endpoint_ll_node));
74 head->ep = ep;
75 head->next = prev_head;
76 }
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070077 gpr_mu_unlock(&g_endpoint_mutex);
78}
79
80void grpc_network_status_unregister_endpoint(grpc_endpoint *ep) {
81 gpr_mu_lock(&g_endpoint_mutex);
82 GPR_ASSERT(head);
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070083 bool found = false;
84 endpoint_ll_node *prev = head;
85 // if we're unregistering the head, just move head to the next
86 if (ep == head->ep) {
Makarand Dharmapurikar932d0272016-06-22 16:17:15 -070087 head = head->next;
88 gpr_free(prev);
89 found = true;
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070090 } else {
91 for (endpoint_ll_node *curr = head->next; curr != NULL; curr = curr->next) {
92 if (ep == curr->ep) {
93 prev->next = curr->next;
94 gpr_free(curr);
95 found = true;
96 break;
97 }
98 prev = curr;
99 }
100 }
101 gpr_mu_unlock(&g_endpoint_mutex);
102 GPR_ASSERT(found);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700103}
104
105// Walk the linked-list from head and execute shutdown. It is possible that
106// other threads might be in the process of shutdown as well, but that has
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700107// no side effect since endpoint shutdown is idempotent.
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700108void grpc_network_status_shutdown_all_endpoints() {
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700109 gpr_mu_lock(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700110 if (head == NULL) {
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700111 gpr_mu_unlock(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700112 return;
113 }
114 grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
115
116 for (endpoint_ll_node *curr = head; curr != NULL; curr = curr->next) {
117 curr->ep->vtable->shutdown(&exec_ctx, curr->ep);
118 }
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700119 gpr_mu_unlock(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700120 grpc_exec_ctx_finish(&exec_ctx);
121}