GRPC Core  9.0.0
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 
43  private:
44  message_size_limits limits_;
45 };
46 
48  public:
49  std::unique_ptr<ServiceConfig::ParsedConfig> ParsePerMethodParams(
50  const grpc_json* json, grpc_error** error) override;
51 
52  static void Register();
53 
54  static size_t ParserIndex();
55 };
56 
57 } // namespace grpc_core
58 
59 #endif /* GRPC_CORE_EXT_FILTERS_MESSAGE_SIZE_MESSAGE_SIZE_FILTER_H */
Definition: message_size_filter.h:29
MessageSizeParsedConfig(int max_send_size, int max_recv_size)
Definition: message_size_filter.h:36
const message_size_limits & limits() const
Definition: message_size_filter.h:41
Definition: message_size_filter.h:47
static size_t ParserIndex()
Definition: message_size_filter.cc:101
std::unique_ptr< ServiceConfig::ParsedConfig > ParsePerMethodParams(const grpc_json *json, grpc_error **error) override
Definition: message_size_filter.cc:48
static void Register()
Definition: message_size_filter.cc:96
This is the base class that all service config parsers MUST use to store parsed service config data.
Definition: service_config.h:62
This is the base class that all service config parsers should derive from.
Definition: service_config.h:68
const grpc_channel_filter grpc_message_size_filter
Definition: message_size_filter.cc:365
Round Robin Policy.
Definition: backend_metric.cc:24
Definition: channel_stack.h:99
int max_recv_size
Definition: message_size_filter.h:33
int max_send_size
Definition: message_size_filter.h:32
Definition: error_internal.h:39
Definition: json.h:32