Skip to content

Instantly share code, notes, and snippets.

@bhagman
Forked from AlexanderBrevig/gist:6217627
Last active December 21, 2015 00:59
Show Gist options
  • Save bhagman/6224879 to your computer and use it in GitHub Desktop.
Save bhagman/6224879 to your computer and use it in GitHub Desktop.
/*
||
|| @author Alexander Brevig <abrevig@wiring.org.co>
|| @url http://wiring.org.co/
|| @contribution Brett Hagman <bhagman@wiring.org.co>
|| @contribution Hernando Barragan <b@wiring.org.co>
||
|| @description
|| | A public field wrapper for providing assignment safe guards
|| #
||
|| @license Please see cores/Common/License.txt.
||
*/
#ifndef WPROPERTY_H
#define WPROPERTY_H
/*
|| A basic property, semantically equivalent of a regular public field
*/
template<typename T>
class Property
{
public:
typedef bool (*comp_fn)(T);
Property() { }
Property<T> &operator=(const T rhs)
{
value = rhs;
return *this;
}
operator T()
{
return value;
}
private:
T value;
};
/*
|| A property that implement assignment rules
*/
template<typename T>
class ConstrainedProperty
{
public:
typedef bool (*comp_fn)(T);
ConstrainedProperty(comp_fn _comparator) : comparator(_comparator) { }
ConstrainedProperty<T> &operator=(const T rhs)
{
if (comparator == 0 || comparator(rhs))
{
value = rhs;
}
return *this;
}
operator T()
{
return value;
}
operator T() const
{
return T();
}
private:
T value;
comp_fn comparator;
};
/*
|| A constant property for reading a private member field
*/
template<typename T>
class ConstantProperty
{
public:
typedef bool (*comp_fn)(T);
ConstantProperty(T &ref) : comparator(0), valuePointer(&ref) { }
ConstantProperty(comp_fn _comparator, T &ref) : comparator(_comparator), valuePointer(&ref) { }
ConstantProperty<T> &operator=(const T rhs)
{
if (comparator == 0 || comparator(rhs))
{
if (valuePointer != 0)
{
*valuePointer = rhs;
}
}
return *this;
}
operator T()
{
return *valuePointer;
}
operator T() const
{
return T();
}
private:
T *valuePointer;
comp_fn comparator;
};
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment