-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvstd.hpp
2189 lines (1701 loc) · 49.4 KB
/
vstd.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
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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
//// ////
//// ██╗ ██╗███████╗████████╗██████╗ ██╗ ██╗██████╗ ██████╗ ////
//// ██║ ██║██╔════╝╚══██╔══╝██╔══██╗ ██║ ██║██╔══██╗██╔══██╗ ////
//// ██║ ██║███████╗ ██║ ██║ ██║ ███████║██████╔╝██████╔╝ ////
//// ╚██╗ ██╔╝╚════██║ ██║ ██║ ██║ ██╔══██║██╔═══╝ ██╔═══╝ ////
//// ╚████╔╝ ███████║ ██║ ██████╔╝██╗██║ ██║██║ ██║ ////
//// ╚═══╝ ╚══════╝ ╚═╝ ╚═════╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝ ////
//// ////
//// (A vereena0x13™ production) ////
//// ////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// TODO: Maybe less dependence on standard
// headers? would be nice..
// TODO: Improve/Expand Allocators
// - realloc? it's quite unclear to me if realloc is really
// worth it over freeing and allocating anew; maybe?
// seems better to just allocate smarter lol (i.e. less frequently)
// - alignment
// TODO: Add more string functions
// - strview -- I no longer recall what this was meant to do lol
// - Actually, maybe upgrade str and friends...?
// - Not sure what exactly I mean here lol; C++-ify slightly? *shrugs*
// TODO: Add (more) file I/O
// - Actually a full virtual filesystem API would be nice
// TODO: Add fallback allocation with logging
// (optional) to Temporary_Storage
// TODO: Add a simple logging API
// - Just the basics: printf but to a "Log" which
// can output to any combination of the console
// and files on disk. Maybe we have other
// options for output as well (i.e. a common interface)
// - File rotation, ofc
// TODO: Add a debug memory allocator that can be used
// as a wrapper around any Allocator* that provides
// some behind-the-scenes bookkeeping in order
// to detect things like leaks, double-frees, etc.
// TODO: Add an option for Arena*s to use guard pages
// TODO: Add an NBT-esque general-purpose binary data format.
// - I don't want to just copy NBT, first of all. More betterer.
// Would be nice if we could make API-side improvements...
// I don't know. I wanted to use tinyrefl to use attributes to
// generate serialization code from annotated structs, but tinyrefl
// is a piece of shit so. And I haven't felt like writing a lexer and
// making that work myself.. yet.
// TODO: Add string builder
// - maybe this uses the binary read/write thing?
// - or maybe the binary read/write thing uses this?
// TODO: Add hexdump printer
// TODO: Add a base64 codec
// TODO: Add RLE codec
// TODO: Add intel hex encoder
// - Also SRec?
// TODO: Add sorting functions for Array<T>, etc.
// TODO: Add a segment tree
// TODO: Add a "Sparse Set" (the funky one w/ uninit memory)
// - Also, "Sparse Map", because it's free to add ^
// TODO: Add a ring buffer type
// - Support both Static_Ring_Buffer and Ring_Buffer? or...
// TODO: Make sure this stuff works on winderps..... :/
// TODO: Add bignum structs
// - BigInt
// - BigRat?
// - BigDecimal?
// - Maybe also special things like u128/s128?
// - May be a thing that already exists for larger
// CPU registers/SIMD *shrugs*
// TODO: Add a JSON parser/printer and "object model", as it were.
// TODO: Add intrinsics wrappers
// TODO: Add SIMD wrappers
// - Probably largely based on structs with overloaded operators...
// i.e. u32x4 or w/e
// TODO: Add various linked list structs
// - intrusive
// - non-intrusive? (is this even useful?)
// - include iterators, etc.
// TODO: Add write/read varint to DataOutput/DataInput
// TODO: Add an LRU cache type
// TODO: Add a priority queue type
// TODO: Add command-line argument parsing
////////////////////////////////////
////////////////////////////////////
/// HEADER ///
////////////////////////////////////
////////////////////////////////////
#ifndef VSTD_H
#define VSTD_H
/////////////////////
/// General ///
/////////////////////
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include <stddef.h>
#include <string.h>
#include <setjmp.h>
#include <assert.h>
#include <unistd.h>
#include <dirent.h>
#ifdef VSTD_TESTING
#include <sys/wait.h>
#endif
#ifndef VSTD_DEF
#define VSTD_DEF extern
#endif
#ifndef __cplusplus
#error "Must compile as C++"
#endif
#if defined(_MSC_VER)
#define VSTD_CC_MSVC
#elif defined(__clang__)
#define VSTD_CC_CLANG
#elif defined(__GNUC__)
#define VSTD_CC_GCC
#elif defined(__EMSCRIPTEN__)
#error "Emscripten not supported!"
#elif defined(__MINGW32__) || defined(__MINGW64__)
//#error "MinGW not yet supported!"
#else
#error "Unknown compiler!"
#endif
#if defined(__linux__)
#define VSTD_OS_LINUX
#elif defined(_WIN32) || defined(_WIN64)
#define VSTD_OS_WINDOWS
#elif defined(__APPLE__) && defined(__MACH__)
#define VSTD_OS_OSX
#else
#warning "Unknown operating system!"
#endif
#define INTEGRAL_TYPES(X) \
X(u8, unsigned char) \
X(u16, unsigned short) \
X(u32, unsigned int) \
X(u64, unsigned long long) \
X(s8, signed char) \
X(s16, signed short) \
X(s32, signed int) \
X(s64, signed long long)
#define FLOAT_TYPES(X) \
X(f32, float) \
X(f64, double)
#define X(name, ctype) using name = ctype;
INTEGRAL_TYPES(X)
FLOAT_TYPES(X)
#undef X
// Don't @ me.
static_assert(sizeof(u8) == 1);
static_assert(sizeof(s8) == 1);
static_assert(sizeof(u16) == 2);
static_assert(sizeof(s16) == 2);
static_assert(sizeof(u32) == 4);
static_assert(sizeof(s32) == 4);
static_assert(sizeof(u64) == 8);
static_assert(sizeof(s64) == 8);
static_assert(sizeof(f32) == 4);
static_assert(sizeof(f64) == 8);
#define CAT2(a, b) a##b
#define CAT(a, b) CAT2(a, b)
#define array_length(a) ((sizeof(a))/(sizeof(a[0])))
#define cast(t, v) ((t)(v))
#define unused(x) ((void)x)
#ifndef NULL
#define NULL 0
#endif
#ifndef offsetof
#define offsetof(type, member) ((u64)&(((type*)0)->member))
#endif
// TODO
#define nvrreturn __attribute__((noreturn))
#define nvrinline __attribute__((noinline))
#define forceinline __attribute__((always_inline))
#define static_init __attribute__((constructor))
#define static_deinit __attribute__((destructor))
// TODO
#define debug_trap __builtin_trap
#define unreachable __builtin_unreachable
#ifndef PATH_SEPARATOR
#ifdef _WIN32
#define PATH_SEPARATOR '\\'
#else
#define PATH_SEPARATOR '/'
#endif
#endif
template<typename T>
void swap(T *a, T *b) {
T c = *a;
*a = *b;
*b = c;
}
template<typename T>
void swap(T& a, T& b) {
T c = a;
a = b;
b = c;
}
//////////////////////
/// Sections ///
//////////////////////
#ifdef VSTD_SECTIONS
#ifndef VSTD_CC_GCC
#error "VSTD_SECTIONS only supported on GCC"
#endif
#define SECTION(section_name) __attribute__((section(#section_name)))
#define SECTION_START(section_name) __start_##section_name[]
#define SECTION_STOP(section_name) __stop_##section_name[]
#define SECTION_START_SYMBOL(section_name, type) \
({ \
extern const type SECTION_START(section_name); \
__start_##section_name; \
})
#define SECTION_STOP_SYMBOL(section_name, type) \
({ \
extern const type SECTION_STOP(section_name); \
__stop_##section_name; \
})
#define SECTION_FOREACH(section_name, type, iter) \
for(type const* iter = SECTION_START_SYMBOL(section_name, type); \
iter < SECTION_STOP_SYMBOL(section_name, type); iter++)
#endif
///////////////////
/// Maths ///
///////////////////
// NOTE: I did this after trying to write each of these
// as a single function template taking type `t`. But yknow,
// sometimes C++ just doesn't feel like working so meh.
#define DEFROT(t) \
constexpr t rotl(t x, t s) noexcept { \
t mask = sizeof(t) * 8 - 1; \
s &= mask; \
return (x << s) | (x >> (-s & mask)); \
} \
constexpr t rotr(t x, t s) noexcept { \
t mask = sizeof(t) * 8 - 1; \
s &= mask; \
return (x >> s) | (x << (-s & mask)); \
}
DEFROT(u8)
DEFROT(u16)
DEFROT(u32)
DEFROT(u64)
#undef DEFROT
// NOTE: And despite the NOTE above about the rotl/rotr functions,
// so far, is_pow2 has caused to trouble. WTF C++? Either work or don't!
template<typename T>
constexpr bool is_pow2(T x) noexcept { return x > 0 && (x & (x - 1)) == 0; }
constexpr u8 next_pow2(u8 y) noexcept {
u8 x = y;
x--;
x |= x >> 1;
x |= x >> 2;
x |= x >> 4;
x++;
return x;
}
constexpr u16 next_pow2(u16 y) noexcept {
u16 x = y;
x--;
x |= x >> 1;
x |= x >> 2;
x |= x >> 4;
x |= x >> 8;
x++;
return x;
}
constexpr u32 next_pow2(u32 y) noexcept {
u32 x = y;
x--;
x |= x >> 1;
x |= x >> 2;
x |= x >> 4;
x |= x >> 8;
x |= x >> 16;
x++;
return x;
}
constexpr u64 next_pow2(u64 y) noexcept {
u64 x = y;
x--;
x |= x >> 1;
x |= x >> 2;
x |= x >> 4;
x |= x >> 8;
x |= x >> 16;
x |= x >> 32;
x++;
return x;
}
template<typename T>
constexpr T align_up(T x, T align) noexcept {
assert(is_pow2(x) && "must align to a power of two");
return (x + (align - 1)) & ~(align - 1);
}
template<typename T>
constexpr T align_down(T x, T align) noexcept {
assert(is_pow2(x) && "must align to a power of two");
return x - (x & (align - 1));
}
template<typename t>
constexpr t pow(t base, t exp) noexcept {
if(base == 0 && exp == 0) {
return 1;
} else if(base == 0) {
return 0;
} else if(exp == 0) {
return 1;
}
t result = 1;
while(exp) {
if(exp & 1) {
result *= base;
}
exp >>= 1;
base *= base;
}
return result;
}
#define BYTE_UNIT_MULTIPLES(X) \
X(1, KILO, KIBI) \
X(2, MEGA, MEBI) \
X(3, GIGA, GIBI) \
X(4, TERA, TEBI) \
X(5, PETA, PEBI) \
X(6, EXA, EXI )
#define X(i, dec, bin) \
constexpr u64 dec##BYTE = pow<u64>(1000, i); \
constexpr u64 bin##BYTE = pow<u64>(1024, i); \
constexpr u64 dec##BYTES(u64 n) { \
return n * dec##BYTE; \
} \
constexpr u64 bin##BYTES(u64 n) { \
return n * bin##BYTE; \
}
BYTE_UNIT_MULTIPLES(X)
#undef X
template<typename T>
constexpr T square(T x) noexcept { return x * x; }
template<typename T>
constexpr T sign(T x) noexcept { return x < 0 ? -1 : 1; }
template<typename T>
constexpr T clamp(T x, T min, T max) noexcept {
if(x < min) return min;
if(x > max) return max;
return x;
}
template<typename T>
constexpr T min(T a, T b) noexcept {
if(a < b) return a;
return b;
}
template<typename T>
constexpr T max(T a, T b) noexcept {
if(a > b) return a;
return b;
}
template<typename T>
constexpr T abs(T x) noexcept {
if(x < 0) return -x;
return x;
}
template<typename T>
constexpr T lerp(T a, T b, T t) noexcept {
return (1 - t) * a + t * b;
}
template<typename T>
constexpr T unlerp(T min, T max, T value) noexcept {
return (value - min) / (max - min);
}
template<typename T>
constexpr T relerp(T in_min, T in_max, T value, T out_min, T out_max) noexcept {
return lerp(out_min, out_max, unlerp(in_min, in_max, value));
}
template<typename T>
constexpr T move_towards(T value, T target, T rate) noexcept {
if(abs(value - target) < 0.5) return target;
return lerp(value, target, rate);
}
//////////////////////
/// OS Misc. ///
//////////////////////
VSTD_DEF u64 get_page_size();
///////////////////////
/// Allocator ///
//////////////////////
struct Allocator {
Allocator *parent;
Allocator(Allocator *_parent = NULL) : parent(_parent) {}
virtual void deinit() {}
virtual void* alloc(u64 n) = 0;
virtual void free(void *p) = 0;
};
VSTD_DEF Allocator *allocator;
VSTD_DEF void push_allocator(Allocator *a);
VSTD_DEF void pop_allocator();
VSTD_DEF void* xalloc(u64 n, Allocator *a = NULL);
VSTD_DEF void xfree(void *p, Allocator *a = NULL);
struct _vstd_new_wrapper{};
inline void* operator new(size_t, _vstd_new_wrapper, void* ptr) { return ptr; }
inline void operator delete(void*, _vstd_new_wrapper, void*) {}
inline void* operator new[](size_t, _vstd_new_wrapper, void *ptr) { return ptr; }
inline void operator delete[](void*, _vstd_new_wrapper, void*) {}
#define pnew(t, p, ...) (new(_vstd_new_wrapper(), p) t(__VA_ARGS__))
#define xanew(t, a, ...) pnew(t, xalloc(sizeof(t), a), __VA_ARGS__)
#define xnew(t, ...) xanew(t, allocator, __VA_ARGS__)
///////////////////////////////
/// Temporary Storage ///
///////////////////////////////
#ifndef TEMPORARY_STORAGE_SIZE
#define TEMPORARY_STORAGE_SIZE KIBIBYTES(64)
#endif
struct Temporary_Storage : public Allocator {
u64 used;
u64 high_water_mark;
u8 data[TEMPORARY_STORAGE_SIZE];
void* alloc(u64 n) override {
assert(used + n < TEMPORARY_STORAGE_SIZE);
void *p = &data[used];
used += n;
if(used > high_water_mark) high_water_mark = used;
return p;
}
void free(void *p) override {}
u64 mark() const { return used; }
void reset(u64 x) { used = x; }
};
VSTD_DEF Allocator *temp_allocator;
VSTD_DEF Temporary_Storage temporary_storage;
VSTD_DEF void* talloc(u64 n);
VSTD_DEF void treset();
VSTD_DEF u64 tmark();
VSTD_DEF void treset(u64 x);
///////////////////
/// Arena ///
///////////////////
#ifndef ARENA_DEFAULT_BLOCK_SIZE
#define ARENA_DEFAULT_BLOCK_SIZE KIBIBYTES(64)
#endif
#ifndef ARENA_DEFAULT_PREALLOC_BLOCKS
#define ARENA_DEFAULT_PREALLOC_BLOCKS 1
#endif
struct Arena : public Allocator {
struct Block {
struct Block *prev;
u64 used = 0;
u8 base[];
Block(struct Block *_prev) : prev(_prev) {}
};
Block *current_block = NULL;
Block *free_list = NULL;
u64 block_size;
Arena(Allocator *parent = allocator, u64 _block_size = ARENA_DEFAULT_BLOCK_SIZE, u32 prealloc_blocks = ARENA_DEFAULT_PREALLOC_BLOCKS) : Allocator(parent), block_size(_block_size) {
for(u32 i = 0; i < prealloc_blocks; i++) {
free_list = pnew(Block, xalloc(sizeof(Block) + block_size, parent), free_list);
}
}
void deinit() override {
auto b = current_block;
while(b) {
auto t = b->prev;
xfree(b, parent);
b = t;
}
b = free_list;
while(b) {
auto t = b->prev;
xfree(b, parent);
b = t;
}
Allocator::deinit();
}
void* alloc(u64 n) override {
auto blk = current_block;
if(!blk || blk->used + n >= block_size) {
if(free_list) {
blk = free_list;
free_list = blk->prev;
} else {
blk = pnew(Block, xalloc(sizeof(Block) + block_size, parent), NULL);
}
current_block = blk;
}
assert(blk->used + n < block_size);
auto p = blk->base + blk->used;
blk->used += n;
return p;
}
void free(void *p) override {}
void clear() {
auto b = current_block;
while(b) {
auto n = b->prev;
b->prev = free_list;
b->used = 0;
free_list = b;
b = n;
}
current_block = NULL;
}
};
/////////////////////
/// Hashing ///
/////////////////////
VSTD_DEF u32 murmur3(void const *input, s32 len, u32 seed);
VSTD_DEF u32 fnv1a(void const* input, u64 len);
/////////////////////
/// Strings ///
/////////////////////
//
// NOTE: This is how our _str type works:
//
// +-----------------+--------+------+
// | header (_str) | data | \0 |
// +-----------------+--------+------+
// |
// +-> returned pointer
//
using str = char*; // str
using istr = char*; // interned string
using cstr = char*; // char*
using rstr = char const*; // char const*
struct _str {
Allocator *a;
u64 size;
char data[];
};
#define strhdr(s) cast(_str*,(s)-sizeof(_str))
// TODO: use a hash table or something lmao
// TODO: allocate the _istrs linearly
struct _istr {
_istr *prev;
_str val;
};
#define istrhdr(s) cast(_istr*,(s)-sizeof(_istr))
VSTD_DEF str mkstr(cstr s, u64 n, Allocator *a = NULL);
VSTD_DEF str mkstr(cstr s, Allocator *a = NULL);
VSTD_DEF void freestr(str s);
VSTD_DEF u64 strsz(str s);
VSTD_DEF str strcopy(str s, Allocator *a = NULL);
VSTD_DEF bool streq(str a, str b);
VSTD_DEF str substr(str s, u64 b, u64 e, Allocator *a = NULL);
VSTD_DEF str tvsprintf(rstr fmt, va_list args);
VSTD_DEF str tsprintf(rstr fmt, ...);
VSTD_DEF void tfprintf(FILE *fh, rstr fmt, ...);
VSTD_DEF istr intern(cstr s);
VSTD_DEF bool isintern(str s);
//////////////////////////
/// More General ///
//////////////////////////
VSTD_DEF void vpanic(rstr fmt, va_list args);
VSTD_DEF void panic(rstr fmt, ...);
VSTD_DEF void todo();
//////////////////////
/// File I/O ///
//////////////////////
VSTD_DEF str read_entire_file(str path, Allocator *a = NULL);
VSTD_DEF bool write_entire_file(str path, str data);
//////////////////////////
/// Static Array ///
//////////////////////////
template<typename T, u64 capacity>
struct Static_Array final {
static constexpr u64 size = capacity;
using value_type = T;
using type = Static_Array<T, capacity>;
using ref_type = type&;
using ref_const_type = type const&;
using ptr_type = type*;
using ptr_const_type = type const*;
template<typename AT>
struct IteratorBase final {
using type = IteratorBase<AT>;
IteratorBase() : a(NULL) {}
IteratorBase(AT _a, u64 _index) : a(_a), index(_index) {}
type& operator++() { index++; return *this; }
type operator++(int) { auto it = *this; operator++(); return it; }
type& operator--() { index--; return *this; }
type operator--(int) { auto it = *this; operator--(); return it; }
T& operator*() { return (*a)[index]; }
bool operator==(type const& b) const {
if(a != b.a) return false;
return index == b.index;
}
bool operator!=(type const& b) const { return !(*this == b ); }
private:
AT a;
u64 index = 0;
};
using Iterator = IteratorBase<ptr_type>;
using Const_Iterator = IteratorBase<ptr_const_type>;
T data[capacity];
u64 count = 0;
Iterator begin() { return Iterator (this, 0); }
Iterator end() { return Iterator(this, count); }
Const_Iterator begin() const { return Const_Iterator(this, 0); }
Const_Iterator end() const { return Const_Iterator(this, count); }
void clear() {
count = 0;
}
u64 push(T datum) {
assert(count < capacity);
data[count] = datum;
return count++;
}
T pop() {
assert(count > 0);
return data[--count];
}
T& operator[](u64 x) { return data[x]; }
T const& operator[](u64 x) const { return data[x]; }
};
////////////////////////////
/// Slot Allocator ///
////////////////////////////
// NOTE: This is extremely similar to Static_Array
// but, at the moment, I feel like keeping them separate
// since they have different intended uses.
// - vereena, 5/12/20
template<typename T, u32 size>
struct Slot_Allocator final {
T slots[size];
s32 count;
Slot_Allocator() {
memset(slots, 0, sizeof(slots));
count = 0;
}
void clear() {
count = 0;
}
s32 index_of(T x) const {
for(s32 i = 0; i < count; i++) {
if(slots[i] == x) return i;
}
return -1;
}
s32 alloc(T x) {
s32 i = index_of(x);
if(i != -1) return i;
if(count == size) return -1;
slots[count] = x;
return count++;
}
};
///////////////////
/// Array ///
///////////////////
#ifndef ARRAY_DEFAULT_SIZE
#define ARRAY_DEFAULT_SIZE 64
#endif
template<typename T>
struct Array final {
struct Iterator final {
Iterator() : a(NULL) {}
Iterator(Array<T> *_a, u64 _index) : a(_a), index(_index) {}
Iterator& operator++() { index++; return *this; }
Iterator operator++(int) { auto it = *this; operator++(); return it; }
Iterator& operator--() { index--; return *this; }
Iterator operator--(int) { auto it = *this; operator--(); return it; }
T& operator*() { return (*a)[index]; }
bool operator==(Iterator const& b) const {
if(a != b.a) return false;
return index == b.index;
}
bool operator!=(Iterator const& b) const { return !(*this == b ); }
private:
Array<T> *a;
u64 index = 0;
};
struct Const_Iterator final {
Const_Iterator() : a(NULL) {}
Const_Iterator(Array<T> const* _a, u64 _index) : a(_a), index(_index) {}
Const_Iterator& operator++() { index++; return *this; }
Const_Iterator operator++(int) { auto it = *this; operator++(); return it; }
Const_Iterator& operator--() { index--; return *this; }
Const_Iterator operator--(int) { auto it = *this; operator--(); return it; }
T const& operator*() { return (*a)[index]; }
bool operator==(Const_Iterator const& b) const {
if(a != b.a) return false;
return index == b.index;
}
bool operator!=(Const_Iterator const& b) const { return !(*this == b ); }
private:
Array<T> const* a;
u64 index = 0;
};
u64 count = 0;
u64 size = 0;
T *data = NULL;
Allocator *a;
Array(Allocator *_a = ::allocator) : a(_a) {}
Iterator begin() { return Iterator(this, 0); }
Iterator end() { return Iterator(this, count); }
Const_Iterator begin() const { return Const_Iterator(this, 0); }
Const_Iterator end() const { return Const_Iterator(this, count); }
void free() {
if(data) {
xfree(data, a);
count = 0;
size = 0;
data = NULL;
}
}
void resize(u64 size) {
assert(size >= count);
if(data) {
data = cast(T*, xalloc(sizeof(T) * size, a));
} else {
T *new_data = cast(T*, xalloc(sizeof(T) * size, a));
assert(new_data);
memcpy(new_data, data, sizeof(T) * count);
xfree(data, a);
this->data = new_data;
}
this->size = size;
}
void clear() {
count = 0;
}
u64 push(T v) {
check_init();
if(count == size) {
resize(size * 2);
}
u64 i = count++;
data[i] = v;
return i;
}
T pop() {
assert(data);
assert(count > 0);
return data[--count];
}
void insert(T v, u64 index) {
check_init();
if(count == size) {
resize(size * 2);
}
for(u64 i = count - 1; i >= index; i--) {
if(i > count) break;
data[i + 1] = data[i];
}
data[index] = v;
count++;
}
T ordered_remove(u64 i) {
assert(data);
assert(i < count);
T r = data[i];
for(u64 j = i; j < count - 1; j++) {
data[j] = data[j + 1];
}
count--;
return r;
}
T unordered_remove(u64 i) {
assert(data);
assert(i < count);
T r = data[i];
data[i] = data[count - 1];
count--;
return r;
}
bool contains(T x) const {
if(!data) return false;
return index(x) != -1;
}
s64 index(T x) const {
for(u64 i = 0; i < count; i++) {
if(data[i] == x) return i;
}
return -1;
}
T& operator[](u64 x) { return data[x]; }
T const& operator[](u64 x) const { return data[x]; }
private:
void check_init() {
if(data == NULL) {
size = ARRAY_DEFAULT_SIZE;
data = cast(T*, xalloc(sizeof(T) * size, a));
}
}
};
////////////////////////
/// Hash Table ///
////////////////////////