123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-09
- * Changed: 2024-05-31
- *
- * */
- #include <algorithm>
- #include <ls-std/boxing/Boolean.hpp>
- #include <ls-std/core/exception/IllegalArgumentException.hpp>
- using ls::std::boxing::Boolean;
- using ls::std::core::Class;
- using ls::std::core::IllegalArgumentException;
- using std::string;
- using std::transform;
- Boolean::Boolean(const bool _value) : Class(_fetchClassName()), value(_value)
- {}
- Boolean::Boolean() : Class(_fetchClassName())
- {}
- Boolean::~Boolean() noexcept = default;
- Boolean &Boolean::operator=(const int _value)
- {
- this->value = _value;
- return *this;
- }
- Boolean &Boolean::operator=(const bool _value)
- {
- this->value = _value;
- return *this;
- }
- bool Boolean::operator&&(const Boolean &_boolean) const
- {
- return this->value && _boolean.getValue();
- }
- bool Boolean::operator&&(const bool _value) const
- {
- return this->value && _value;
- }
- bool Boolean::operator&&(const int _value) const
- {
- return this->value && _value;
- }
- bool Boolean::operator||(const Boolean &_boolean) const
- {
- return this->value || _boolean.getValue();
- }
- bool Boolean::operator||(const bool _value) const
- {
- return this->value || _value;
- }
- bool Boolean::operator||(const int _value) const
- {
- return this->value || _value;
- }
- void Boolean::parse(const string &_parseText)
- {
- string parseText = _parseText;
- transform(parseText.begin(), parseText.end(), parseText.begin(), ::tolower);
- if (parseText != this->TRUE_STRING && parseText != this->FALSE_STRING)
- {
- throw IllegalArgumentException{parseText + " is not a valid string representation"};
- }
- else
- {
- if (parseText == this->TRUE_STRING)
- {
- this->value = true;
- }
- if (parseText == this->FALSE_STRING)
- {
- this->value = false;
- }
- }
- }
- string Boolean::toString()
- {
- return this->_toString();
- }
- bool Boolean::getValue() const
- {
- return this->value;
- }
- bool Boolean::XOR(const Boolean &_leftExpression, const Boolean &_rightExpression)
- {
- return (_leftExpression && !_rightExpression) || (!_leftExpression && _rightExpression.getValue());
- }
- bool Boolean::XOR(const Boolean &_leftExpression, const bool _rightExpression)
- {
- return (_leftExpression && !_rightExpression) || (!_leftExpression && _rightExpression);
- }
- bool Boolean::XOR(const bool _leftExpression, const Boolean &_rightExpression)
- {
- return (_leftExpression && !_rightExpression) || (!_leftExpression && _rightExpression.getValue());
- }
- bool Boolean::XOR(const bool _leftExpression, const bool _rightExpression)
- {
- return (_leftExpression && !_rightExpression) || (!_leftExpression && _rightExpression);
- }
- string Boolean::_fetchClassName()
- {
- static const string className = "Boolean";
- return className;
- }
- string Boolean::_toString() const
- {
- string booleanString{};
- if (this->value)
- {
- booleanString = this->TRUE_STRING;
- }
- else
- {
- booleanString = this->FALSE_STRING;
- }
- return booleanString;
- }
|