mirror of https://github.com/grpc/grpc.git
[metadata] Move hooks into grpc_base, separate build some (#32781)
When using this internally, we noticed that it's impossible to use custom_metadata.h without creating a dependency cycle between :custom_metadata and :grpc_base. A full build refactoring is too large right now, so merge that header into :grpc_base for the time being. Also, separate `SimpleSliceBasedMetadata` into its own file, so that it can be reused in custom_metadata.h. <!-- If you know who should review your pull request, please assign it to that person, otherwise the pull request would get assigned randomly. If your pull request is for a specific language, please add the appropriate lang label. --> --------- Co-authored-by: ctiller <ctiller@users.noreply.github.com>pull/32792/head
parent
93b802d02e
commit
7fae3dec0c
10 changed files with 63 additions and 24 deletions
@ -0,0 +1,48 @@ |
||||
// 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.
|
||||
|
||||
#ifndef GRPC_SRC_CORE_LIB_TRANSPORT_SIMPLE_SLICE_BASED_METADATA_H |
||||
#define GRPC_SRC_CORE_LIB_TRANSPORT_SIMPLE_SLICE_BASED_METADATA_H |
||||
|
||||
#include <grpc/support/port_platform.h> |
||||
|
||||
#include "absl/strings/string_view.h" |
||||
|
||||
#include "src/core/lib/slice/slice.h" |
||||
#include "src/core/lib/transport/parsed_metadata.h" |
||||
|
||||
namespace grpc_core { |
||||
|
||||
// Models grpc metadata (as per the rules for MetadataMap) for a metadata
|
||||
// element that consists of a Slice.
|
||||
// Use by deriving from this class and adding `kRepeatable` and `key()`.
|
||||
struct SimpleSliceBasedMetadata { |
||||
using ValueType = Slice; |
||||
using MementoType = Slice; |
||||
static MementoType ParseMemento(Slice value, MetadataParseErrorFn) { |
||||
return value.TakeOwned(); |
||||
} |
||||
static ValueType MementoToValue(MementoType value) { return value; } |
||||
static Slice Encode(const ValueType& x) { return x.Ref(); } |
||||
static absl::string_view DisplayValue(const ValueType& value) { |
||||
return value.as_string_view(); |
||||
} |
||||
static absl::string_view DisplayMemento(const MementoType& value) { |
||||
return value.as_string_view(); |
||||
} |
||||
}; |
||||
|
||||
} // namespace grpc_core
|
||||
|
||||
#endif // GRPC_SRC_CORE_LIB_TRANSPORT_SIMPLE_SLICE_BASED_METADATA_H
|
Loading…
Reference in new issue