// 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: Any() = default; explicit Any(const Any& other) { type_ = other.type_; data_ = other.clone_data_(other.data_); deleter_ = other.deleter_; clone_data_ = other.clone_data_; } 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_ = [&](void** data) { delete static_cast(*data); *data = nullptr; }; clone_data_ = [&](void* data) { T* res = new T; CHECK(data) << "data pointer is nullptr"; *res = *static_cast(data); return res; }; } 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_(&data_); } } private: static size_t kInvalidType; size_t type_{kInvalidType}; void* data_{nullptr}; std::function deleter_; std::function clone_data_; }; } // namespace lite } // namespace paddle