-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
registry.zig
240 lines (206 loc) · 6.08 KB
/
registry.zig
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
const std = @import("std");
// Types are dynamically allocated into the converter's arena so do not need a deinit
pub const Type = union(enum) {
void,
bool,
int: u8,
uint: u8,
float: u8,
c_short,
c_ushort,
c_int,
c_uint,
c_long,
c_ulong,
c_longlong,
c_ulonglong,
name: []const u8,
pointer: Pointer,
instance_type,
function: Function,
generic: Generic,
pub const Pointer = struct {
is_single: bool,
is_const: bool,
is_optional: bool,
child: *Type,
};
pub const Function = struct {
return_type: *Type,
params: std.ArrayList(Type),
};
pub const Generic = struct {
base_type: *Type,
args: std.ArrayList(Type),
};
};
pub const EnumValue = struct {
name: []const u8,
value: i64,
};
pub const Enum = struct {
const Self = @This();
const ValueList = std.ArrayList(EnumValue);
name: []const u8,
ty: Type,
values: ValueList,
pub fn init(allocator: std.mem.Allocator, name: []const u8) Enum {
return Enum{
.name = name,
.ty = undefined,
.values = ValueList.init(allocator),
};
}
pub fn deinit(self: *Self) void {
self.values.deinit();
}
};
pub const TypeParam = struct {
name: []const u8,
pub fn init(name: []const u8) TypeParam {
return TypeParam{ .name = name };
}
};
pub const Property = struct {
name: []const u8,
ty: Type,
pub fn init(name: []const u8, ty: Type) Property {
return Property{ .name = name, .ty = ty };
}
};
pub const Param = struct {
name: []const u8,
ty: Type,
pub fn init(name: []const u8, ty: Type) Param {
return Param{ .name = name, .ty = ty };
}
};
pub const Method = struct {
const Self = @This();
const ParamList = std.ArrayList(Param);
name: []const u8,
instance: bool,
return_type: Type,
params: ParamList,
pub fn init(name: []const u8, instance: bool, return_type: Type, params: ParamList) Method {
return Method{
.name = name,
.instance = instance,
.return_type = return_type,
.params = params,
};
}
pub fn deinit(self: *Self) void {
self.params.deinit();
}
};
pub const Container = struct {
const Self = @This();
const ContainerList = std.ArrayList(*Container);
const TypeParamList = std.ArrayList(TypeParam);
const PropertyList = std.ArrayList(Property);
const MethodList = std.ArrayList(Method);
name: []const u8,
super: ?*Container,
protocols: ContainerList,
type_params: TypeParamList,
properties: PropertyList,
methods: MethodList,
is_interface: bool,
ambiguous: bool, // Same typename as protocol and interface
pub fn init(allocator: std.mem.Allocator, name: []const u8, is_interface: bool) Container {
return Container{
.name = name,
.super = null,
.protocols = ContainerList.init(allocator),
.type_params = TypeParamList.init(allocator),
.properties = PropertyList.init(allocator),
.methods = MethodList.init(allocator),
.is_interface = is_interface,
.ambiguous = false,
};
}
pub fn deinit(self: *Self) void {
self.protocols.deinit();
self.type_params.deinit();
self.properties.deinit();
for (self.methods.items) |*method| {
method.deinit();
}
self.methods.deinit();
}
};
pub const Registry = struct {
const Self = @This();
const TypedefHashMap = std.StringHashMap(Type);
const EnumHashMap = std.StringHashMap(*Enum);
const ContainerHashMap = std.StringHashMap(*Container);
allocator: std.mem.Allocator,
typedefs: TypedefHashMap,
enums: EnumHashMap,
protocols: ContainerHashMap,
interfaces: ContainerHashMap,
pub fn init(allocator: std.mem.Allocator) Registry {
return Registry{
.allocator = allocator,
.typedefs = TypedefHashMap.init(allocator),
.enums = EnumHashMap.init(allocator),
.protocols = ContainerHashMap.init(allocator),
.interfaces = ContainerHashMap.init(allocator),
};
}
pub fn deinit(self: *Self) void {
self.typedefs.deinit();
self.deinitMap(&self.enums);
self.deinitMap(&self.protocols);
self.deinitMap(&self.interfaces);
}
fn deinitMap(self: *Self, map: anytype) void {
var it = map.iterator();
while (it.next()) |entry| {
var value = entry.value_ptr.*;
value.deinit();
self.allocator.destroy(value);
}
map.deinit();
}
pub fn getEnum(self: *Self, name: []const u8) !*Enum {
const v = try self.enums.getOrPut(name);
if (v.found_existing) {
return v.value_ptr.*;
} else {
const e = try self.allocator.create(Enum);
e.* = Enum.init(self.allocator, name);
v.value_ptr.* = e;
return e;
}
}
pub fn getProtocol(self: *Self, name: []const u8) !*Container {
return try self.getContainer(&self.protocols, &self.interfaces, name, false);
}
pub fn getInterface(self: *Self, name: []const u8) !*Container {
return try self.getContainer(&self.interfaces, &self.protocols, name, true);
}
fn getContainer(
self: *Self,
primary: *ContainerHashMap,
secondary: *ContainerHashMap,
name: []const u8,
is_interface: bool,
) !*Container {
const v = try primary.getOrPut(name);
var container: *Container = undefined;
if (v.found_existing) {
container = v.value_ptr.*;
} else {
container = try self.allocator.create(Container);
container.* = Container.init(self.allocator, name, is_interface);
v.value_ptr.* = container;
}
if (secondary.get(name)) |other| {
other.ambiguous = true;
container.ambiguous = true;
}
return container;
}
};