/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * 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. */ #pragma once #include #include #include namespace apache { namespace thrift { namespace detail { template struct VisitUnion { static_assert(is_thrift_class_v, "Type must be thrift class"); static_assert(!is_thrift_class_v, "Must include visitation header"); }; } // namespace detail /** * Applies the callable to active member of thrift union. Example: * * visit_union(thriftUnion, [](const ThriftField& meta, auto&& value) { * LOG(INFO) << *meta.name_ref() << " --> " << value; * }) * * ThriftField schema is defined here: https://git.io/JJQpY * If `no_metadata` thrift option is enabled, ThriftField will be empty. * If union is empty, callable won't be called. * * @param t thrift union * @param f a callable that accepts all member types from union */ template decltype(auto) visit_union(T&& t, F f) { return apache::thrift::detail::VisitUnion>()( detail::MetadataForwarder{std::move(f)}, static_cast(t)); } } // namespace thrift } // namespace apache