Sha256: ca1e563fe886d1908f526a0da8d0e7fcace1e764d090e51b042e86daa3a80029

Contents?: true

Size: 1.76 KB

Versions: 15

Compression:

Stored size: 1.76 KB

Contents

// Copyright 2023 gRPC authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include "src/core/lib/transport/metadata_info.h"

#include <grpc/support/port_platform.h>

#include "src/core/lib/slice/slice.h"

namespace grpc_core {

class MetadataSizesAnnotation::MetadataSizeEncoder {
 public:
  explicit MetadataSizeEncoder(std::string& summary) : summary_(summary) {}

  void Encode(const Slice& key, const Slice& value) {
    AddToSummary(key.as_string_view(), value.size());
  }

  template <typename Key, typename Value>
  void Encode(Key, const Value& value) {
    AddToSummary(Key::key(), EncodedSizeOfKey(Key(), value));
  }

 private:
  void AddToSummary(absl::string_view key,
                    size_t value_length) GPR_ATTRIBUTE_NOINLINE {
    absl::StrAppend(&summary_, key, ":",
                    hpack_constants::SizeForEntry(key.size(), value_length),
                    ",");
  }
  std::string& summary_;
};

std::string MetadataSizesAnnotation::ToString() const {
  std::string metadata_annotation =
      absl::StrCat("gRPC metadata soft_limit:", soft_limit_,
                   ",hard_limit:", hard_limit_, ",");
  MetadataSizeEncoder encoder(metadata_annotation);
  metadata_buffer_->Encode(&encoder);
  return metadata_annotation;
}

}  // namespace grpc_core

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
grpc-1.70.1 src/core/lib/transport/metadata_info.cc
grpc-1.69.0 src/core/lib/transport/metadata_info.cc
grpc-1.69.0.pre1 src/core/lib/transport/metadata_info.cc
grpc-1.68.1 src/core/lib/transport/metadata_info.cc
grpc-1.67.0 src/core/lib/transport/metadata_info.cc
grpc-1.67.0.pre1 src/core/lib/transport/metadata_info.cc
grpc-1.66.0 src/core/lib/transport/metadata_info.cc
grpc-1.66.0.pre5 src/core/lib/transport/metadata_info.cc
grpc-1.66.0.pre3 src/core/lib/transport/metadata_info.cc
grpc-1.64.3 src/core/lib/transport/metadata_info.cc
grpc-1.65.2 src/core/lib/transport/metadata_info.cc
grpc-1.65.1 src/core/lib/transport/metadata_info.cc
grpc-1.65.0 src/core/lib/transport/metadata_info.cc
grpc-1.65.0.pre2 src/core/lib/transport/metadata_info.cc
grpc-1.65.0.pre1 src/core/lib/transport/metadata_info.cc