// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019 // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #pragma once #include "td/tl/TlObject.h" #include "td/utils/misc.h" #include #include #include namespace td { template class TlStoreBoxed { public: template static void store(const T &x, StorerT &s) { s.store_binary(constructor_id); Func::store(x, s); } }; template class TlStoreBoxedUnknown { public: template static void store(const T &x, StorerT &s) { s.store_binary(x->get_id()); Func::store(x, s); } }; class TlStoreBool { public: template static void store(const bool &x, StorerT &s) { constexpr std::int32_t ID_BOOL_FALSE = 0xbc799737; constexpr std::int32_t ID_BOOL_TRUE = 0x997275b5; s.store_binary(x ? ID_BOOL_TRUE : ID_BOOL_FALSE); } }; class TlStoreTrue { public: template static void store(const bool &x, StorerT &s) { // currently nothing to do } }; class TlStoreBinary { public: template static void store(const T &x, StorerT &s) { s.store_binary(x); } }; class TlStoreString { public: template static void store(const T &x, StorerT &s) { s.store_string(x); } }; template class TlStoreVector { public: template static void store(const T &vec, StorerT &s) { s.store_binary(narrow_cast(vec.size())); for (auto &val : vec) { Func::store(val, s); } } }; class TlStoreObject { public: template static void store(const tl_object_ptr &obj, StorerT &s) { return obj->store(s); } }; } // namespace td