summaryrefslogtreecommitdiff
path: root/value.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2004-08-03 04:34:50 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 02:40:47 -0400
commita32173ace60df5a1e9414f5e95b556c436f62718 (patch)
treefff5b881c657fddb8543b0f787bfa75cf009a0b7 /value.h
parentcc98b59d1e99238270eb307b117da8b0b35e6f27 (diff)
downloadfork-ledger-a32173ace60df5a1e9414f5e95b556c436f62718.tar.gz
fork-ledger-a32173ace60df5a1e9414f5e95b556c436f62718.tar.bz2
fork-ledger-a32173ace60df5a1e9414f5e95b556c436f62718.zip
changes
Diffstat (limited to 'value.h')
-rw-r--r--value.h383
1 files changed, 0 insertions, 383 deletions
diff --git a/value.h b/value.h
deleted file mode 100644
index 61e20eaa..00000000
--- a/value.h
+++ /dev/null
@@ -1,383 +0,0 @@
-#ifndef _VALUE_H
-#define _VALUE_H
-
-#include "amount.h"
-#include "balance.h"
-
-#include <exception>
-
-namespace ledger {
-
-// The following type is a polymorphous value type used solely for
-// performance reasons. The alternative is to compute value
-// expressions (valexpr.cc) in terms of the largest data type,
-// balance_t. This was found to be prohibitively expensive, especially
-// when large logic chains were involved, since many temporary
-// allocations would occur for every operator. With value_t, and the
-// fact that logic chains only need boolean values to continue, no
-// memory allocations need to take place at all.
-
-class value_t
-{
- public:
- char data[sizeof(balance_pair_t)];
-
- enum type_t {
- BOOLEAN,
- INTEGER,
- AMOUNT,
- BALANCE,
- BALANCE_PAIR
- } type;
-
- value_t() {
- *((unsigned int *) data) = 0;
- type = INTEGER;
- }
-
- value_t(const value_t& value) : type(INTEGER) {
- *this = value;
- }
- value_t(const bool value) {
- *((bool *) data) = value;
- type = BOOLEAN;
- }
- value_t(const unsigned int value) {
- *((unsigned int *) data) = value;
- type = INTEGER;
- }
- value_t(const int value) {
- *((unsigned int *) data) = (unsigned int) value;
- type = INTEGER;
- }
- value_t(const double value) {
- new((amount_t *) data) amount_t(value);
- type = AMOUNT;
- }
- value_t(const std::string& value) {
- new((amount_t *) data) amount_t(value);
- type = AMOUNT;
- }
- value_t(const char * value) {
- new((amount_t *) data) amount_t(value);
- type = AMOUNT;
- }
- value_t(const amount_t& value) {
- new((amount_t *)data) amount_t(value);
- type = AMOUNT;
- }
- value_t(const balance_t& value) : type(INTEGER) {
- *this = value;
- }
- value_t(const balance_pair_t& value) : type(INTEGER) {
- *this = value;
- }
-
- ~value_t() {
- destroy();
- }
-
- void destroy();
-
- value_t& operator=(const value_t& value);
- value_t& operator=(const bool value) {
- if ((bool *) data != &value) {
- destroy();
- *((bool *) data) = value;
- type = BOOLEAN;
- }
- return *this;
- }
- value_t& operator=(const unsigned int value) {
- if ((unsigned int *) data != &value) {
- destroy();
- *((unsigned int *) data) = value;
- type = INTEGER;
- }
- return *this;
- }
- value_t& operator=(const int value) {
- return *this = (unsigned int) value;
- }
- value_t& operator=(const double value) {
- return *this = amount_t(value);
- }
- value_t& operator=(const std::string& value) {
- return *this = amount_t(value);
- }
- value_t& operator=(const char * value) {
- return *this = amount_t(value);
- }
- value_t& operator=(const amount_t& value) {
- if ((amount_t *) data != &value) {
- if (! value) {
- return *this = 0U;
- } else {
- destroy();
- new((amount_t *)data) amount_t(value);
- type = AMOUNT;
- }
- }
- return *this;
- }
- value_t& operator=(const balance_t& value) {
- if ((balance_t *) data != &value) {
- if (value.amounts.size() == 1) {
- return *this = (*value.amounts.begin()).second;
- } else {
- destroy();
- new((balance_t *)data) balance_t(value);
- type = BALANCE;
- }
- }
- return *this;
- }
- value_t& operator=(const balance_pair_t& value) {
- if ((balance_pair_t *) data != &value) {
- if (! value.cost) {
- return *this = value.quantity;
- } else {
- destroy();
- new((balance_pair_t *)data) balance_pair_t(value);
- type = BALANCE_PAIR;
- }
- }
- return *this;
- }
-
- value_t& operator+=(const value_t& value);
- value_t& operator-=(const value_t& value);
- value_t& operator*=(const value_t& value);
- value_t& operator/=(const value_t& value);
-
- template <typename T>
- value_t& operator+=(const T& value) {
- return *this += value_t(value);
- }
- template <typename T>
- value_t& operator-=(const T& value) {
- return *this -= value_t(value);
- }
- template <typename T>
- value_t& operator*=(const T& value) {
- return *this *= value_t(value);
- }
- template <typename T>
- value_t& operator/=(const T& value) {
- return *this /= value_t(value);
- }
-
- value_t operator+(const value_t& value) {
- value_t temp(*this);
- temp += value;
- return temp;
- }
- value_t operator-(const value_t& value) {
- value_t temp(*this);
- temp -= value;
- return temp;
- }
- value_t operator*(const value_t& value) {
- value_t temp(*this);
- temp *= value;
- return temp;
- }
- value_t operator/(const value_t& value) {
- value_t temp(*this);
- temp /= value;
- return temp;
- }
-
- template <typename T>
- value_t operator+(const T& value) {
- return *this + value_t(value);
- }
- template <typename T>
- value_t operator-(const T& value) {
- return *this - value_t(value);
- }
- template <typename T>
- value_t operator*(const T& value) {
- return *this * value_t(value);
- }
- template <typename T>
- value_t operator/(const T& value) {
- return *this / value_t(value);
- }
-
- bool operator<(const value_t& value);
- bool operator<=(const value_t& value);
- bool operator>(const value_t& value);
- bool operator>=(const value_t& value);
- bool operator==(const value_t& value);
- bool operator!=(const value_t& value) {
- return ! (*this == value);
- }
-
- template <typename T>
- bool operator<(const T& value) {
- return *this < value_t(value);
- }
- template <typename T>
- bool operator<=(const T& value) {
- return *this <= value_t(value);
- }
- template <typename T>
- bool operator>(const T& value) {
- return *this > value_t(value);
- }
- template <typename T>
- bool operator>=(const T& value) {
- return *this >= value_t(value);
- }
- template <typename T>
- bool operator==(const T& value) {
- return *this == value_t(value);
- }
- template <typename T>
- bool operator!=(const value_t& value) {
- return ! (*this == value);
- }
-
- template <typename T>
- operator T() const;
-
- void negate();
- value_t negated() const {
- value_t temp = *this;
- temp.negate();
- return temp;
- }
- value_t operator-() const {
- return negated();
- }
-
- void abs();
- void cast(type_t cast_type);
- value_t cost() const;
-};
-
-inline value_t operator+(const balance_pair_t& value, const value_t& obj) {
- return value_t(value) + obj;
-}
-inline value_t operator+(const balance_t& value, const value_t& obj) {
- return value_t(value) + obj;
-}
-inline value_t operator+(const amount_t& value, const value_t& obj) {
- return value_t(value) + obj;
-}
-template <typename T>
-inline value_t operator+(T value, const value_t& obj) {
- return value_t(value) + obj;
-}
-
-inline value_t operator-(const balance_pair_t& value, const value_t& obj) {
- return value_t(value) - obj;
-}
-inline value_t operator-(const balance_t& value, const value_t& obj) {
- return value_t(value) - obj;
-}
-inline value_t operator-(const amount_t& value, const value_t& obj) {
- return value_t(value) - obj;
-}
-template <typename T>
-inline value_t operator-(T value, const value_t& obj) {
- return value_t(value) - obj;
-}
-
-inline value_t operator*(const balance_pair_t& value, const value_t& obj) {
- return value_t(value) * obj;
-}
-inline value_t operator*(const balance_t& value, const value_t& obj) {
- return value_t(value) * obj;
-}
-inline value_t operator*(const amount_t& value, const value_t& obj) {
- return value_t(value) * obj;
-}
-template <typename T>
-inline value_t operator*(T value, const value_t& obj) {
- return value_t(value) * obj;
-}
-
-inline value_t operator/(const balance_pair_t& value, const value_t& obj) {
- return value_t(value) / obj;
-}
-inline value_t operator/(const balance_t& value, const value_t& obj) {
- return value_t(value) / obj;
-}
-inline value_t operator/(const amount_t& value, const value_t& obj) {
- return value_t(value) / obj;
-}
-template <typename T>
-inline value_t operator/(T value, const value_t& obj) {
- return value_t(value) / obj;
-}
-
-template <typename T>
-value_t::operator T() const
-{
- switch (type) {
- case BOOLEAN:
- return *((bool *) data);
- case INTEGER:
- return *((unsigned int *) data);
- case AMOUNT:
- return *((amount_t *) data);
- case BALANCE:
- return *((balance_t *) data);
- case BALANCE_PAIR:
- return *((balance_pair_t *) data);
-
- default:
- assert(0);
- break;
- }
- assert(0);
- return 0;
-}
-
-inline value_t abs(const value_t& value) {
- value_t temp(value);
- temp.abs();
- return temp;
-}
-
-inline std::ostream& operator<<(std::ostream& out, const value_t& value) {
- switch (value.type) {
- case value_t::BOOLEAN:
- out << *((bool *) value.data);
- break;
- case value_t::INTEGER:
- out << *((unsigned int *) value.data);
- break;
- case value_t::AMOUNT:
- out << *((amount_t *) value.data);
- break;
- case value_t::BALANCE:
- out << *((balance_t *) value.data);
- break;
- case value_t::BALANCE_PAIR:
- out << *((balance_pair_t *) value.data);
- break;
-
- default:
- assert(0);
- break;
- }
- return out;
-}
-
-class value_error : public std::exception {
- std::string reason;
- public:
- value_error(const std::string& _reason) throw() : reason(_reason) {}
- virtual ~value_error() throw() {}
-
- virtual const char* what() const throw() {
- return reason.c_str();
- }
-};
-
-} // namespace ledger
-
-#endif // _VALUE_H