-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVar_Block.hpp
161 lines (139 loc) · 4.99 KB
/
Var_Block.hpp
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#pragma once
#include "Block.hpp"
#include "QString"
#include "ui_runwindow.h"
#include "Func_Block.hpp"
namespace WriteBackend
{
template <typename T>
class Var_Block: public Block
{
static_assert(ofOneOfTypes<T, bool, int, double, bool*, int*, double*>::val, "Not one of bool, int, double, bool*, int*, double*");
private: // data members
using myRawType = T;
using myTypeWithoutPtr = typename getRidOfPtr<T>::_type;
static constexpr bool is_arr_type {ofOneOfTypes<T, bool*, int*, double*>::val};
unsigned int _size;
public: // member funcs
Var_Block() = delete;
Var_Block(Var_Block const &) = delete;
Var_Block(std::string _n, T _v, unsigned int _s = 0): Block {_n, _v}, _size {is_arr_type ? _s : 0}
{
// NOTE maybe need unique name checking?
if (is_arr_type)
{
if (!(this->val._void))
{
this->val._void = reinterpret_cast<void*>(new myTypeWithoutPtr [_size]);
memset(this->val._void, 0, _s*sizeof(myTypeWithoutPtr));
}
}
}
Var_Block(std::string _n, Var_Block const &other): Block {_n}
{
(*this) = other;
}
Var_Block const &operator=(Var_Block const &other)
{
if (is_copyAble(other))
{
if (!is_arr_type)
{
memcpy(&(this->val), &other.val, sizeof(_Data_t));
}
else if (is_arr_type)
{
if (this->val._void)
{
delete [] reinterpret_cast<myTypeWithoutPtr*>(this->val._void);
}
this->val._void = reinterpret_cast<void*>(new myTypeWithoutPtr [other._size]);
for (unsigned int i {0}; i < other._size; ++i)
{
reinterpret_cast<myTypeWithoutPtr*>(this->val._void)[i] = reinterpret_cast<myTypeWithoutPtr*>(other.val._void)[i];
}
}
}
return other;
}
~Var_Block()
{
if (is_arr_type)
{
delete [] static_cast<myTypeWithoutPtr*>(val._void);
}
}
myTypeWithoutPtr &operator[](size_t ind)
{
if (!is_arr_type)
{
return *(reinterpret_cast<myTypeWithoutPtr*>(&val._double));
}
else if (is_arr_type)
{
return (reinterpret_cast<myTypeWithoutPtr*>(val._void))[ind % _size];
}
}
Block const &operator=(Block const &other)
{
if (is_copyAble(other))
{
(*this) = *(static_cast<Var_Block<T> const *>(&other));
}
else
{
std::cerr << "different actual type, cannot perform assignment" << std::endl;
}
return other;
}
virtual void run() override {}
virtual void show_val() override
{
if (!is_arr_type)
{
std::cout << name << ": " << *(reinterpret_cast<myTypeWithoutPtr*>(&val._double)) << std::endl;
QString txt {QString::fromStdString(name) + ": " + QString::number(*(reinterpret_cast<myTypeWithoutPtr*>(&val._double)))};
QLabel *l= new QLabel;
l->setText(txt);
(*runWindowPtr)->getMyUI()->showDataArea_content_layout->addWidget(l);
}
else if (is_arr_type)
{
std::cout << name << ": ";
QLabel *l= new QLabel;
QString txtShow {QString::fromStdString(name) + ": "};
for (unsigned int i {0}; i < this->_size; ++i)
{
std::cout << (reinterpret_cast<myTypeWithoutPtr*>(val._void))[i] << " ";
txtShow = txtShow + QString::number((reinterpret_cast<myTypeWithoutPtr*>(val._void))[i]) + " ";
}
l->setText(txtShow);
(*runWindowPtr)->getMyUI()->showDataArea_content_layout->addWidget(l);
std::cout << std::endl;
}
}
bool is_copyAble(Block const &other)
{
return typeid(*this) == typeid(other);
}
void set_value(myTypeWithoutPtr val, int pos = -1)
{
if (pos < static_cast<int>(_size))
{
(*this)[pos] = val;
}
}
template <int arr_size>
void set_value(myTypeWithoutPtr const (&val)[arr_size], unsigned int startingPos = 0)
{
if (is_arr_type)
{
for (unsigned int i {0}; (i < arr_size && (i + startingPos) < _size); ++i)
{
(*this)[i + startingPos] = val[i];
}
}
}
unsigned int getSize(){return _size;}
};
} // namespace WriteBackend