Sha256: 4ab058ba1a6ab31ce74547335a8164f0178aa9956ef35ce8adc50a1791878c70

Contents?: true

Size: 1.47 KB

Versions: 6

Compression:

Stored size: 1.47 KB

Contents

// Copyright 2024 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_GPRPP_DOWN_CAST_H
#define GRPC_SRC_CORE_LIB_GPRPP_DOWN_CAST_H

#include <type_traits>

#include "absl/base/config.h"
#include "absl/log/check.h"

#include <grpc/support/log.h>
#include <grpc/support/port_platform.h>

namespace grpc_core {

template <typename To, typename From>
inline To DownCast(From* f) {
  static_assert(
      std::is_base_of<From, typename std::remove_pointer<To>::type>::value,
      "DownCast requires a base-to-derived relationship");
// If we have RTTI & we're in debug, assert that the cast is legal.
#if ABSL_INTERNAL_HAS_RTTI
#ifndef NDEBUG
  if (f != nullptr) CHECK_NE(dynamic_cast<To>(f), nullptr);
#endif
#endif
  return static_cast<To>(f);
}

template <typename To, typename From>
inline To DownCast(From& f) {
  return *DownCast<typename std::remove_reference<To>::type*>(&f);
}

}  // namespace grpc_core

#endif  // GRPC_SRC_CORE_LIB_GPRPP_DOWN_CAST_H

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
grpc-1.64.3 src/core/lib/gprpp/down_cast.h
grpc-1.65.2 src/core/lib/gprpp/down_cast.h
grpc-1.65.1 src/core/lib/gprpp/down_cast.h
grpc-1.65.0 src/core/lib/gprpp/down_cast.h
grpc-1.65.0.pre2 src/core/lib/gprpp/down_cast.h
grpc-1.65.0.pre1 src/core/lib/gprpp/down_cast.h