// // This file is part of Kepka, // an unofficial desktop version of Telegram messaging app, // see https://github.com/procxx/kepka // // Kepka is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // It is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // In addition, as a special exception, the copyright holders give permission // to link the code of portions of this program with the OpenSSL library. // // Full license: https://github.com/procxx/kepka/blob/master/LICENSE // Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org // Copyright (c) 2017- Kepka Contributors, https://github.com/procxx // #pragma once #include // @todo replace this with std::experimental::observer_ptr #include #include namespace base { class enable_weak_from_this; template class weak_unique_ptr; class enable_weak_from_this { public: enable_weak_from_this() = default; enable_weak_from_this(const enable_weak_from_this &other) noexcept {} enable_weak_from_this(enable_weak_from_this &&other) noexcept {} enable_weak_from_this &operator=(const enable_weak_from_this &other) noexcept { return *this; } enable_weak_from_this &operator=(enable_weak_from_this &&other) noexcept { return *this; } private: template friend class weak_unique_ptr; std::shared_ptr getGuarded() const { if (!_guarded) { _guarded = std::make_shared( const_cast(static_cast(this))); } return _guarded; } mutable std::shared_ptr _guarded; }; template class weak_unique_ptr { public: weak_unique_ptr() = default; weak_unique_ptr(T *value) : _guarded(value ? value->getGuarded() : std::shared_ptr()) {} weak_unique_ptr(const std::unique_ptr &value) : weak_unique_ptr(value.get()) {} weak_unique_ptr &operator=(T *value) { _guarded = value ? value->getGuarded() : std::shared_ptr(); return *this; } weak_unique_ptr &operator=(const std::unique_ptr &value) { return (*this = value.get()); } T *get() const noexcept { if (auto shared = _guarded.lock()) { return static_cast(*shared); } return nullptr; } explicit operator bool() const noexcept { return !!_guarded.lock(); } T &operator*() const noexcept { return *get(); } T *operator->() const noexcept { return get(); } private: std::weak_ptr _guarded; }; template inline bool operator==(const weak_unique_ptr &pointer, std::nullptr_t) { return (pointer.get() == nullptr); } template inline bool operator==(std::nullptr_t, const weak_unique_ptr &pointer) { return (pointer == nullptr); } template inline bool operator!=(const weak_unique_ptr &pointer, std::nullptr_t) { return !(pointer == nullptr); } template inline bool operator!=(std::nullptr_t, const weak_unique_ptr &pointer) { return !(pointer == nullptr); } template weak_unique_ptr make_weak_unique(T *value) { return weak_unique_ptr(value); } template weak_unique_ptr make_weak_unique(const std::unique_ptr &value) { return weak_unique_ptr(value); } } // namespace base #ifdef QT_VERSION template inline void InvokeQueued(base::enable_weak_from_this *context, Lambda &&lambda) { QObject proxy; QObject::connect(&proxy, &QObject::destroyed, QCoreApplication::instance(), [guard = base::make_weak_unique(context), lambda = std::forward(lambda)] { if (guard) { lambda(); } }, Qt::QueuedConnection); } #endif // QT_VERSION