-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stack.hpp
346 lines (263 loc) · 7.41 KB
/
Stack.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
#ifndef STACK_HPP
#define STACK_HPP
#include "Canary.hpp"
#include <cassert>
#include <cmath>
#include <cstdio>
#include <cstring>
#ifndef NDEBUG
#define VALIDATE_STACK validate()
#else
#define VALIDATE_STACK
#endif
enum StackErrorCode {
Ok,
DeadLeftStackCanary,
DeadRightStackCanary,
DeadLeftDataCanary,
DeadRightDataCanary,
InvalidStackHashSum,
NullPointerToData,
SizeGreaterThanCapacity,
CapacityEqualZero
};
struct StackError {
StackErrorCode code;
const char *description;
};
enum StackTransactionStatus {
Begin,
EndSuccess,
EndFailure
};
template<typename T> class Stack {
public:
typedef unsigned int hashSum_t;
canary_t leftCanary;
T *data;
size_t size;
size_t capacity;
hashSum_t stackHashSum;
canary_t rightCanary;
explicit Stack(size_t constructionCapacity = 10);
void StackDtor();
T pop(bool *error);
void push(T val);
void evalHashSum();
void shrinkToFit();
private:
static constexpr double growCoefficientDefault = 2.5;
static constexpr double growCoefficientIfFailure = 1.5;
static std::FILE *dumpFile;
StackError isValid();
void validate();
void transaction(StackTransactionStatus status);
void shrink();
void grow(double growCoefficient);
};
template<typename T>
std::FILE *Stack<T>::dumpFile = std::fopen("StackDump.log", "w");
template<typename T>
Stack<T>::Stack(size_t constructionCapacity)
: leftCanary(CanaryValue), data((T *) callocBufWithBorderCanaries(constructionCapacity, sizeof(T))), size(0),
capacity(constructionCapacity), stackHashSum(0), rightCanary(CanaryValue)
{
assert(constructionCapacity > 0);
evalHashSum();
VALIDATE_STACK;
}
template<typename T>
void Stack<T>::StackDtor()
{
FREE_BUF_WITH_CANARY_BORDER(data);
}
template<typename T>
void Stack<T>::evalHashSum()
{
const unsigned char *buffer = (const unsigned char *) this + sizeof(canary_t);
stackHashSum = 0;
auto rol = [](hashSum_t hashSum) {
return (hashSum << 1u) | (hashSum >> (8 * sizeof(hashSum_t) - 1));
};
for (size_t i = 0; i < sizeof(Stack<T>) - sizeof(canary_t); ++i) {
stackHashSum = rol(stackHashSum) + buffer[i];
}
}
template<typename T>
StackError Stack<T>::isValid()
{
#define STACK_ERROR_WITH_DESCRIPTION(stackError) {(stackError), #stackError}
if (leftCanary != CanaryValue) {
return STACK_ERROR_WITH_DESCRIPTION(DeadLeftStackCanary);
}
if (rightCanary != CanaryValue) {
return STACK_ERROR_WITH_DESCRIPTION(DeadRightStackCanary);
}
hashSum_t previousStackHashSum = stackHashSum;
evalHashSum();
if (previousStackHashSum != stackHashSum) {
return STACK_ERROR_WITH_DESCRIPTION(InvalidStackHashSum);
}
if (leftBufCanary(data) != CanaryValue) {
return STACK_ERROR_WITH_DESCRIPTION(DeadLeftDataCanary);
}
if (rightBufCanary(data, capacity * sizeof(T)) != CanaryValue) {
return STACK_ERROR_WITH_DESCRIPTION(DeadRightDataCanary);
}
if (data == nullptr) {
return STACK_ERROR_WITH_DESCRIPTION(NullPointerToData);
}
if (size > capacity) {
return STACK_ERROR_WITH_DESCRIPTION(SizeGreaterThanCapacity);
}
if (capacity == 0) {
return STACK_ERROR_WITH_DESCRIPTION(CapacityEqualZero);
}
return STACK_ERROR_WITH_DESCRIPTION(Ok);
#undef STACK_ERROR_WITH_DESCRIPTION
}
template<typename T>
void Stack<T>::validate() {
StackError stackError = isValid();
if (stackError.code != Ok) {
exit(EXIT_FAILURE);
}
}
template<typename T>
void Stack<T>::transaction(StackTransactionStatus status) {
static Stack<T> *stackCopy = NULL;
switch (status) {
case Begin: {
assert(stackCopy == nullptr);
stackCopy = (Stack<T> *) std::calloc(1, sizeof(Stack<T>));
stackCopy->data = (T *) callocBufWithBorderCanaries(capacity, sizeof(T));
stackCopy->size = size;
stackCopy->capacity = capacity;
stackCopy->evalHashSum();
std::memcpy(stackCopy->data, data, capacity * sizeof(T));
break;
}
case EndSuccess: {
assert(stackCopy != nullptr);
stackCopy->~Stack();
std::free(stackCopy);
stackCopy = nullptr;
break;
}
case EndFailure: {
assert(stackCopy != nullptr);
size = stackCopy->size;
capacity = stackCopy->capacity;
memcpy(data, stackCopy->data, stackCopy->capacity * sizeof(T));
evalHashSum();
stackCopy->~Stack();
std::free(stackCopy);
stackCopy = nullptr;
break;
}
}
}
template<typename T>
void Stack<T>::grow(double growCoefficient) {
VALIDATE_STACK;
assert(isfinite(growCoefficient));
assert((growCoefficient == growCoefficientDefault) || (growCoefficient == growCoefficientIfFailure) ||
(growCoefficient == 1));
transaction(Begin);
size_t newCapacity = (growCoefficient > 1) ? capacity * growCoefficient : capacity + 1;
auto tmp = (T *) reallocBufWithBorderCanaries(data, newCapacity * sizeof(T));
if ((tmp == NULL) && (growCoefficient == 1)) {
transaction(EndFailure);
VALIDATE_STACK;
return;
}
if (tmp == NULL) {
if (growCoefficient == growCoefficientDefault) {
transaction(EndSuccess);
VALIDATE_STACK;
grow(growCoefficientIfFailure);
} else {
transaction(EndSuccess);
VALIDATE_STACK;
grow(1);
}
}
data = tmp;
capacity = newCapacity;
evalHashSum();
transaction(EndSuccess);
VALIDATE_STACK;
}
template<typename T>
void Stack<T>::push(T val) {
VALIDATE_STACK;
transaction(Begin);
if (size < capacity) {
data[size++] = val;
evalHashSum();
transaction(EndSuccess);
VALIDATE_STACK;
return;
}
transaction(EndSuccess);
grow(growCoefficientDefault);
VALIDATE_STACK;
push(val);
}
template<typename T>
void Stack<T>::shrink() {
VALIDATE_STACK;
transaction(Begin);
size_t shrinkedCapacity = capacity / (growCoefficientDefault * growCoefficientDefault);
if ((size > shrinkedCapacity) || (shrinkedCapacity == 0)) {
transaction(EndSuccess);
VALIDATE_STACK;
return;
}
auto tmp = (T *) reallocBufWithBorderCanaries(data, shrinkedCapacity * sizeof(T));
if (tmp == NULL) {
transaction(EndFailure);
VALIDATE_STACK;
return;
}
data = tmp;
capacity = shrinkedCapacity;
evalHashSum();
transaction(EndSuccess);
VALIDATE_STACK;
}
template<typename T>
T Stack<T>::pop(bool *error) {
VALIDATE_STACK;
transaction(Begin);
if (size == 0) {
*error = true;
transaction(EndFailure);
VALIDATE_STACK;
return T();
}
T top = data[--size];
evalHashSum();
transaction(EndSuccess);
shrink();
VALIDATE_STACK;
return top;
}
template<typename T>
void Stack<T>::shrinkToFit() {
VALIDATE_STACK;
transaction(Begin);
auto tmp = (T *) reallocBufWithBorderCanaries(data, size * sizeof(T));
if (tmp == NULL) {
transaction(EndFailure);
VALIDATE_STACK;
return;
}
data = tmp;
capacity = size;
evalHashSum();
transaction(EndSuccess);
VALIDATE_STACK;
}
#undef VALIDATE_STACK
#endif /* STACK_HPP */