4 #@ Parse 'enum okeys' from nail.h and create gen-okeys.h. And see accmacvar.c.
7 # Acceptable "longest distance" from hash-modulo-index to key
8 my $MAXDISTANCE_PENALTY = 5;
10 # Generate a more verbose output. Not for shipout versions.
13 my $MAILX = 'LC_ALL=C s-nail -#:/';
14 my $OUT = 'gen-okeys.h';
18 use diagnostics
-verbose
;
25 use sigtrap
qw(handler cleanup normal-signals);
27 my ($S, @ENTS, $CTOOL, $CTOOL_EXE) = ($VERB ?
' ' : '');
30 if(@ARGV) {$VERB = 0; $S = ''}
47 die "$CTOOL_EXE: couldn't unlink: $^E"
48 if $CTOOL_EXE && -f
$CTOOL_EXE && 1 != unlink $CTOOL_EXE;
49 die "$CTOOL: couldn't unlink: $^E"
50 if $CTOOL && -f
$CTOOL && 1 != unlink $CTOOL;
51 die "Terminating due to signal $_[0]" if $_[0]
55 die "nail.h: open: $^E" unless open F
, '<', 'nail.h';
58 # Only want the enum okeys content
59 if(/^enum okeys/) {$init = 1; next}
60 if(/^};/) {if($init) {$init = 2; last}; next}
63 # Ignore empty and comment lines
67 # An entry may have a comment with special directives
68 /^\s*(\w+),?\s*(?:\/\
*\s
*(?
:{(.*)})\s
*\
*\
/\s*)?$/;
70 my ($k, $x) = ($1, $2);
73 $vals{bool
} = ($k =~ /^ok_b/ ?
1 : 0);
74 $k = $1 if $k =~ /^ok_[bv]_(.+)$/;
78 # {\}: overlong entry, placed on follow line
79 if($x =~ /\s*\\\s*$/){
81 die 'nail.h: missing continuation line' unless $_;
82 /^\s*\/\
*\s
*{(.*)}\s
*\
*\
/\s*$/;
84 die 'nail.h: invalid continuation line' unless $x
87 while($x && $x =~ /^([^,]+?)(?:,(.*))?$/){
90 die "Unsupported special directive: $1"
92 $1 ne 'virt' && $1 ne 'nolopts' &&
93 $1 ne 'rdonly' && $1 ne 'nodel' && $1 ne 'notempty' &&
95 $1 ne 'num' && $1 ne 'posnum' && $1 ne 'lower' &&
96 $1 ne 'vip' && $1 ne 'import' && $1 ne 'env' &&
97 $1 ne 'i3val' && $1 ne 'defval');
103 if($init != 2) {die 'nail.h does not have the expected content'}
108 $CTOOL = './tmp-okey-tool-' . $$ . '.c';
109 $CTOOL_EXE = $CTOOL . '.exe';
111 die "$CTOOL: open: $^E" unless open F
, '>', $CTOOL;
112 print F
'#define MAX_DISTANCE_PENALTY ', $MAXDISTANCE_PENALTY, "\n";
113 # >>>>>>>>>>>>>>>>>>>
115 #define __CREATE_OKEY_MAP_PL
121 #define n_NELEM(A) (sizeof(A) / sizeof(A[0]))
123 #define ui32_t uint32_t
124 #define ui16_t uint16_t
125 #define ui8_t uint8_t
127 enum a_amv_var_flags
{
129 a_AMV_VF_BOOL
= 1u<<0, /* ok_b_* */
130 a_AMV_VF_VIRT
= 1u<<1, /* "Stateless" automatic variable */
131 a_AMV_VF_NOLOPTS
= 1u<<2, /* May not be tracked by `localopts' */
132 a_AMV_VF_RDONLY
= 1u<<3, /* May not be set by user */
133 a_AMV_VF_NODEL
= 1u<<4, /* May not be deleted */
134 a_AMV_VF_NOTEMPTY
= 1u<<5, /* May not be assigned an empty value */
135 a_AMV_VF_NOCNTRLS
= 1u<<6, /* Value may not contain control characters */
136 a_AMV_VF_NUM
= 1u<<7, /* Value must be a 32-bit number */
137 a_AMV_VF_POSNUM
= 1u<<8, /* Value must be positive 32-bit number */
138 a_AMV_VF_LOWER
= 1u<<9, /* Values will be stored in a lowercase version */
139 a_AMV_VF_VIP
= 1u<<10, /* Wants _var_check_vips() evaluation */
140 a_AMV_VF_IMPORT
= 1u<<11, /* Import ONLY from environ (pre n_PSO_STARTED) */
141 a_AMV_VF_ENV
= 1u<<12, /* Update environment on change */
142 a_AMV_VF_I3VAL
= 1u<<13, /* Has an initial value */
143 a_AMV_VF_DEFVAL
= 1u<<14, /* Has a default value */
144 a_AMV_VF_LINKED
= 1u<<15, /* `environ' linked */
145 a_AMV_VF__MASK
= (1u<<(15+1)) - 1
148 struct a_amv_var_map
{
151 ui16_t avm_flags
; /* enum a_amv_var_flags */
155 #include "gen-okeys.h"
157 static ui8_t seen_wraparound
;
158 static size_t longest_distance
;
161 next_prime
(size_t
no){ /* blush (brute force) */
164 for(size_t i
= 3; i
< no; i
+= 2)
171 reversy
(size_t size
){
172 struct a_amv_var_map const
*vmp
= a_amv_var_map
,
173 *vmaxp
= vmp
+ n_NELEM
(a_amv_var_map
);
174 size_t ldist
= 0, *arr
;
176 arr
= malloc
(sizeof
*arr
* size
);
177 for(size_t i
= 0; i
< size
; ++i
)
178 arr
[i
] = n_NELEM
(a_amv_var_map
);
181 longest_distance
= 0;
184 ui32_t hash
= vmp
->avm_hash, i
= hash
% size
, l
;
186 for(l
= 0; arr
[i
] != n_NELEM
(a_amv_var_map
); ++l
)
191 if(l
> longest_distance
)
192 longest_distance
= l
;
193 arr
[i
] = (size_t
)(vmp
++ - a_amv_var_map
);
199 main
(int argc
, char
**argv
){
200 size_t
*arr
, size
= n_NELEM
(a_amv_var_map
);
202 fprintf
(stderr
, "Starting reversy, okeys=%zu\n", size
);
204 arr
= reversy
(size
= next_prime
(size
));
205 fprintf
(stderr
, " - size=%zu longest_distance=%zu seen_wraparound=%d\n",
206 size
, longest_distance
, seen_wraparound
);
207 if(longest_distance
<= MAX_DISTANCE_PENALTY
)
213 "#define a_AMV_VAR_REV_ILL %zuu\n"
214 "#define a_AMV_VAR_REV_PRIME %zuu\n"
215 "#define a_AMV_VAR_REV_LONGEST %zuu\n"
216 "#define a_AMV_VAR_REV_WRAPAROUND %d\n"
217 "static %s const a_amv_var_revmap[a_AMV_VAR_REV_PRIME] = {\n%s",
218 n_NELEM
(a_amv_var_map
), size
, longest_distance
, seen_wraparound
,
219 argv
[1], (argc
> 2 ?
" " : ""));
220 for(size_t i
= 0; i
< size
; ++i
)
221 printf("%s%zuu", (i
== 0 ?
""
222 : (i
% 10 == 0 ?
(argc
> 2 ?
",\n " : ",\n")
223 : (argc
> 2 ?
", " : ","))),
229 # <<<<<<<<<<<<<<<<<<<
234 die "hash_em: open: $^E"
235 unless my $pid = open2
*RFD
, *WFD
, $MAILX;
236 foreach my $e (@ENTS){
237 print WFD
"vexpr hash $e->{name}\n";
247 die "$OUT: open: $^E" unless open F
, '>', $OUT;
248 print F
"/*@ $OUT, generated by $0.\n",
249 " *@ See accmacvar.c for more */\n\n";
251 print F
'static char const a_amv_var_names[] = {', "\n";
252 my ($i, $alen) = (0, 0);
253 my (%virts, %defvals, %i3vals);
254 foreach my $e (@ENTS){
255 $e->{keyoff
} = $alen;
258 my $a = join '\',\'', split(//, $k);
260 if($e->{bool
}) {push @fa, 'a_AMV_VF_BOOL'}
262 # Virtuals are implicitly rdonly and nodel
263 $e->{rdonly
} = $e->{nodel
} = 1;
265 push @fa, 'a_AMV_VF_VIRT'
267 if(defined $e->{i3val
}){
269 push @fa, 'a_AMV_VF_I3VAL'
273 push @fa, 'a_AMV_VF_DEFVAL'
277 push @fa, 'a_AMV_VF_IMPORT'
279 if($e->{nolopts
}) {push @fa, 'a_AMV_VF_NOLOPTS'}
280 if($e->{rdonly
}) {push @fa, 'a_AMV_VF_RDONLY'}
281 if($e->{nodel
}) {push @fa, 'a_AMV_VF_NODEL'}
282 if($e->{notempty
}) {push @fa, 'a_AMV_VF_NOTEMPTY'}
283 if($e->{nocntrls
}) {push @fa, 'a_AMV_VF_NOCNTRLS'}
284 if($e->{num
}) {push @fa, 'a_AMV_VF_NUM'}
285 if($e->{posnum
}) {push @fa, 'a_AMV_VF_POSNUM'}
286 if($e->{lower
}) {push @fa, 'a_AMV_VF_LOWER'}
287 if($e->{vip
}) {push @fa, 'a_AMV_VF_VIP'}
288 if($e->{env
}) {push @fa, 'a_AMV_VF_ENV'}
290 my $f = join('|', @fa);
291 $f = ', ' . $f if length $f;
292 print F
"${S}/* $i. [$alen]+$l $k$f */\n" if $VERB;
293 print F
"${S}'$a','\\0',\n";
297 print F
'};', "\n\n";
299 print F
'n_CTA(a_AMV_VF_NONE == 0, "Value not 0 as expected");', "\n";
300 print F
'static struct a_amv_var_map const a_amv_var_map[] = {', "\n";
301 foreach my $e (@ENTS){
302 my $f = $VERB ?
'a_AMV_VF_NONE' : '0';
303 my $fa = join '|', @
{$e->{flags
}};
304 $f .= '|' . $fa if length $fa;
305 print F
"${S}{$e->{hash}u, $e->{keyoff}u, $f},";
306 if($VERB) {print F
"${S}/* $e->{name} */\n"}
309 print F
'};', "\n\n";
311 # We have at least version stuff in here
312 # The problem is that struct var uses a variable sized character buffer
313 # which cannot be initialized in a conforming way :(
315 #ifndef __CREATE_OKEY_MAP_PL
322 /* Unfortunately init of varsized buffer won't work: define "subclass"es */
324 my @skeys = sort keys %virts;
328 $e->{vname
} = $1 if $e->{enum
} =~ /ok_._(.*)/;
329 $e->{vstruct
} = "var_virt_$e->{vname}";
330 print F
"static char const a_amv_$e->{vstruct}_val[] = {$e->{virt}};\n";
331 print F
"static struct{\n";
332 print F
"${S}struct a_amv_var *av_link;\n";
333 print F
"${S}char const *av_value;\n";
334 print F
"${S}a_X(char *av_env;)\n";
335 print F
"${S}ui16_t av_flags;\n";
336 print F
"${S}char const av_name[", length($e->{name
}), " +1];\n";
337 my $f = $VERB ?
'a_AMV_VF_NONE' : '0';
338 my $fa = join '|', @
{$e->{flags
}};
339 $f .= '|' . $fa if length $fa;
340 print F
"} const a_amv_$e->{vstruct} = ",
341 "{NULL, a_amv_$e->{vstruct}_val, a_X(0 COMMA) $f, ",
342 "\"$e->{name}\"};\n\n"
344 print F
"# undef a_X\n";
347 print F
'#define a_AMV_VAR_VIRTS_CNT ', scalar @skeys, "\n";
348 print F
'static struct a_amv_var_virt const a_amv_var_virts[] = {', "\n";
351 my $n = $1 if $e->{enum
} =~ /ok_._(.*)/;
352 print F
"${S}{$e->{enum}, {0,}, (void const*)&a_amv_$e->{vstruct}},\n";
357 @skeys = sort keys %i3vals;
360 print F
'#define a_AMV_VAR_I3VALS_CNT ', scalar @skeys, "\n";
361 print F
'static struct a_amv_var_defval const a_amv_var_i3vals[] = {', "\n";
364 print F
"${S}{", $e->{enum
}, ', {0,}, ',
365 (!$e->{bool
} ?
$e->{i3val
} : "NULL"), "},\n"
370 @skeys = sort keys %defvals;
373 print F
'#define a_AMV_VAR_DEFVALS_CNT ', scalar @skeys, "\n";
374 print F
'static struct a_amv_var_defval const a_amv_var_defvals[] = {', "\n";
376 my $e = $defvals{$_};
377 print F
"${S}{", $e->{enum
}, ', {0,}, ',
378 (!$e->{bool
} ?
$e->{defval
} : "NULL"), "},\n"
382 print F
"#endif /* __CREATE_OKEY_MAP_PL */\n";
384 # Special var backing [#@*?]|[1-9][0-9]*|0
387 foreach my $e (@ENTS){
388 if($e->{name
} eq '--special-param'){
389 print F
"#define a_AMV_VAR__SPECIAL_PARAM_MAP_IDX ${i}u\n"
391 # The rest are only speedups
392 elsif($e->{name
} eq '?'){
393 print F
"#define a_AMV_VAR__QM_MAP_IDX ${i}u\n"
394 }elsif($e->{name
} eq '!'){
395 print F
"#define a_AMV_VAR__EM_MAP_IDX ${i}u\n"
401 die "$OUT: close: $^E" unless close F
405 my $argv2 = $VERB ?
' verb' : '';
406 system("c99 -I. -o $CTOOL_EXE $CTOOL");
407 my $t = (@ENTS < 0xFF ?
'ui8_t' : (@ENTS < 0xFFFF ?
'ui16_t' : 'ui32_t'));
408 `$CTOOL_EXE $t$argv2 >> $OUT`
411 {package main
; main_fun
()}