GRPC C++  1.39.1
message_size_filter.h
Go to the documentation of this file.
1 //
2 // Copyright 2016 gRPC authors.
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 // http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16 
17 #ifndef GRPC_CORE_EXT_FILTERS_MESSAGE_SIZE_MESSAGE_SIZE_FILTER_H
18 #define GRPC_CORE_EXT_FILTERS_MESSAGE_SIZE_MESSAGE_SIZE_FILTER_H
19 
21 
24 
26 
27 namespace grpc_core {
28 
30  public:
34  };
35 
36  MessageSizeParsedConfig(int max_send_size, int max_recv_size) {
37  limits_.max_send_size = max_send_size;
38  limits_.max_recv_size = max_recv_size;
39  }
40 
41  const message_size_limits& limits() const { return limits_; }
42 
44  const grpc_call_context_element* context);
45 
46  private:
47  message_size_limits limits_;
48 };
49 
51  public:
52  std::unique_ptr<ServiceConfigParser::ParsedConfig> ParsePerMethodParams(
53  const grpc_channel_args* /*args*/, const Json& json,
54  grpc_error_handle* error) override;
55 
56  static void Register();
57 
58  static size_t ParserIndex();
59 };
60 
63 
64 } // namespace grpc_core
65 
66 #endif /* GRPC_CORE_EXT_FILTERS_MESSAGE_SIZE_MESSAGE_SIZE_FILTER_H */
Definition: json.h:38
Definition: message_size_filter.h:29
MessageSizeParsedConfig(int max_send_size, int max_recv_size)
Definition: message_size_filter.h:36
static const MessageSizeParsedConfig * GetFromCallContext(const grpc_call_context_element *context)
Definition: message_size_filter.cc:54
const message_size_limits & limits() const
Definition: message_size_filter.h:41
Definition: message_size_filter.h:50
static size_t ParserIndex()
Definition: message_size_filter.cc:122
static void Register()
Definition: message_size_filter.cc:117
std::unique_ptr< ServiceConfigParser::ParsedConfig > ParsePerMethodParams(const grpc_channel_args *, const Json &json, grpc_error_handle *error) override
Definition: message_size_filter.cc:70
This is the base class that all service config parsers MUST use to store parsed service config data.
Definition: service_config_parser.h:39
This is the base class that all service config parsers should derive from.
Definition: service_config_parser.h:45
grpc_error_handle error
Definition: lame_client.cc:54
const grpc_channel_filter grpc_message_size_filter
Definition: message_size_filter.cc:336
Round Robin Policy.
Definition: backend_metric.cc:26
int GetMaxSendSizeFromChannelArgs(const grpc_channel_args *args)
Definition: message_size_filter.cc:131
int GetMaxRecvSizeFromChannelArgs(const grpc_channel_args *args)
Definition: message_size_filter.cc:124
Definition: context.h:44
An array of arguments that can be passed around.
Definition: grpc_types.h:132
Definition: channel_stack.h:107
int max_recv_size
Definition: message_size_filter.h:33
int max_send_size
Definition: message_size_filter.h:32
Definition: error_internal.h:41