From 6003ac213257c4982130e1140b4503b57a3e4478 Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 3 Apr 2017 14:08:36 +0300 Subject: [PATCH] Add base::weak_unique_ptr template class. Sometimes you don't need shared ownership (shared_ptr), but you still need to be able to have weak pointers to an object. Now you can derive the object from base::enable_weak_from_this and use base::weak_unique_ptr after that. --- Telegram/SourceFiles/core/weak_unique_ptr.h | 88 +++++++++++++++++++++ Telegram/gyp/telegram_sources.txt | 1 + 2 files changed, 89 insertions(+) create mode 100644 Telegram/SourceFiles/core/weak_unique_ptr.h diff --git a/Telegram/SourceFiles/core/weak_unique_ptr.h b/Telegram/SourceFiles/core/weak_unique_ptr.h new file mode 100644 index 000000000..b29a9be8f --- /dev/null +++ b/Telegram/SourceFiles/core/weak_unique_ptr.h @@ -0,0 +1,88 @@ +/* +This file is part of Telegram Desktop, +the official desktop version of Telegram messaging app, see https://telegram.org + +Telegram Desktop 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/telegramdesktop/tdesktop/blob/master/LICENSE +Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org +*/ +#pragma once + +namespace base { + +class enable_weak_from_this; + +template ::value>> +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() { + if (!_guarded) { + _guarded = std::make_shared(this); + } + return _guarded; + } + + 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) : _guarded(value ? value->getGuarded() : std::shared_ptr()) { + } + 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; + +}; + +} // namespace base diff --git a/Telegram/gyp/telegram_sources.txt b/Telegram/gyp/telegram_sources.txt index d2d283230..6fa7b704d 100644 --- a/Telegram/gyp/telegram_sources.txt +++ b/Telegram/gyp/telegram_sources.txt @@ -87,6 +87,7 @@ <(src_loc)/core/variant.h <(src_loc)/core/version.h <(src_loc)/core/virtual_method.h +<(src_loc)/core/weak_unique_ptr.h <(src_loc)/core/zlib_help.h <(src_loc)/data/data_abstract_structure.cpp <(src_loc)/data/data_abstract_structure.h