blob: 2f898ff7d7a61b9b8830056048031ee7a4485b7f [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/surface/client.h"
35
36#include "src/core/surface/call.h"
Craig Tillerda669372015-02-05 10:10:15 -080037#include "src/core/surface/channel.h"
Craig Tiller485d7762015-01-23 12:54:05 -080038#include "src/core/support/string.h"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080039#include <grpc/support/alloc.h>
40#include <grpc/support/log.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080041
Craig Tiller87d5b192015-04-16 14:37:57 -070042typedef struct { void *unused; } call_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080043
Craig Tiller87d5b192015-04-16 14:37:57 -070044typedef struct { void *unused; } channel_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080045
ctillerf962f522014-12-10 15:28:27 -080046static void call_op(grpc_call_element *elem, grpc_call_element *from_elem,
47 grpc_call_op *op) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080048 GRPC_CALL_LOG_OP(GPR_INFO, elem, op);
49
50 switch (op->type) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080051 case GRPC_RECV_METADATA:
Craig Tiller6902ad22015-04-16 08:01:49 -070052 grpc_call_recv_metadata(elem, &op->data.metadata);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080053 break;
54 case GRPC_RECV_MESSAGE:
Craig Tillercce17ac2015-01-20 09:29:28 -080055 grpc_call_recv_message(elem, op->data.message);
56 op->done_cb(op->user_data, GRPC_OP_OK);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080057 break;
58 case GRPC_RECV_HALF_CLOSE:
Craig Tillercce17ac2015-01-20 09:29:28 -080059 grpc_call_read_closed(elem);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080060 break;
61 case GRPC_RECV_FINISH:
Craig Tillercce17ac2015-01-20 09:29:28 -080062 grpc_call_stream_closed(elem);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080063 break;
Craig Tiller8b282cb2015-04-17 14:57:44 -070064 case GRPC_RECV_SYNTHETIC_STATUS:
Craig Tiller76f5d462015-04-17 14:58:12 -070065 grpc_call_recv_synthetic_status(elem, op->data.synthetic_status.status,
66 op->data.synthetic_status.message);
Craig Tiller8b282cb2015-04-17 14:57:44 -070067 break;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080068 default:
69 GPR_ASSERT(op->dir == GRPC_CALL_DOWN);
70 grpc_call_next_op(elem, op);
71 }
72}
73
ctillerf962f522014-12-10 15:28:27 -080074static void channel_op(grpc_channel_element *elem,
75 grpc_channel_element *from_elem, grpc_channel_op *op) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080076 switch (op->type) {
77 case GRPC_ACCEPT_CALL:
78 gpr_log(GPR_ERROR, "Client cannot accept new calls");
79 break;
80 case GRPC_TRANSPORT_CLOSED:
Craig Tillerda669372015-02-05 10:10:15 -080081 grpc_client_channel_closed(elem);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080082 break;
nnoble0c475f02014-12-05 15:37:39 -080083 case GRPC_TRANSPORT_GOAWAY:
84 gpr_slice_unref(op->data.goaway.message);
85 break;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080086 default:
87 GPR_ASSERT(op->dir == GRPC_CALL_DOWN);
88 grpc_channel_next_op(elem, op);
89 }
90}
91
92static void init_call_elem(grpc_call_element *elem,
93 const void *transport_server_data) {}
94
95static void destroy_call_elem(grpc_call_element *elem) {}
96
97static void init_channel_elem(grpc_channel_element *elem,
98 const grpc_channel_args *args, grpc_mdctx *mdctx,
99 int is_first, int is_last) {
100 GPR_ASSERT(is_first);
101 GPR_ASSERT(!is_last);
102}
103
Craig Tillerb5dcec52015-01-13 11:13:42 -0800104static void destroy_channel_elem(grpc_channel_element *elem) {}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800105
106const grpc_channel_filter grpc_client_surface_filter = {
Craig Tiller87d5b192015-04-16 14:37:57 -0700107 call_op, channel_op, sizeof(call_data), init_call_elem, destroy_call_elem,
108 sizeof(channel_data), init_channel_elem, destroy_channel_elem, "client",
109};