blob: 8db7229e6918eb98e1128142b9c010e6d358f93e [file] [log] [blame]
murgatroid99749666e2015-01-12 18:25:58 -08001/*
2 *
3 * Copyright 2014, 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
murgatroid99e5061512015-01-12 18:14:35 -080034#include <node.h>
35#include <nan.h>
36
37#include "grpc/grpc.h"
38#include "grpc/support/time.h"
39#include "completion_queue_async_worker.h"
40#include "event.h"
41#include "tag.h"
42
43namespace grpc {
44namespace node {
45
murgatroid997ab95fb2015-02-02 16:50:07 -080046const int max_queue_threads = 2;
47
murgatroid99e5061512015-01-12 18:14:35 -080048using v8::Function;
49using v8::Handle;
50using v8::Object;
51using v8::Persistent;
52using v8::Value;
53
54grpc_completion_queue *CompletionQueueAsyncWorker::queue;
55
murgatroid997ab95fb2015-02-02 16:50:07 -080056int CompletionQueueAsyncWorker::current_threads;
57int CompletionQueueAsyncWorker::waiting_next_calls;
58
Craig Tillere8e304e2015-01-13 14:41:29 -080059CompletionQueueAsyncWorker::CompletionQueueAsyncWorker()
60 : NanAsyncWorker(NULL) {}
murgatroid99e5061512015-01-12 18:14:35 -080061
Craig Tillere8e304e2015-01-13 14:41:29 -080062CompletionQueueAsyncWorker::~CompletionQueueAsyncWorker() {}
murgatroid99e5061512015-01-12 18:14:35 -080063
64void CompletionQueueAsyncWorker::Execute() {
65 result = grpc_completion_queue_next(queue, gpr_inf_future);
66}
67
Craig Tillere8e304e2015-01-13 14:41:29 -080068grpc_completion_queue *CompletionQueueAsyncWorker::GetQueue() { return queue; }
murgatroid99e5061512015-01-12 18:14:35 -080069
70void CompletionQueueAsyncWorker::Next() {
71 NanScope();
murgatroid997ab95fb2015-02-02 16:50:07 -080072 if (current_threads < max_queue_threads) {
73 CompletionQueueAsyncWorker *worker = new CompletionQueueAsyncWorker();
74 NanAsyncQueueWorker(worker);
75 } else {
76 waiting_next_calls += 1;
77 }
murgatroid99e5061512015-01-12 18:14:35 -080078}
79
80void CompletionQueueAsyncWorker::Init(Handle<Object> exports) {
81 NanScope();
murgatroid997ab95fb2015-02-02 16:50:07 -080082 current_threads = 0;
83 waiting_next_calls = 0;
murgatroid99e5061512015-01-12 18:14:35 -080084 queue = grpc_completion_queue_create();
85}
86
87void CompletionQueueAsyncWorker::HandleOKCallback() {
88 NanScope();
murgatroid997ab95fb2015-02-02 16:50:07 -080089 if (waiting_next_calls > 0) {
90 waiting_next_calls -= 1;
91 CompletionQueueAsyncWorker *worker = new CompletionQueueAsyncWorker();
92 NanAsyncQueueWorker(worker);
93 } else {
94 current_threads -= 1;
95 }
murgatroid99e5061512015-01-12 18:14:35 -080096 NanCallback event_callback(GetTagHandle(result->tag).As<Function>());
Craig Tillere8e304e2015-01-13 14:41:29 -080097 Handle<Value> argv[] = {CreateEventObject(result)};
murgatroid99e5061512015-01-12 18:14:35 -080098
99 DestroyTag(result->tag);
100 grpc_event_finish(result);
101 result = NULL;
102
103 event_callback.Call(1, argv);
104}
105
106} // namespace node
107} // namespace grpc