MIXAL
atomic.cpp
1 #include <iostream>
2 #include "expression.h"
3 
4 namespace mixal {
5 
6 Atomic::Atomic(AtomicType _type, bool _negative) :
7  type(_type), negative(_negative), integer(), symbol() {}
8 
9 Atomic::Atomic(AtomicType _type, int32_t _value, bool _negative) :
10  type(_type), negative(_negative), integer(_value), symbol() {}
11 
12 Atomic::Atomic(AtomicType _type, const std::string& _value, bool _negative) :
13  type(_type), negative(_negative), integer(), symbol(_value) {}
14 
15 Atomic::Atomic(const Atomic& atomic) :
16  type(atomic.type), negative(atomic.negative), integer(), symbol() {
17  if (type == AtomicType::INTEGER) {
18  integer = atomic.integer;
19  } else {
20  symbol = atomic.symbol;
21  }
22 }
23 
24 bool Atomic::operator==(const Atomic& atomic) {
25  if (type != atomic.type || negative != atomic.negative) {
26  return false;
27  }
28  return type == AtomicType::INTEGER ? integer == atomic.integer : symbol == atomic.symbol;
29 }
30 
31 bool Atomic::operator!=(const Atomic& atomic) {
32  return !((*this) == atomic);
33 }
34 
35 std::ostream& operator<<(std::ostream& out, const Atomic& atomic) {
36  switch (atomic.type) {
37  case AtomicType::INTEGER: out << atomic.integer; break;
38  case AtomicType::SYMBOL: out << atomic.symbol; break;
39  case AtomicType::ASTERISK: out << atomic.symbol; break;
40  }
41  return out;
42 }
43 
44 bool Atomic::isLocalSymbol(const std::string& symbol) {
45  return symbol.size() == 2 &&
46  ('0' <= symbol[0] && symbol[0] <= '9') &&
47  (symbol[1] == 'H' || symbol[1] == 'F' || symbol[1] == 'B');
48 }
49 
50 bool Atomic::isLocalSymbol() const {
51  return type == AtomicType::SYMBOL && Atomic::isLocalSymbol(symbol);
52 }
53 
54 void Atomic::replaceSymbol(const std::string& symbol) {
55  this->symbol = symbol;
56 }
57 
58 AtomicValue::AtomicValue() : negative(), value() {}
59 
60 AtomicValue::AtomicValue(int32_t _value) : negative(), value(_value) {
61  negative = _value < 0;
62 }
63 
65  negative(atomicValue.negative), value(atomicValue.value) {
66 }
67 
69  negative = atomicValue.negative;
70  value = atomicValue.value;
71  return *this;
72 }
73 
74 }; // namespace mixal
expression.h
To parse the expressions.
mixal::AtomicValue::operator=
AtomicValue & operator=(const AtomicValue &atomicValue)
Definition: atomic.cpp:68
mixal::Atomic::operator!=
bool operator!=(const Atomic &atomic)
Definition: atomic.cpp:31
mixal::Atomic::negative
bool negative
Definition: expression.h:27
mixal::Atomic::Atomic
Atomic(AtomicType _type=AtomicType::INTEGER, bool _negative=false)
Definition: atomic.cpp:6
mixal::Atomic::integer
int32_t integer
Definition: expression.h:28
mixal::Atomic::type
AtomicType type
Definition: expression.h:26
mixal::Atomic::replaceSymbol
void replaceSymbol(const std::string &symbol)
Definition: atomic.cpp:54
mixal::Atomic::symbol
std::string symbol
Definition: expression.h:29
mixal::AtomicType
AtomicType
Definition: expression.h:18
mixal::operator<<
std::ostream & operator<<(std::ostream &out, Operation operation)
Definition: expression.cpp:335
mixal::AtomicValue
Definition: expression.h:75
mixal::Atomic::isLocalSymbol
bool isLocalSymbol() const
Definition: atomic.cpp:50
mixal::Atomic
Definition: expression.h:25
mixal::Atomic::operator==
bool operator==(const Atomic &atomic)
Definition: atomic.cpp:24
mixal::AtomicValue::AtomicValue
AtomicValue()
Definition: atomic.cpp:58