// Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved. // // 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 "lite/utils/cp_logging.h" namespace paddle { namespace lite { class Any { public: template void set(const T& v) { set(); *get_mutable() = v; } template void set() { if (type_ != kInvalidType) { CHECK(type_ == typeid(T).hash_code()); } else { type_ = typeid(T).hash_code(); deleter_ = [&] { delete static_cast(data_); }; } data_ = new T; } template const T& get() const { CHECK(data_); CHECK(type_ == typeid(T).hash_code()); return *static_cast(data_); } template T* get_mutable() { CHECK(data_); CHECK(type_ == typeid(T).hash_code()); return static_cast(data_); } bool valid() const { return (data_ != nullptr); } // ~Any() { // if (valid()) { // deleter_(); // } // } private: static size_t kInvalidType; size_t type_{kInvalidType}; void* data_{nullptr}; std::function deleter_; }; } // namespace lite } // namespace paddle