GRPC Core  0.11.0.0
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
channel.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright 2015, Google Inc.
4  * 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 #ifndef GRPC_INTERNAL_CORE_SURFACE_CHANNEL_H
35 #define GRPC_INTERNAL_CORE_SURFACE_CHANNEL_H
36 
39 
41  const char *target, const grpc_channel_filter **filters, size_t count,
42  const grpc_channel_args *args, grpc_mdctx *mdctx, int is_client);
43 
46 
49 
55  int status_code);
58  grpc_channel *channel);
60  grpc_channel *channel);
63 
64 #ifdef GRPC_CHANNEL_REF_COUNT_DEBUG
65 void grpc_channel_internal_ref(grpc_channel *channel, const char *reason);
66 void grpc_channel_internal_unref(grpc_channel *channel, const char *reason);
67 #define GRPC_CHANNEL_INTERNAL_REF(channel, reason) \
68  grpc_channel_internal_ref(channel, reason)
69 #define GRPC_CHANNEL_INTERNAL_UNREF(channel, reason) \
70  grpc_channel_internal_unref(channel, reason)
71 #else
74 #define GRPC_CHANNEL_INTERNAL_REF(channel, reason) \
75  grpc_channel_internal_ref(channel)
76 #define GRPC_CHANNEL_INTERNAL_UNREF(channel, reason) \
77  grpc_channel_internal_unref(channel)
78 #endif
79 
80 #endif /* GRPC_INTERNAL_CORE_SURFACE_CHANNEL_H */
Definition: channel_stack.h:64
Definition: channel_stack.h:132
An array of arguments that can be passed around.
Definition: grpc.h:111
Definition: channel.c:62
void grpc_channel_internal_ref(grpc_channel *channel)
Definition: channel.c:268
Definition: metadata.h:70
uint32_t gpr_uint32
Definition: port_platform.h:312
grpc_mdelem * grpc_channel_get_reffed_status_elem(grpc_channel *channel, int status_code)
Get a grpc_mdelem of grpc-status: X where X is the numeric value of status_code.
Definition: channel.c:351
grpc_mdctx * grpc_channel_get_metadata_context(grpc_channel *channel)
Get a (borrowed) pointer to the channel wide metadata context.
Definition: channel.c:333
gpr_uint32 grpc_channel_get_max_message_length(grpc_channel *channel)
Definition: channel.c:367
grpc_channel * grpc_channel_create_from_filters(const char *target, const grpc_channel_filter **filters, size_t count, const grpc_channel_args *args, grpc_mdctx *mdctx, int is_client)
Definition: channel.c:93
grpc_channel_stack * grpc_channel_get_channel_stack(grpc_channel *channel)
Get a (borrowed) pointer to this channels underlying channel stack.
Definition: channel.c:329
Definition: metadata.c:98
Definition: metadata.h:78
grpc_mdstr * grpc_channel_get_status_string(grpc_channel *channel)
Definition: channel.c:337
grpc_mdstr * grpc_channel_get_compression_algorithm_string(grpc_channel *channel)
Definition: channel.c:341
grpc_mdstr * grpc_channel_get_message_string(grpc_channel *channel)
Definition: channel.c:363
void grpc_channel_internal_unref(grpc_channel *channel)
Definition: channel.c:309
grpc_mdstr * grpc_channel_get_encodings_accepted_by_peer_string(grpc_channel *channel)
Definition: channel.c:346