blob: d9a1319c42fc5ee46f6385134f974f98e8cbb392 [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, Google Inc.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -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/transport/transport.h"
35#include "src/core/transport/transport_impl.h"
36
37size_t grpc_transport_stream_size(grpc_transport *transport) {
38 return transport->vtable->sizeof_stream;
39}
40
nnoble0c475f02014-12-05 15:37:39 -080041void grpc_transport_goaway(grpc_transport *transport, grpc_status_code status,
42 gpr_slice message) {
43 transport->vtable->goaway(transport, status, message);
44}
45
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080046void grpc_transport_close(grpc_transport *transport) {
47 transport->vtable->close(transport);
48}
49
50void grpc_transport_destroy(grpc_transport *transport) {
51 transport->vtable->destroy(transport);
52}
53
54int grpc_transport_init_stream(grpc_transport *transport, grpc_stream *stream,
Craig Tiller06aeea72015-04-23 10:54:45 -070055 const void *server_data,
56 grpc_transport_op *initial_op) {
57 return transport->vtable->init_stream(transport, stream, server_data,
58 initial_op);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080059}
60
Craig Tillerfbf5be22015-04-22 16:17:09 -070061void grpc_transport_perform_op(grpc_transport *transport, grpc_stream *stream,
62 grpc_transport_op *op) {
63 transport->vtable->perform_op(transport, stream, op);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080064}
65
ctillerd79b4862014-12-17 16:36:59 -080066void grpc_transport_add_to_pollset(grpc_transport *transport,
67 grpc_pollset *pollset) {
68 transport->vtable->add_to_pollset(transport, pollset);
69}
70
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080071void grpc_transport_destroy_stream(grpc_transport *transport,
72 grpc_stream *stream) {
73 transport->vtable->destroy_stream(transport, stream);
74}
75
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080076void grpc_transport_ping(grpc_transport *transport, void (*cb)(void *user_data),
77 void *user_data) {
78 transport->vtable->ping(transport, cb, user_data);
79}
80
81void grpc_transport_setup_cancel(grpc_transport_setup *setup) {
82 setup->vtable->cancel(setup);
83}
84
85void grpc_transport_setup_initiate(grpc_transport_setup *setup) {
86 setup->vtable->initiate(setup);
Craig Tiller190d3602015-02-18 09:23:38 -080087}
Craig Tiller6e84aba2015-04-23 15:08:17 -070088
89void grpc_transport_op_finish_with_failure(grpc_transport_op *op) {
90 if (op->send_ops) {
91 op->on_done_send(op->send_user_data, 0);
92 }
93 if (op->recv_ops) {
94 op->on_done_recv(op->recv_user_data, 0);
95 }
Craig Tiller7e320ba2015-04-23 16:28:07 -070096}
Craig Tiller2ea37fd2015-04-24 13:03:49 -070097
Craig Tiller1a727fd2015-04-24 13:21:22 -070098void grpc_transport_op_add_cancellation(grpc_transport_op *op,
99 grpc_status_code status,
100 grpc_mdstr *message) {
Craig Tiller2ea37fd2015-04-24 13:03:49 -0700101 if (op->cancel_with_status == GRPC_STATUS_OK) {
102 op->cancel_with_status = status;
103 op->cancel_message = message;
104 } else if (message) {
105 grpc_mdstr_unref(message);
106 }
107}