blob: 39ba4f52640a1897546477fd6044e6083fa6a571 [file] [log] [blame]
ctiller58393c22015-01-07 14:03:30 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, Google Inc.
ctiller58393c22015-01-07 14:03:30 -08004 * 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
34#include "src/core/iomgr/iomgr.h"
35
36#include <stdlib.h>
37
38#include "src/core/iomgr/iomgr_internal.h"
39#include "src/core/iomgr/alarm_internal.h"
Craig Tillerfa275a92015-06-01 13:55:54 -070040#include "src/core/support/string.h"
ctiller58393c22015-01-07 14:03:30 -080041#include <grpc/support/alloc.h>
42#include <grpc/support/log.h>
Masood Malekghassemi701af602015-06-03 15:01:17 -070043#include <grpc/support/string_util.h>
ctiller58393c22015-01-07 14:03:30 -080044#include <grpc/support/sync.h>
Masood Malekghassemi701af602015-06-03 15:01:17 -070045#include <grpc/support/thd.h>
ctiller58393c22015-01-07 14:03:30 -080046
ctiller58393c22015-01-07 14:03:30 -080047static gpr_mu g_mu;
Nicolas "Pixel" Nobleae7b45a2015-02-04 03:28:34 +010048static gpr_cv g_rcv;
David Garcia Quintas5f228f52015-05-26 19:58:50 -070049static grpc_iomgr_closure *g_cbs_head = NULL;
50static grpc_iomgr_closure *g_cbs_tail = NULL;
ctiller58393c22015-01-07 14:03:30 -080051static int g_shutdown;
ctiller58393c22015-01-07 14:03:30 -080052static gpr_event g_background_callback_executor_done;
Craig Tillerfa275a92015-06-01 13:55:54 -070053static grpc_iomgr_object g_root_object;
ctiller58393c22015-01-07 14:03:30 -080054
55/* Execute followup callbacks continuously.
56 Other threads may check in and help during pollset_work() */
57static void background_callback_executor(void *ignored) {
58 gpr_mu_lock(&g_mu);
59 while (!g_shutdown) {
60 gpr_timespec deadline = gpr_inf_future;
David Garcia Quintas00ff7df2015-05-12 00:19:47 -070061 gpr_timespec short_deadline =
Craig Tillerf3756c12015-07-01 17:21:01 -070062 gpr_time_add(gpr_now(GPR_CLOCK_REALTIME), gpr_time_from_millis(100));
ctiller58393c22015-01-07 14:03:30 -080063 if (g_cbs_head) {
David Garcia Quintasa30020f2015-05-27 19:21:01 -070064 grpc_iomgr_closure *closure = g_cbs_head;
65 g_cbs_head = closure->next;
ctiller58393c22015-01-07 14:03:30 -080066 if (!g_cbs_head) g_cbs_tail = NULL;
67 gpr_mu_unlock(&g_mu);
David Garcia Quintasa30020f2015-05-27 19:21:01 -070068 closure->cb(closure->cb_arg, closure->success);
ctiller58393c22015-01-07 14:03:30 -080069 gpr_mu_lock(&g_mu);
Craig Tillerf3756c12015-07-01 17:21:01 -070070 } else if (grpc_alarm_check(&g_mu, gpr_now(GPR_CLOCK_REALTIME), &deadline)) {
ctiller58393c22015-01-07 14:03:30 -080071 } else {
David Garcia Quintas00ff7df2015-05-12 00:19:47 -070072 gpr_mu_unlock(&g_mu);
73 gpr_sleep_until(gpr_time_min(short_deadline, deadline));
74 gpr_mu_lock(&g_mu);
ctiller58393c22015-01-07 14:03:30 -080075 }
76 }
77 gpr_mu_unlock(&g_mu);
78 gpr_event_set(&g_background_callback_executor_done, (void *)1);
79}
80
David Garcia Quintas5b984ce2015-05-12 16:04:28 -070081void grpc_kick_poller(void) {
82 /* Empty. The background callback executor polls periodically. The activity
83 * the kicker is trying to draw the executor's attention to will be picked up
84 * either by one of the periodic wakeups or by one of the polling application
85 * threads. */
86}
ctiller58393c22015-01-07 14:03:30 -080087
Craig Tiller32946d32015-01-15 11:37:30 -080088void grpc_iomgr_init(void) {
ctiller58393c22015-01-07 14:03:30 -080089 gpr_thd_id id;
90 gpr_mu_init(&g_mu);
Nicolas "Pixel" Nobleae7b45a2015-02-04 03:28:34 +010091 gpr_cv_init(&g_rcv);
Craig Tillerf3756c12015-07-01 17:21:01 -070092 grpc_alarm_list_init(gpr_now(GPR_CLOCK_REALTIME));
Craig Tillerfa275a92015-06-01 13:55:54 -070093 g_root_object.next = g_root_object.prev = &g_root_object;
94 g_root_object.name = "root";
ctiller58393c22015-01-07 14:03:30 -080095 grpc_iomgr_platform_init();
96 gpr_event_init(&g_background_callback_executor_done);
97 gpr_thd_new(&id, background_callback_executor, NULL, NULL);
98}
99
Craig Tillerfa275a92015-06-01 13:55:54 -0700100static size_t count_objects(void) {
101 grpc_iomgr_object *obj;
102 size_t n = 0;
103 for (obj = g_root_object.next; obj != &g_root_object; obj = obj->next) {
104 n++;
105 }
106 return n;
107}
108
Craig Tiller32946d32015-01-15 11:37:30 -0800109void grpc_iomgr_shutdown(void) {
Craig Tillerfa275a92015-06-01 13:55:54 -0700110 grpc_iomgr_object *obj;
David Garcia Quintasa30020f2015-05-27 19:21:01 -0700111 grpc_iomgr_closure *closure;
ctiller58393c22015-01-07 14:03:30 -0800112 gpr_timespec shutdown_deadline =
Craig Tillerf3756c12015-07-01 17:21:01 -0700113 gpr_time_add(gpr_now(GPR_CLOCK_REALTIME), gpr_time_from_seconds(10));
ctiller58393c22015-01-07 14:03:30 -0800114
ctiller58393c22015-01-07 14:03:30 -0800115 gpr_mu_lock(&g_mu);
116 g_shutdown = 1;
Craig Tiller8e0b08a2015-06-01 17:04:17 -0700117 while (g_cbs_head != NULL || g_root_object.next != &g_root_object) {
118 if (g_cbs_head != NULL && g_root_object.next != &g_root_object) {
119 gpr_log(GPR_DEBUG,
120 "Waiting for %d iomgr objects to be destroyed and executing "
121 "final callbacks",
122 count_objects());
Craig Tiller29f741f2015-05-29 12:29:43 -0700123 } else if (g_cbs_head != NULL) {
124 gpr_log(GPR_DEBUG, "Executing final iomgr callbacks");
125 } else {
Craig Tiller8e0b08a2015-06-01 17:04:17 -0700126 gpr_log(GPR_DEBUG, "Waiting for %d iomgr objects to be destroyed",
127 count_objects());
Craig Tiller29f741f2015-05-29 12:29:43 -0700128 }
Craig Tillerfa275a92015-06-01 13:55:54 -0700129 if (g_cbs_head) {
130 do {
Craig Tiller3d67c7c2015-06-01 20:10:13 -0700131 closure = g_cbs_head;
132 g_cbs_head = closure->next;
Craig Tillerfa275a92015-06-01 13:55:54 -0700133 if (!g_cbs_head) g_cbs_tail = NULL;
134 gpr_mu_unlock(&g_mu);
ctiller58393c22015-01-07 14:03:30 -0800135
Craig Tiller3d67c7c2015-06-01 20:10:13 -0700136 closure->cb(closure->cb_arg, 0);
Craig Tillerfa275a92015-06-01 13:55:54 -0700137 gpr_mu_lock(&g_mu);
138 } while (g_cbs_head);
139 continue;
ctiller58393c22015-01-07 14:03:30 -0800140 }
Craig Tiller8e0b08a2015-06-01 17:04:17 -0700141 if (grpc_alarm_check(&g_mu, gpr_inf_future, NULL)) {
142 gpr_log(GPR_DEBUG, "got late alarm");
143 continue;
144 }
145 if (g_root_object.next != &g_root_object) {
Nicolas Noble8703f4d2015-03-23 13:52:18 -0700146 int timeout = 0;
Craig Tiller8674cb12015-06-05 07:09:25 -0700147 gpr_timespec short_deadline =
Craig Tillerf3756c12015-07-01 17:21:01 -0700148 gpr_time_add(gpr_now(GPR_CLOCK_REALTIME), gpr_time_from_millis(100));
Nicolas Noble8703f4d2015-03-23 13:52:18 -0700149 while (gpr_cv_wait(&g_rcv, &g_mu, short_deadline) && g_cbs_head == NULL) {
Craig Tillerf3756c12015-07-01 17:21:01 -0700150 if (gpr_time_cmp(gpr_now(GPR_CLOCK_REALTIME), shutdown_deadline) > 0) {
Nicolas Noble8703f4d2015-03-23 13:52:18 -0700151 timeout = 1;
152 break;
153 }
154 }
155 if (timeout) {
ctiller58393c22015-01-07 14:03:30 -0800156 gpr_log(GPR_DEBUG,
157 "Failed to free %d iomgr objects before shutdown deadline: "
158 "memory leaks are likely",
Craig Tillerfa275a92015-06-01 13:55:54 -0700159 count_objects());
160 for (obj = g_root_object.next; obj != &g_root_object; obj = obj->next) {
161 gpr_log(GPR_DEBUG, "LEAKED OBJECT: %s", obj->name);
162 }
ctiller58393c22015-01-07 14:03:30 -0800163 break;
164 }
165 }
166 }
167 gpr_mu_unlock(&g_mu);
168
Nicolas "Pixel" Nobleae7b45a2015-02-04 03:28:34 +0100169 grpc_kick_poller();
ctiller58393c22015-01-07 14:03:30 -0800170 gpr_event_wait(&g_background_callback_executor_done, gpr_inf_future);
171
172 grpc_alarm_list_shutdown();
Craig Tiller8e0b08a2015-06-01 17:04:17 -0700173
ctiller58393c22015-01-07 14:03:30 -0800174 grpc_iomgr_platform_shutdown();
ctiller58393c22015-01-07 14:03:30 -0800175 gpr_mu_destroy(&g_mu);
Nicolas "Pixel" Nobleae7b45a2015-02-04 03:28:34 +0100176 gpr_cv_destroy(&g_rcv);
ctiller58393c22015-01-07 14:03:30 -0800177}
178
Craig Tillerfa275a92015-06-01 13:55:54 -0700179void grpc_iomgr_register_object(grpc_iomgr_object *obj, const char *name) {
ctiller58393c22015-01-07 14:03:30 -0800180 gpr_mu_lock(&g_mu);
Craig Tiller8e0b08a2015-06-01 17:04:17 -0700181 obj->name = gpr_strdup(name);
Craig Tillerfa275a92015-06-01 13:55:54 -0700182 obj->next = &g_root_object;
183 obj->prev = obj->next->prev;
184 obj->next->prev = obj->prev->next = obj;
ctiller58393c22015-01-07 14:03:30 -0800185 gpr_mu_unlock(&g_mu);
186}
187
Craig Tillerfa275a92015-06-01 13:55:54 -0700188void grpc_iomgr_unregister_object(grpc_iomgr_object *obj) {
ctiller58393c22015-01-07 14:03:30 -0800189 gpr_mu_lock(&g_mu);
Craig Tillerfa275a92015-06-01 13:55:54 -0700190 obj->next->prev = obj->prev;
191 obj->prev->next = obj->next;
Craig Tiller8e0b08a2015-06-01 17:04:17 -0700192 gpr_free(obj->name);
Craig Tillerfa275a92015-06-01 13:55:54 -0700193 gpr_cv_signal(&g_rcv);
ctiller58393c22015-01-07 14:03:30 -0800194 gpr_mu_unlock(&g_mu);
195}
196
David Garcia Quintasa30020f2015-05-27 19:21:01 -0700197void grpc_iomgr_closure_init(grpc_iomgr_closure *closure, grpc_iomgr_cb_func cb,
198 void *cb_arg) {
199 closure->cb = cb;
200 closure->cb_arg = cb_arg;
David Garcia Quintasa30020f2015-05-27 19:21:01 -0700201 closure->next = NULL;
David Garcia Quintas5f228f52015-05-26 19:58:50 -0700202}
203
David Garcia Quintasa30020f2015-05-27 19:21:01 -0700204void grpc_iomgr_add_delayed_callback(grpc_iomgr_closure *closure, int success) {
205 closure->success = success;
ctiller58393c22015-01-07 14:03:30 -0800206 gpr_mu_lock(&g_mu);
David Garcia Quintasa30020f2015-05-27 19:21:01 -0700207 closure->next = NULL;
ctiller58393c22015-01-07 14:03:30 -0800208 if (!g_cbs_tail) {
David Garcia Quintasa30020f2015-05-27 19:21:01 -0700209 g_cbs_head = g_cbs_tail = closure;
ctiller58393c22015-01-07 14:03:30 -0800210 } else {
David Garcia Quintasa30020f2015-05-27 19:21:01 -0700211 g_cbs_tail->next = closure;
212 g_cbs_tail = closure;
ctiller58393c22015-01-07 14:03:30 -0800213 }
Craig Tiller3c1331f2015-06-01 13:17:15 -0700214 if (g_shutdown) {
215 gpr_cv_signal(&g_rcv);
216 }
ctiller58393c22015-01-07 14:03:30 -0800217 gpr_mu_unlock(&g_mu);
218}
219
David Garcia Quintasa30020f2015-05-27 19:21:01 -0700220void grpc_iomgr_add_callback(grpc_iomgr_closure *closure) {
David Garcia Quintas1c762bd2015-05-31 17:04:43 -0700221 grpc_iomgr_add_delayed_callback(closure, 1 /* GPR_TRUE */);
ctiller58393c22015-01-07 14:03:30 -0800222}
223
224int grpc_maybe_call_delayed_callbacks(gpr_mu *drop_mu, int success) {
225 int n = 0;
226 gpr_mu *retake_mu = NULL;
David Garcia Quintasa30020f2015-05-27 19:21:01 -0700227 grpc_iomgr_closure *closure;
ctiller58393c22015-01-07 14:03:30 -0800228 for (;;) {
229 /* check for new work */
230 if (!gpr_mu_trylock(&g_mu)) {
231 break;
232 }
David Garcia Quintasa30020f2015-05-27 19:21:01 -0700233 closure = g_cbs_head;
234 if (!closure) {
ctiller58393c22015-01-07 14:03:30 -0800235 gpr_mu_unlock(&g_mu);
236 break;
237 }
David Garcia Quintasa30020f2015-05-27 19:21:01 -0700238 g_cbs_head = closure->next;
ctiller58393c22015-01-07 14:03:30 -0800239 if (!g_cbs_head) g_cbs_tail = NULL;
240 gpr_mu_unlock(&g_mu);
241 /* if we have a mutex to drop, do so before executing work */
242 if (drop_mu) {
243 gpr_mu_unlock(drop_mu);
244 retake_mu = drop_mu;
245 drop_mu = NULL;
246 }
David Garcia Quintasa30020f2015-05-27 19:21:01 -0700247 closure->cb(closure->cb_arg, success && closure->success);
ctiller58393c22015-01-07 14:03:30 -0800248 n++;
249 }
250 if (retake_mu) {
251 gpr_mu_lock(retake_mu);
252 }
253 return n;
Craig Tiller190d3602015-02-18 09:23:38 -0800254}