blob: c4215a2cfb6537a2287a8c31f7fbeba7a5e1de42 [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
Craig Tiller42bc87c2015-02-23 08:50:19 -080034#include <grpc/grpc.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080035
yangg4105e2b2015-01-09 14:19:44 -080036#include <string.h>
37
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080038#include "src/core/channel/channel_stack.h"
Craig Tiller485d7762015-01-23 12:54:05 -080039#include "src/core/support/string.h"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080040#include "src/core/surface/channel.h"
41#include "src/core/surface/call.h"
42#include <grpc/support/alloc.h>
43#include <grpc/support/log.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080044
Craig Tillerbec41a22015-04-27 18:47:40 -070045typedef struct {
46 grpc_linked_mdelem status;
47 grpc_linked_mdelem details;
48} call_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080049
Craig Tiller1b22b9d2015-07-20 13:42:22 -070050typedef struct {
51 grpc_mdctx *mdctx;
52 grpc_channel *master;
53} channel_data;
yangg4105e2b2015-01-09 14:19:44 -080054
Craig Tillere039f032015-06-25 12:54:23 -070055static void lame_start_transport_stream_op(grpc_call_element *elem,
56 grpc_transport_stream_op *op) {
Craig Tillerbec41a22015-04-27 18:47:40 -070057 call_data *calld = elem->call_data;
58 channel_data *chand = elem->channel_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080059 GRPC_CALL_LOG_OP(GPR_INFO, elem, op);
Craig Tillere039f032015-06-25 12:54:23 -070060 if (op->send_ops != NULL) {
Yang Gaodbf8fdc2015-05-28 00:52:31 -070061 grpc_stream_ops_unref_owned_objects(op->send_ops->ops, op->send_ops->nops);
Craig Tiller1e6facb2015-06-11 22:47:11 -070062 op->on_done_send->cb(op->on_done_send->cb_arg, 0);
Craig Tillerbec41a22015-04-27 18:47:40 -070063 }
Craig Tillere039f032015-06-25 12:54:23 -070064 if (op->recv_ops != NULL) {
Craig Tillerbec41a22015-04-27 18:47:40 -070065 char tmp[GPR_LTOA_MIN_BUFSIZE];
66 grpc_metadata_batch mdb;
67 gpr_ltoa(GRPC_STATUS_UNKNOWN, tmp);
68 calld->status.md =
69 grpc_mdelem_from_strings(chand->mdctx, "grpc-status", tmp);
70 calld->details.md = grpc_mdelem_from_strings(chand->mdctx, "grpc-message",
71 "Rpc sent on a lame channel.");
72 calld->status.prev = calld->details.next = NULL;
73 calld->status.next = &calld->details;
74 calld->details.prev = &calld->status;
75 mdb.list.head = &calld->status;
76 mdb.list.tail = &calld->details;
77 mdb.garbage.head = mdb.garbage.tail = NULL;
Craig Tiller143e7bf2015-07-13 08:41:49 -070078 mdb.deadline = gpr_inf_future(GPR_CLOCK_REALTIME);
Craig Tillerbec41a22015-04-27 18:47:40 -070079 grpc_sopb_add_metadata(op->recv_ops, mdb);
80 *op->recv_state = GRPC_STREAM_CLOSED;
Craig Tiller1e6facb2015-06-11 22:47:11 -070081 op->on_done_recv->cb(op->on_done_recv->cb_arg, 1);
Craig Tillerbec41a22015-04-27 18:47:40 -070082 }
Craig Tillere039f032015-06-25 12:54:23 -070083 if (op->on_consumed != NULL) {
Craig Tiller1e6facb2015-06-11 22:47:11 -070084 op->on_consumed->cb(op->on_consumed->cb_arg, 0);
Craig Tiller5dde66e2015-06-02 09:05:23 -070085 }
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080086}
87
Craig Tiller1b22b9d2015-07-20 13:42:22 -070088static char *lame_get_peer(grpc_call_element *elem) {
89 channel_data *chand = elem->channel_data;
90 return grpc_channel_get_target(chand->master);
91}
92
Craig Tillere039f032015-06-25 12:54:23 -070093static void lame_start_transport_op(grpc_channel_element *elem,
94 grpc_transport_op *op) {
95 if (op->on_connectivity_state_change) {
96 GPR_ASSERT(*op->connectivity_state != GRPC_CHANNEL_FATAL_FAILURE);
97 *op->connectivity_state = GRPC_CHANNEL_FATAL_FAILURE;
98 op->on_connectivity_state_change->cb(
99 op->on_connectivity_state_change->cb_arg, 1);
100 }
101 if (op->on_consumed != NULL) {
102 op->on_consumed->cb(op->on_consumed->cb_arg, 1);
nnoble0c475f02014-12-05 15:37:39 -0800103 }
104}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800105
106static void init_call_elem(grpc_call_element *elem,
Craig Tiller06aeea72015-04-23 10:54:45 -0700107 const void *transport_server_data,
Craig Tillerb7959a02015-06-25 08:50:54 -0700108 grpc_transport_stream_op *initial_op) {
Craig Tiller50d9db52015-04-23 10:52:14 -0700109 if (initial_op) {
Craig Tillerb7959a02015-06-25 08:50:54 -0700110 grpc_transport_stream_op_finish_with_failure(initial_op);
Craig Tiller50d9db52015-04-23 10:52:14 -0700111 }
112}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800113
114static void destroy_call_elem(grpc_call_element *elem) {}
115
Craig Tiller079a11b2015-06-30 10:07:15 -0700116static void init_channel_elem(grpc_channel_element *elem, grpc_channel *master,
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800117 const grpc_channel_args *args, grpc_mdctx *mdctx,
118 int is_first, int is_last) {
Craig Tillerbec41a22015-04-27 18:47:40 -0700119 channel_data *chand = elem->channel_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800120 GPR_ASSERT(is_first);
121 GPR_ASSERT(is_last);
Craig Tillerbec41a22015-04-27 18:47:40 -0700122 chand->mdctx = mdctx;
Craig Tiller1b22b9d2015-07-20 13:42:22 -0700123 chand->master = master;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800124}
125
Craig Tiller87d5b192015-04-16 14:37:57 -0700126static void destroy_channel_elem(grpc_channel_element *elem) {}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800127
128static const grpc_channel_filter lame_filter = {
Craig Tillere039f032015-06-25 12:54:23 -0700129 lame_start_transport_stream_op,
130 lame_start_transport_op,
131 sizeof(call_data),
132 init_call_elem,
133 destroy_call_elem,
134 sizeof(channel_data),
135 init_channel_elem,
136 destroy_channel_elem,
Craig Tiller1b22b9d2015-07-20 13:42:22 -0700137 lame_get_peer,
Craig Tillere039f032015-06-25 12:54:23 -0700138 "lame-client",
Craig Tiller87d5b192015-04-16 14:37:57 -0700139};
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800140
Craig Tiller1b22b9d2015-07-20 13:42:22 -0700141grpc_channel *grpc_lame_client_channel_create(const char *target) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800142 static const grpc_channel_filter *filters[] = {&lame_filter};
Craig Tiller1b22b9d2015-07-20 13:42:22 -0700143 return grpc_channel_create_from_filters(target, filters, 1, NULL,
144 grpc_mdctx_create(), 1);
Craig Tiller190d3602015-02-18 09:23:38 -0800145}