blob: 69c00b6a4fd9aa3a530d0e4605ff749b499829bf [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
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080041void grpc_transport_destroy(grpc_transport *transport) {
42 transport->vtable->destroy(transport);
43}
44
45int grpc_transport_init_stream(grpc_transport *transport, grpc_stream *stream,
Craig Tiller06aeea72015-04-23 10:54:45 -070046 const void *server_data,
Craig Tillerb7959a02015-06-25 08:50:54 -070047 grpc_transport_stream_op *initial_op) {
Craig Tiller06aeea72015-04-23 10:54:45 -070048 return transport->vtable->init_stream(transport, stream, server_data,
49 initial_op);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080050}
51
Craig Tiller079a11b2015-06-30 10:07:15 -070052void grpc_transport_perform_stream_op(grpc_transport *transport,
53 grpc_stream *stream,
54 grpc_transport_stream_op *op) {
Craig Tiller3f475422015-06-25 10:43:05 -070055 transport->vtable->perform_stream_op(transport, stream, op);
56}
57
58void grpc_transport_perform_op(grpc_transport *transport,
59 grpc_transport_op *op) {
60 transport->vtable->perform_op(transport, op);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080061}
62
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080063void grpc_transport_destroy_stream(grpc_transport *transport,
64 grpc_stream *stream) {
65 transport->vtable->destroy_stream(transport, stream);
66}
67
Craig Tiller1b22b9d2015-07-20 13:42:22 -070068char *grpc_transport_get_peer(grpc_transport *transport) {
69 return transport->vtable->get_peer(transport);
70}
71
Craig Tillerb7959a02015-06-25 08:50:54 -070072void grpc_transport_stream_op_finish_with_failure(
73 grpc_transport_stream_op *op) {
Craig Tiller6e84aba2015-04-23 15:08:17 -070074 if (op->send_ops) {
Craig Tiller1e6facb2015-06-11 22:47:11 -070075 op->on_done_send->cb(op->on_done_send->cb_arg, 0);
Craig Tiller6e84aba2015-04-23 15:08:17 -070076 }
77 if (op->recv_ops) {
Craig Tiller1e6facb2015-06-11 22:47:11 -070078 op->on_done_recv->cb(op->on_done_recv->cb_arg, 0);
Craig Tiller6e84aba2015-04-23 15:08:17 -070079 }
Craig Tiller5dde66e2015-06-02 09:05:23 -070080 if (op->on_consumed) {
Craig Tiller1e6facb2015-06-11 22:47:11 -070081 op->on_consumed->cb(op->on_consumed->cb_arg, 0);
Craig Tiller5dde66e2015-06-02 09:05:23 -070082 }
Craig Tiller7e320ba2015-04-23 16:28:07 -070083}
Craig Tiller2ea37fd2015-04-24 13:03:49 -070084
Craig Tillerb7959a02015-06-25 08:50:54 -070085void grpc_transport_stream_op_add_cancellation(grpc_transport_stream_op *op,
86 grpc_status_code status,
87 grpc_mdstr *message) {
Craig Tiller2ea37fd2015-04-24 13:03:49 -070088 if (op->cancel_with_status == GRPC_STATUS_OK) {
89 op->cancel_with_status = status;
Craig Tiller0d4836d2015-06-30 15:15:43 -070090 }
91 if (message) {
Craig Tiller1a65a232015-07-06 10:22:32 -070092 GRPC_MDSTR_UNREF(message);
Craig Tiller2ea37fd2015-04-24 13:03:49 -070093 }
94}