forked from LearningByExample/ModernCppCI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalc.h
80 lines (61 loc) · 1.97 KB
/
calc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* Distributed under the MIT License (See accompanying file /LICENSE )
*/
#ifndef CALC_HPP
#define CALC_HPP
// MS compatible compilers support #pragma once
#if defined(_MSC_VER)
#pragma once
#endif
#include <list>
#include <map>
#include <ostream>
#include "calc_step.h"
#include "logger.h"
namespace ModernCppCI {
template <class Type>
using Dictionary = std::map<std::string, Type>;
namespace DefaultOperations {
const Operation Plus = [](const int &value1, const int &value2) {
return value1 + value2;
};
const Operation Minus = [](const int &value1, const int &value2) {
return value1 - value2;
};
const Operation Times = [](const int &value1, const int &value2) {
return value1 * value2;
};
const Operation Div = [](const int &value1, const int &value2) {
return value1 / value2;
};
const Operation Zero = [](const int &value1, const int &value2) { return 0; };
} // namespace DefaultOperations
class Calc {
public:
Calc() noexcept {};
Calc(const Calc &other) noexcept
: operations_{other.operations_}, steps_{other.steps_} {}
Calc &operator=(const Calc &other) noexcept;
auto total_operations() const noexcept { return operations_.size(); }
void add_step(const CalcStep &step);
void add_step(const int value);
void add_step(const std::string &operation_name);
auto total_steps() const noexcept { return steps_.size(); }
int result() const;
template <typename T>
Calc operator<<(const T &value) const {
Calc new_calc{*this};
new_calc.add_step(value);
return new_calc;
}
friend std::ostream &operator<<(std::ostream &stream, const Calc &calc);
private:
std::list<CalcStep> steps_{};
Dictionary<Operation> operations_{{"+", DefaultOperations::Plus},
{"-", DefaultOperations::Minus},
{"*", DefaultOperations::Times},
{"/", DefaultOperations::Div}};
static Logger logger_;
};
} // namespace ModernCppCI
#endif // CALC_HPP