mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 18:59:59 +08:00
63e8dadad9
ftxui::Ref<> is used for passing Options, for instance, MenuOption, to the corresponding component which is supposed to hold a strong reference of it. and we can observe the events sent to the component by setting callback(s) in the option instance passed to the owner component. but the callback function is not always copyable, despite that it might be moveable. in this change, * Make<>() is updated to use the perfect forwarding to avoid enforcing its parameters to be copyable. * Ref<> is also updated to take a rvalue reference, so we can move away from the contructor parameter when creating an instance of Ref<>() from it. Signed-off-by: Kefu Chai <tchaikov@gmail.com>
119 lines
3.9 KiB
C++
119 lines
3.9 KiB
C++
#ifndef FTXUI_UTIL_REF_HPP
|
|
#define FTXUI_UTIL_REF_HPP
|
|
|
|
#include <ftxui/screen/string.hpp>
|
|
#include <string>
|
|
|
|
namespace ftxui {
|
|
|
|
/// @brief An adapter. Own or reference an immutable object.
|
|
template <typename T>
|
|
class ConstRef {
|
|
public:
|
|
ConstRef() {}
|
|
ConstRef(T t) : owned_(t) {}
|
|
ConstRef(const T* t) : address_(t) {}
|
|
const T& operator*() const { return address_ ? *address_ : owned_; }
|
|
const T& operator()() const { return address_ ? *address_ : owned_; }
|
|
const T* operator->() const { return address_ ? address_ : &owned_; }
|
|
|
|
private:
|
|
T owned_;
|
|
const T* address_ = nullptr;
|
|
};
|
|
|
|
/// @brief An adapter. Own or reference an mutable object.
|
|
template <typename T>
|
|
class Ref {
|
|
public:
|
|
Ref() {}
|
|
Ref(const T& t) : owned_(t) {}
|
|
Ref(T&& t) : owned_(std::forward<T>(t)) {}
|
|
Ref(T* t) : address_(t) {}
|
|
T& operator*() { return address_ ? *address_ : owned_; }
|
|
T& operator()() { return address_ ? *address_ : owned_; }
|
|
T* operator->() { return address_ ? address_ : &owned_; }
|
|
|
|
private:
|
|
T owned_;
|
|
T* address_ = nullptr;
|
|
};
|
|
|
|
/// @brief An adapter. Own or reference a constant string. For convenience, this
|
|
/// class convert multiple mutable string toward a shared representation.
|
|
class StringRef {
|
|
public:
|
|
StringRef(std::string* ref) : address_(ref) {}
|
|
StringRef(std::string ref) : owned_(std::move(ref)) {}
|
|
StringRef(const wchar_t* ref) : StringRef(to_string(std::wstring(ref))) {}
|
|
StringRef(const char* ref) : StringRef(std::string(ref)) {}
|
|
std::string& operator*() { return address_ ? *address_ : owned_; }
|
|
std::string* operator->() { return address_ ? address_ : &owned_; }
|
|
|
|
private:
|
|
std::string owned_;
|
|
std::string* address_ = nullptr;
|
|
};
|
|
|
|
/// @brief An adapter. Own or reference a constant string. For convenience, this
|
|
/// class convert multiple mutable string toward a shared representation.
|
|
class WideStringRef {
|
|
public:
|
|
WideStringRef(std::wstring* ref) : address_(ref) {}
|
|
WideStringRef(std::wstring ref) : owned_(std::move(ref)) {}
|
|
WideStringRef(const wchar_t* ref) : WideStringRef(std::wstring(ref)) {}
|
|
WideStringRef(const char* ref)
|
|
: WideStringRef(to_wstring(std::string(ref))) {}
|
|
std::wstring& operator*() { return address_ ? *address_ : owned_; }
|
|
std::wstring* operator->() { return address_ ? address_ : &owned_; }
|
|
|
|
private:
|
|
std::wstring owned_;
|
|
std::wstring* address_ = nullptr;
|
|
};
|
|
|
|
/// @brief An adapter. Own or reference a constant string. For convenience, this
|
|
/// class convert multiple immutable string toward a shared representation.
|
|
class ConstStringRef {
|
|
public:
|
|
ConstStringRef(const std::string* ref) : address_(ref) {}
|
|
ConstStringRef(const std::wstring* ref) : ConstStringRef(to_string(*ref)) {}
|
|
ConstStringRef(std::string ref) : owned_(std::move(ref)) {}
|
|
ConstStringRef(std::wstring ref) : ConstStringRef(to_string(ref)) {}
|
|
ConstStringRef(const wchar_t* ref) : ConstStringRef(std::wstring(ref)) {}
|
|
ConstStringRef(const char* ref)
|
|
: ConstStringRef(to_wstring(std::string(ref))) {}
|
|
const std::string& operator*() const { return address_ ? *address_ : owned_; }
|
|
const std::string* operator->() const {
|
|
return address_ ? address_ : &owned_;
|
|
}
|
|
|
|
private:
|
|
const std::string owned_;
|
|
const std::string* address_ = nullptr;
|
|
};
|
|
|
|
/// @brief An adapter. Reference a list of strings.
|
|
class ConstStringListRef {
|
|
public:
|
|
ConstStringListRef(const std::vector<std::string>* ref) : ref_(ref) {}
|
|
ConstStringListRef(const std::vector<std::wstring>* ref) : ref_wide_(ref) {}
|
|
|
|
size_t size() const { return ref_ ? ref_->size() : ref_wide_->size(); }
|
|
std::string operator[](size_t i) const {
|
|
return ref_ ? (*ref_)[i] : to_string((*ref_wide_)[i]);
|
|
}
|
|
|
|
private:
|
|
const std::vector<std::string>* ref_ = nullptr;
|
|
const std::vector<std::wstring>* ref_wide_ = nullptr;
|
|
};
|
|
|
|
} // namespace ftxui
|
|
|
|
#endif /* end of include guard: FTXUI_UTIL_REF_HPP */
|
|
|
|
// Copyright 2020 Arthur Sonzogni. All rights reserved.
|
|
// Use of this source code is governed by the MIT license that can be found in
|
|
// the LICENSE file.
|