-
Notifications
You must be signed in to change notification settings - Fork 81
/
Enum.pm
331 lines (264 loc) · 10.7 KB
/
Enum.pm
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
package Enum;
use utf8;
use strict;
use warnings;
BEGIN {
use Exporter ();
our $VERSION = 1.00;
our @ISA = qw(Exporter);
our @EXPORT = qw( &render_enum_core &render_enum_type );
our %EXPORT_TAGS = ( ); # eg: TAG => [ qw!name1 name2! ],
our @EXPORT_OK = qw( );
}
END { }
use XML::LibXML;
use Common;
sub render_enum_tables($$$$$$);
sub render_enum_core($$) {
my ($ename,$tag) = @_;
my $base = 0;
my $count = 0;
my $complex = 0;
my $base_type = get_primitive_base($tag, 'int32_t');
emit_comment $tag, -attr => 1;
my $last_value = -1;
emit_block {
my @items = $tag->findnodes('child::enum-item');
my $real_value = 0;
for my $item (@items) {
my $name = ensure_name $item->getAttribute('name');
my $value = $item->getAttribute('value');
if (defined $value) {
$real_value = $value;
if ($count == 0) {
$base = $value;
} else {
$complex = 1;
}
}
else {
$real_value = $last_value + 1;
}
if ($count > 0 && $real_value < $last_value) {
die("illegal enum value in $ename: $name = $value < $last_value\n");
}
$count++;
$last_value = $real_value;
my $value_comment = sprintf(' // %d, 0x%X',$real_value, $real_value);
emit_comment $item, -attr => 1;
emit $name, (defined($value) ? ' = '.$value : ''), ','.$value_comment;
}
$lines[-1] =~ s/,$//;
} "enum $ename : $base_type ", ";";
render_enum_tables $ename, $tag, $base, $count, $complex, $last_value;
return ($base, $count, $complex);
}
my $list_entry_id = 0;
sub render_enum_tables($$$$$$) {
my ($name,$tag,$base,$count,$complex,$last_value) = @_;
if (!$complex && $base+$count-1 != $last_value) {
die("in enum $name: unexpected last value: expected " . ($base+$count-1) . ", got $last_value\n");
}
$tag->setAttribute('last-value',$last_value);
my $is_global = $tag->nodeName eq 'ld:global-type';
my $base_type = get_primitive_base($tag, 'int32_t');
my $full_name = fully_qualified_name($tag, $name, 1);
my $traits_name = 'traits<'.$full_name.'>';
with_emit_traits {
emit_block {
emit "static enum_identity identity;";
emit "static enum_identity *get() { return &identity; }";
} "template<> struct ${export_prefix}identity_$traits_name ", ";";
header_ref("Export.h");
header_ref("DataDefs.h");
};
# Enumerate enum attributes
my %aidx = ('key' => -1);
my @anames = ();
my @avals = ();
my @atypes = ();
my @atnames = ();
my @aprefix = ();
my @is_list = ();
my @use_key = ();
my @use_list = ();
my @field_meta = ();
for my $attr ($tag->findnodes('child::enum-attr')) {
my $name = $attr->getAttribute('name') or die "Unnamed enum-attr.\n";
my $type = decode_type_name_ref $attr;
my $def = $attr->getAttribute('default-value');
my $base_tname = ($type && $type =~ /::(.*)$/ ? $1 : '');
die "Duplicate attribute $name.\n" if exists $aidx{$name};
check_name $name;
$aidx{$name} = scalar @anames;
push @anames, $name;
push @atnames, $type;
push @is_list, undef;
if ($type) {
push @atypes, $type;
push @aprefix, ($base_tname ? $base_tname."::" : '');
push @avals, (defined $def ? $aprefix[-1].$def : "($type)0");
} else {
push @atypes, 'const char*';
push @avals, (defined $def ? "\"$def\"" : 'NULL');
push @aprefix, '';
}
push @field_meta, [ "FLD(PRIMITIVE, $name)", "identity_traits<$atypes[-1]>::get()", 0, 0 ];
if (is_attr_true($attr, 'is-list')) {
push @use_list, $#anames;
$is_list[-1] = $atypes[-1];
$atypes[-1] = "enum_list_attr<$atypes[-1]>";
$avals[-1] = "{ 0, NULL }";
$field_meta[-1] = [ "FLD(CONTAINER, $name)", "identity_traits<$atypes[-1]>::get()", 0, 0 ];
} elsif (is_attr_true($attr, 'use-key-name')) {
push @use_key, $#anames;
}
}
# Emit traits
with_emit_traits {
emit_block {
emit "static const bool is_complex = " . ($complex ? 'true' : 'false') . ";";
emit "typedef $base_type base_type;";
emit "typedef $full_name enum_type;";
emit "static const base_type first_item_value = $base;";
emit "static const base_type last_item_value = $last_value;";
# Cast the enum to integer in order to avoid GCC <= 4.5 assuming the value range is correct.
emit_block {
emit "return (value >= first_item_value && ",
"value <= last_item_value);";
} "static inline bool is_valid(base_type value) ";
emit "static const enum_type first_item = (enum_type)first_item_value;";
emit "static const enum_type last_item = (enum_type)last_item_value;";
emit "static const char *const key_table[", $count, "];";
if ($complex) {
emit "static const DFHack::enum_identity::ComplexData complex;";
}
if (@anames) {
emit_block {
for (my $i = 0; $i < @anames; $i++) {
emit "$atypes[$i] $anames[$i];";
}
emit "static struct_identity _identity;";
} "struct attr_entry_type ", ";";
emit "static const attr_entry_type attr_table[", $count, "+1];";
emit "static const attr_entry_type &attrs(enum_type value);";
}
} "template<> struct ${export_prefix}enum_$traits_name ", ";";
};
# Emit implementation
with_emit_static {
# Emit keys
emit_block {
for my $item ($tag->findnodes('child::enum-item')) {
if (my $name = $item->getAttribute('name')) {
emit '"'.$name.'",'
} else {
emit 'NULL,';
}
}
$lines[-1] =~ s/,$//;
} "const char *const enum_${traits_name}::key_table[${count}] = ", ";";
# Emit complex data
my $complex_ptr = 'NULL';
if ($complex) {
my @items = $tag->findnodes('child::enum-item');
my $last_value = -1;
emit_block {
for my $item (@items) {
my $value = $item->getAttribute('value');
unless (defined $value) {
$value = $last_value + 1;
}
$last_value = $value;
emit $value . ',';
}
} "const DFHack::enum_identity::ComplexData enum_${traits_name}::complex = ", ";";
$complex_ptr = "&enum_${traits_name}::complex";
}
# Emit attrs
my $atable_ptr = 'NULL';
my $atable_meta = 'NULL';
if (@anames) {
my @table_entries;
my $fmt_val = sub {
my ($idx, $value) = @_;
if ($atnames[$idx]) {
return $aprefix[$idx].$value;
} else {
return "\"$value\"";
}
};
for my $item ($tag->findnodes('child::enum-item')) {
my $tag = $item->nodeName;
# Assemble item-specific attr values
my @evals = @avals;
my $name = $item->getAttribute('name');
if ($name) {
$evals[$_] = $fmt_val->($_, $name) for @use_key;
}
my @list;
for my $attr ($item->findnodes('child::item-attr')) {
my $name = $attr->getAttribute('name') or die "Unnamed item-attr.\n";
my $value = $attr->getAttribute('value');
(defined $value) or die "No-value item-attr.\n";
my $idx = $aidx{$name};
(defined $idx && $idx >= 0) or die "Unknown item-attr: $name\n";
if ($is_list[$idx]) {
push @{$list[$idx]}, $fmt_val->($idx, $value);
} else {
$evals[$idx] = $fmt_val->($idx, $value);
}
}
for my $idx (@use_list) {
my @items = @{$list[$idx]||[]};
my $ptr = 'NULL';
if (@items) {
my $id = $list_entry_id++;
$ptr = "_list_items_${id}";
emit "static const $is_list[$idx] ${ptr}[] = { ", join(', ', @items), ' };';
}
$evals[$idx] = "{ ".scalar(@items).', '.$ptr.' }';
}
push @table_entries, "{ ".join(', ',@evals)." },";
}
my $entry_type = "enum_${traits_name}::attr_entry_type";
# Emit the info table
emit_block {
emit $_ for @table_entries;
emit "{ ", join(', ',@avals), " }";
} "const $entry_type enum_${traits_name}::attr_table[${count}+1] = ", ";";
emit_block {
emit "return is_valid(value) ? attr_table[value - first_item_value] : attr_table[$count];";
} "const $entry_type & enum_${traits_name}::attrs(enum_type value) ";
# Emit the info table metadata
with_emit_static {
my $ftable = generate_field_table {
@field_defs = @field_meta;
} $entry_type;
emit "struct_identity ${entry_type}::_identity(",
"sizeof($entry_type), NULL, ",
type_identity_reference($tag), ', ',
"\"_attr_entry_type\", NULL, $ftable);";
} 'fields';
$atable_ptr = "enum_${traits_name}::attr_table";
$atable_meta = "&${entry_type}::_identity";
}
emit "enum_identity identity_${traits_name}::identity(",
"sizeof($full_name), ",
type_identity_reference($tag,-parent => 1), ', ',
"\"$name\", TID($base_type), $base, ",
($base+$count-1), ", enum_${traits_name}::key_table,
$complex_ptr,
$atable_ptr, $atable_meta);";
} 'enums';
}
sub render_enum_type {
my ($tag) = @_;
emit_block {
emit_block {
render_enum_core($typename, $tag);
} "namespace $typename ";
} "namespace enums ";
emit "using enums::",$typename,"::",$typename,";";
}
1;