-
Notifications
You must be signed in to change notification settings - Fork 72
/
box.h
204 lines (172 loc) · 5.77 KB
/
box.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
/* MIT License
*
* Copyright (c) 2023 Tyge Løvset
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/* cbox: heap allocated boxed type
#define i_implement
#include "stc/cstr.h"
typedef struct { cstr name, email; } Person;
Person Person_from(const char* name, const char* email) {
return (Person){.name = cstr_from(name), .email = cstr_from(email)};
}
Person Person_clone(Person p) {
p.name = cstr_clone(p.name);
p.email = cstr_clone(p.email);
return p;
}
void Person_drop(Person* p) {
printf("drop: %s %s\n", cstr_str(&p->name), cstr_str(&p->email));
c_drop(cstr, &p->name, &p->email);
}
#define i_type PBox
#define i_val_class Person // bind Person clone+drop fn's
#include "stc/box.h"
int main(void) {
PBox p = PBox_from(Person_from("John Smiths", "[email protected]"));
PBox q = PBox_clone(p);
cstr_assign(&q.get->name, "Joe Smiths");
printf("%s %s.\n", cstr_str(&p.get->name), cstr_str(&p.get->email));
printf("%s %s.\n", cstr_str(&q.get->name), cstr_str(&q.get->email));
c_drop(PBox, &p, &q);
}
*/
#include "priv/linkage.h"
#ifndef STC_BOX_H_INCLUDED
#define STC_BOX_H_INCLUDED
#include "common.h"
#include "types.h"
#include <stdlib.h>
#include <string.h>
#define cbox_null {0}
#endif // STC_BOX_H_INCLUDED
#ifndef _i_prefix
#define _i_prefix box_
#endif
#define _i_cbox
#include "priv/template.h"
typedef i_keyraw _m_raw;
#ifndef i_is_forward
_c_DEFTYPES(_c_box_types, i_type, i_key);
#endif
// constructors (take ownership)
STC_INLINE i_type _c_MEMB(_init)(void)
{ return c_LITERAL(i_type){NULL}; }
STC_INLINE long _c_MEMB(_use_count)(const i_type* self)
{ return (long)(self->get != NULL); }
STC_INLINE i_type _c_MEMB(_from_ptr)(_m_value* p)
{ return c_LITERAL(i_type){p}; }
// c++: std::make_unique<i_key>(val)
STC_INLINE i_type _c_MEMB(_make)(_m_value val) {
i_type box = {_i_alloc(_m_value)};
*box.get = val;
return box;
}
STC_INLINE _m_raw _c_MEMB(_toraw)(const i_type* self)
{ return i_keyto(self->get); }
// destructor
STC_INLINE void _c_MEMB(_drop)(const i_type* cself) {
i_type* self = (i_type*)cself;
if (self->get) {
i_keydrop(self->get);
i_free(self->get, c_sizeof *self->get);
}
}
STC_INLINE i_type _c_MEMB(_move)(i_type* self) {
i_type box = *self;
self->get = NULL;
return box;
}
STC_INLINE _m_value* _c_MEMB(_release)(i_type* self)
{ return _c_MEMB(_move)(self).get; }
STC_INLINE void _c_MEMB(_reset)(i_type* self) {
_c_MEMB(_drop)(self);
self->get = NULL;
}
// take ownership of p
STC_INLINE void _c_MEMB(_reset_to)(i_type* self, _m_value* p) {
_c_MEMB(_drop)(self);
self->get = p;
}
#ifndef i_no_emplace
STC_INLINE i_type _c_MEMB(_from)(_m_raw raw)
{ return _c_MEMB(_make)(i_keyfrom(raw)); }
#else
STC_INLINE i_type _c_MEMB(_from)(_m_value val)
{ return _c_MEMB(_make)(val); }
#endif
#if !defined i_no_clone
STC_INLINE i_type _c_MEMB(_clone)(i_type other) {
if (!other.get)
return other;
i_type out = {_i_alloc(_m_value)};
*out.get = i_keyclone((*other.get));
return out;
}
#endif // !i_no_clone
// take ownership of unowned
STC_INLINE void _c_MEMB(_take)(i_type* self, i_type unowned) {
_c_MEMB(_drop)(self);
*self = unowned;
}
// transfer ownership from moved; set moved to NULL
STC_INLINE void _c_MEMB(_assign)(i_type* self, i_type* moved) {
if (moved->get == self->get)
return;
_c_MEMB(_drop)(self);
*self = *moved;
moved->get = NULL;
}
#if defined _i_has_cmp
STC_INLINE int _c_MEMB(_raw_cmp)(const _m_raw* rx, const _m_raw* ry)
{ return i_cmp(rx, ry); }
STC_INLINE int _c_MEMB(_cmp)(const i_type* self, const i_type* other) {
_m_raw rx = i_keyto(self->get), ry = i_keyto(other->get);
return i_cmp((&rx), (&ry));
}
#else
STC_INLINE int _c_MEMB(_cmp)(const i_type* self, const i_type* other)
{ return c_default_cmp(&self->get, &other->get); }
#endif
#if defined _i_has_eq
STC_INLINE bool _c_MEMB(_raw_eq)(const _m_raw* rx, const _m_raw* ry)
{ return i_eq(rx, ry); }
STC_INLINE bool _c_MEMB(_eq)(const i_type* self, const i_type* other) {
_m_raw rx = i_keyto(self->get), ry = i_keyto(other->get);
return i_eq((&rx), (&ry));
}
#else
STC_INLINE bool _c_MEMB(_eq)(const i_type* self, const i_type* other)
{ return self->get == other->get; }
#endif
#ifndef i_no_hash
STC_INLINE uint64_t _c_MEMB(_raw_hash)(const _m_raw* rx)
{ return i_hash(rx); }
STC_INLINE uint64_t _c_MEMB(_hash)(const i_type* self) {
_m_raw rx = i_keyto(self->get);
return i_hash((&rx));
}
#else
STC_INLINE uint64_t _c_MEMB(_hash)(const i_type* self)
{ return c_default_hash(&self->get); }
#endif // i_no_hash
#undef _i_cbox
#include "priv/template2.h"
#include "priv/linkage2.h"