-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathRefs.struct.h
389 lines (328 loc) · 8.81 KB
/
Refs.struct.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
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
//+------------------------------------------------------------------+
//| EA31337 framework |
//| Copyright 2016-2021, EA31337 Ltd |
//| https://github.com/EA31337 |
//+------------------------------------------------------------------+
/*
* This file is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/**
* @file
* Includes Refs' structs.
*/
#ifndef __MQL__
// Allows the preprocessor to include a header file when it is needed.
#pragma once
#endif
// Forward class declaration.
class Refs;
class ReferenceCounter;
template <typename X>
struct WeakRef;
/**
* Simples type of reference. Deletes object's pointer if reference goes out of the scope/is destructed.
*/
template <typename X>
struct SimpleRef {
/**
* Pointer to target object.
*/
X* ptr_object;
/**
* Constructor.
*/
SimpleRef(X* _ptr) { this = _ptr; }
/**
* Destructor.
*/
~SimpleRef() {
if (ptr_object != NULL) {
delete ptr_object;
}
}
/**
* Makes a reference to the given object.
*/
void operator=(X* _ptr) {
if (ptr_object == _ptr) {
// Assigning the same object.
return;
}
Unset();
ptr_object = _ptr;
}
/**
* Unbinds holding reference.
*/
void Unset() {
if (ptr_object != NULL) {
delete ptr_object;
ptr_object = NULL;
}
}
};
/**
* Class used to hold strong reference to reference-counted object.
*/
template <typename X>
struct Ref {
/**
* Pointer to target object.
*/
X* ptr_object;
public:
/**
* Constructor.
*/
Ref(X* _ptr) { this = _ptr; }
/**
* Constructor.
*/
Ref(Ref<X>& ref) { this = ref.Ptr(); }
/**
* Constructor.
*/
Ref(WeakRef<X>& ref) { this = ref.Ptr(); }
/**
* Constructor.
*/
Ref() { ptr_object = NULL; }
/**
* Destructor.
*/
~Ref() { Unset(); }
/**
* Returns pointer to target object.
*/
X* Ptr() { return ptr_object; }
/**
* Checks whether any object is referenced.
*/
bool IsSet() { return ptr_object != NULL; }
/**
* Unbinds holding reference.
*/
void Unset() {
if (ptr_object != NULL) {
if (CheckPointer(ptr_object) == POINTER_INVALID) {
// Double check the pointer for invalid references. Can happen in rare circumstances.
ptr_object = NULL;
return;
}
if (ptr_object.ptr_ref_counter == NULL) {
// Object is not reference counted. Maybe a stack-based one?
return;
}
// Dropping strong reference.
if (!--ptr_object.ptr_ref_counter.num_strong_refs) {
#ifdef __debug_ref__
Print(ptr_object.ptr_ref_counter.Debug());
#endif
// No more strong references.
if (!ptr_object.ptr_ref_counter.num_weak_refs) {
if (CheckPointer(ptr_object.ptr_ref_counter) == POINTER_INVALID) {
// Serious problem.
#ifndef __MQL4__
// Bug: Avoid calling in MQL4 due to 'global initialization failed' error.
DebugBreak();
#endif
return;
}
// Also no more weak references.
delete ptr_object.ptr_ref_counter;
ptr_object.ptr_ref_counter = NULL;
} else {
// Object becomes deleted, but there are some weak references.
ptr_object.ptr_ref_counter.deleted = true;
}
// Avoiding delete loop for cyclic references.
X* ptr_to_delete = ptr_object;
if (CheckPointer(ptr_to_delete) == POINTER_INVALID) {
// Serious problem.
#ifndef __MQL4__
// Bug: Avoid calling in MQL4 due to 'global initialization failed' error.
DebugBreak();
#endif
return;
}
// Avoiding double deletion in Dynamic's destructor.
ptr_object.ptr_ref_counter = NULL;
ptr_object = NULL;
#ifdef __debug__
Print("Refs: Deleting object ", ptr_to_delete);
#endif
delete ptr_to_delete;
}
ptr_object = NULL;
}
}
/**
* Makes a strong reference to the given object.
*/
X* operator=(X* _ptr) {
if (ptr_object == _ptr) {
// Assigning the same object.
return Ptr();
}
Unset();
ptr_object = _ptr;
if (ptr_object != NULL) {
if (CheckPointer(ptr_object) == POINTER_INVALID || ptr_object.ptr_ref_counter == NULL) {
// Double check the pointer for invalid references. Can happen very rarely.
return Ptr();
}
++ptr_object.ptr_ref_counter.num_strong_refs;
#ifdef __debug_ref__
Print(ptr_object.ptr_ref_counter.Debug());
#endif
}
return Ptr();
}
/**
* Makes a strong reference to the given weakly-referenced object.
*/
X* operator=(WeakRef<X>& right) {
this = right.Ptr();
return Ptr();
}
/**
* Makes a strong reference to the strongly-referenced object.
*/
X* operator=(Ref<X>& right) {
this = right.Ptr();
return Ptr();
}
/**
* Equality operator.
*/
bool operator==(const Ref<X>& r) { return ptr_object != NULL && ptr_object == r.ptr_object; }
};
/**
* Class used to hold weak reference to reference-counted object.
*/
template <typename X>
struct WeakRef {
/**
* Pointer to object holding reference counts.
*/
ReferenceCounter* ptr_ref_counter;
public:
/**
* Constructor.
*/
WeakRef(X* _ptr = NULL) { this = _ptr; }
/**
* Constructor.
*/
WeakRef(WeakRef<X>& ref) { this = ref.Ptr(); }
/**
* Constructor.
*/
WeakRef(Ref<X>& ref) { this = ref.Ptr(); }
/**
* Destructor.
*/
~WeakRef() { Unset(); }
bool ObjectExists() { return ptr_ref_counter != NULL && !ptr_ref_counter.deleted; }
X* Ptr() { return ObjectExists() ? (X*)ptr_ref_counter.ptr_object : NULL; }
/**
* Makes a strong reference to the given object.
*/
X* operator=(X* _ptr) {
if (ptr_ref_counter == (_ptr == NULL ? NULL : _ptr.ptr_ref_counter)) {
// Assigning the same object or the same NULL.
return Ptr();
}
Unset();
if (_ptr == NULL) {
// Assigning NULL.
return Ptr();
}
if (_ptr.ptr_ref_counter.deleted) {
// Assigning already deleted object.
ptr_ref_counter = NULL;
return Ptr();
}
ptr_ref_counter = _ptr.ptr_ref_counter;
#ifdef __debug_ref__
Print(ptr_ref_counter.Debug());
#endif
++ptr_ref_counter.num_weak_refs;
return Ptr();
}
/**
* Makes a weak reference to the given weakly-referenced object.
*/
X* operator=(WeakRef<X>& right) {
this = right.Ptr();
return Ptr();
}
/**
* Makes a weak reference to the strongly-referenced object.
*/
X* operator=(Ref<X>& right) {
this = right.Ptr();
return Ptr();
}
/**
* Equality operator.
*/
bool operator==(const WeakRef<X>& r) const { return ptr_ref_counter != NULL && ptr_ref_counter == r.ptr_ref_counter; }
/**
* Unbinds holding reference.
*/
void Unset() {
if (ptr_ref_counter != NULL) {
// Dropping weak reference.
if (!--ptr_ref_counter.num_weak_refs) {
// No more weak references.
#ifdef __debug_ref__
Print(ptr_ref_counter.Debug());
#endif
if (!ptr_ref_counter.num_strong_refs) {
// There are also no strong references.
ReferenceCounter* stored_ptr_ref_counter = ptr_ref_counter;
if (!ptr_ref_counter.deleted) {
// It is safe to delete object and reference counter object.
// Avoiding double deletion in Dynamic's destructor.
ptr_ref_counter.ptr_object.ptr_ref_counter = NULL;
#ifdef __debug_ref__
Print("Refs: Deleting object ", ptr_ref_counter.ptr_object);
#endif
if (CheckPointer(ptr_ref_counter.ptr_object) == POINTER_INVALID) {
// Serious problem.
#ifndef __MQL4__
// Bug: Avoid calling in MQL4 due to 'global initialization failed' error.
DebugBreak();
#endif
return;
}
delete ptr_ref_counter.ptr_object;
}
if (CheckPointer(stored_ptr_ref_counter) == POINTER_INVALID) {
// Serious problem.
#ifndef __MQL4__
// Bug: Avoid calling in MQL4 due to 'global initialization failed' error.
DebugBreak();
#endif
return;
}
delete stored_ptr_ref_counter;
}
}
}
ptr_ref_counter = NULL;
}
};