blob: 2689e3028a26163f2b99a9347eda03e9358b1774 [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 Tillerb7959a02015-06-25 08:50:54 -070068void grpc_transport_stream_op_finish_with_failure(
69 grpc_transport_stream_op *op) {
Craig Tiller6e84aba2015-04-23 15:08:17 -070070 if (op->send_ops) {
Craig Tiller1e6facb2015-06-11 22:47:11 -070071 op->on_done_send->cb(op->on_done_send->cb_arg, 0);
Craig Tiller6e84aba2015-04-23 15:08:17 -070072 }
73 if (op->recv_ops) {
Craig Tiller1e6facb2015-06-11 22:47:11 -070074 op->on_done_recv->cb(op->on_done_recv->cb_arg, 0);
Craig Tiller6e84aba2015-04-23 15:08:17 -070075 }
Craig Tiller5dde66e2015-06-02 09:05:23 -070076 if (op->on_consumed) {
Craig Tiller1e6facb2015-06-11 22:47:11 -070077 op->on_consumed->cb(op->on_consumed->cb_arg, 0);
Craig Tiller5dde66e2015-06-02 09:05:23 -070078 }
Craig Tiller7e320ba2015-04-23 16:28:07 -070079}
Craig Tiller2ea37fd2015-04-24 13:03:49 -070080
Craig Tillerb7959a02015-06-25 08:50:54 -070081void grpc_transport_stream_op_add_cancellation(grpc_transport_stream_op *op,
82 grpc_status_code status,
83 grpc_mdstr *message) {
Craig Tiller2ea37fd2015-04-24 13:03:49 -070084 if (op->cancel_with_status == GRPC_STATUS_OK) {
85 op->cancel_with_status = status;
Craig Tiller0d4836d2015-06-30 15:15:43 -070086 }
87 if (message) {
Craig Tiller1a65a232015-07-06 10:22:32 -070088 GRPC_MDSTR_UNREF(message);
Craig Tiller2ea37fd2015-04-24 13:03:49 -070089 }
90}