/* * 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. */ #include #include #include #include using namespace apache::thrift; using namespace static_reflection::demo; struct print_struct_member { template void operator()(fatal::indexed, T const& object) const { auto name = fatal::z_data(); const auto& value = typename Member::getter{}(object); std::cout << " " << name << " = " << value << '\n'; std::cout << " - type class: " << folly::demangle(typeid(typename Member::type_class)) << '\n'; std::cout << " - concrete type: " << folly::demangle(typeid(typename Member::type)) << '\n'; std::cout << '\n'; } }; template void print_struct_info(T const& object) { using info = reflect_struct; std::cout << "struct name: " << fatal::z_data() << '\n'; std::cout << '\n'; fatal::foreach(print_struct_member(), object); } int main(int argc, char** argv) { folly::init(&argc, &argv); simple_struct value; *value.i32_data_ref() = 12345678; *value.i16_data_ref() = 4321; *value.double_data_ref() = 3.1415926; *value.string_data_ref() = "hello, world"; print_struct_info(value); return 0; }