14#include "AObjectBase.h"
16#include "AUI/Util/AEvaluationLoopException.h"
17#include <AUI/Common/detail/property.h>
18#include <AUI/Common/React.h>
53 using Factory = std::function<T()>;
55 template<aui::factory<T> Factory>
56 APropertyPrecomputed(Factory&& expression): mCurrentValue([
this, expression = std::forward<Factory>(expression)] {
63 APropertyPrecomputed(
const APropertyPrecomputed&) =
delete;
64 APropertyPrecomputed(APropertyPrecomputed&&)
noexcept =
delete;
66 template <ASignalInvokable SignalInvokable>
67 void operator^(SignalInvokable&& t) {
68 t.invokeSignal(
nullptr);
78 mCurrentValue.reset();
80 if (this->changed.isAtSignalEmissionState()) {
81 mCurrentValue.setEvaluationLoopTrap();
84 emit this->changed(value());
93 const T& value()
const {
99 operator const T&()
const {
104 const T& operator*()
const {
111 template <aui::invocable<const Underlying&> Projection>
114 return aui::detail::property::makeReadonlyProjection(*
this, std::forward<Projection>(projection));
118 const T* operator->() const noexcept {
126 aui::lazy<T> mCurrentValue;
129template<aui::invocable<> Factory>
Definition AObjectBase.h:24
Definition concepts.h:195
ASignal< Args... > emits
A signal declaration.
Definition ASignal.h:572
#define emit
emits the specified signal in context of this object.
Definition AObject.h:343
Readonly property that holds a value computed by an expression.
Definition APropertyPrecomputed.h:51
auto readProjected(Projection &&projection) noexcept
Makes a readonly projection of this property.
Definition APropertyPrecomputed.h:113
void invalidate() override
Marks this precomputed property to be reevaluated.
Definition APropertyPrecomputed.h:77
static void addDependency(const AAbstractSignal &signal)
Adds observer to the specified signal, if called inside a reactive expression evaluation.