blob: 7eb0b21d4a64aecf51a8c62e3beb691427c6fbee (
plain)
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
|
########################################################################
# #
# This software is part of the ast package #
# Copyright (c) 1982-2011 AT&T Intellectual Property #
# and is licensed under the #
# Eclipse Public License, Version 1.0 #
# by AT&T Intellectual Property #
# #
# A copy of the License is available at #
# http://www.eclipse.org/org/documents/epl-v10.html #
# (with md5 checksum b35adb5213ca9657e911e9befb180842) #
# #
# Information and Software Systems Research #
# AT&T Research #
# Florham Park NJ #
# #
# David Korn <dgk@research.att.com> #
# #
########################################################################
function err_exit
{
print -u2 -n "\t"
print -u2 -r ${Command}[$1]: "${@:2}"
let Errors+=1
}
alias err_exit='err_exit $LINENO'
Command=${0##*/}
integer Errors=0
tmp=$(mktemp -dt) || { err_exit mktemp -dt failed; exit 1; }
trap "cd /; rm -rf $tmp" EXIT
function checkref
{
nameref foo=$1 bar=$2
if [[ $foo != $bar ]]
then err_exit "foo=$foo != bar=$bar"
fi
foo=hello
if [[ $foo != $bar ]]
then err_exit "foo=$foo != bar=$bar"
fi
foo.child=child
if [[ ${foo.child} != ${bar.child} ]]
then err_exit "foo.child=${foo.child} != bar=${bar.child}"
fi
}
name=first
checkref name name
name.child=second
checkref name name
.foo=top
.foo.bar=next
checkref .foo.bar .foo.bar
if [[ ${.foo.bar} != hello ]]
then err_exit ".foo.bar=${.foo.bar} != hello"
fi
if [[ ${.foo.bar.child} != child ]]
then err_exit ".foo.bar.child=${.foo.bar.child} != child"
fi
function func1
{
nameref color=$1
func2 color
}
function func2
{
nameref color=$1
set -s -- ${!color[@]}
print -r -- "$@"
}
typeset -A color
color[apple]=red
color[grape]=purple
color[banana]=yellow
if [[ $(func1 color) != 'apple banana grape' ]]
then err_exit "nameref or nameref not working"
fi
nameref x=.foo.bar
if [[ ${!x} != .foo.bar ]]
then err_exit "${!x} not working"
fi
typeset +n x $(typeset +n)
unset x
nameref x=.foo.bar
function x.set
{
[[ ${.sh.value} ]] && print hello
}
if [[ $(.foo.bar.set) != $(x.set) ]]
then err_exit "function references not working"
fi
if [[ $(typeset +n) != x ]]
then err_exit "typeset +n doesn't list names of reference variables"
fi
if [[ $(typeset -n) != x=.foo.bar ]]
then err_exit "typeset +n doesn't list values of reference variables"
fi
file=$tmp/test
typeset +n foo bar 2> /dev/null
unset foo bar
export bar=foo
nameref foo=bar
if [[ $foo != foo ]]
then err_exit "value of nameref foo != $foo"
fi
cat > $file <<\!
print -r -- $foo
!
chmod +x "$file"
y=$( $file)
if [[ $y != '' ]]
then err_exit "reference variable not cleared"
fi
{
command nameref xx=yy
command nameref yy=xx
} 2> /dev/null && err_exit "self reference not detected"
typeset +n foo bar
unset foo bar
set foo
nameref bar=$1
foo=hello
if [[ $bar != hello ]]
then err_exit 'nameref of positional paramters outside of function not working'
fi
unset foo bar
bar=123
function foobar
{
typeset -n foo=bar
typeset -n foo=bar
}
foobar 2> /dev/null || err_exit 'nameref not unsetting previous reference'
(
nameref short=verylong
short=( A=a B=b )
if [[ ${verylong.A} != a ]]
then err_exit 'nameref short to longname compound assignment error'
fi
) 2> /dev/null|| err_exit 'nameref short to longname compound assignment error'
unset x
if [[ $(var1=1 var2=2
for i in var1 var2
do nameref x=$i
print $x
done) != $'1\n2' ]]
then err_exit 'for loop nameref optimization error'
fi
if [[ $(typeset -A var1 var2
var1[sub1]=1 var2[sub2]=1
for i in var1 var2
do
typeset -n array=$i
print ${!array[*]}
done) != $'sub1\nsub2' ]]
then err_exit 'for loop nameref optimization test2 error'
fi
unset -n x foo bar
if [[ $(nameref x=foo;for x in foo bar;do print ${!x};done) != $'foo\nbar' ]]
then err_exit 'for loop optimization with namerefs not working'
fi
if [[ $(
p=(x=(r=3) y=(r=4))
for i in x y
do nameref x=p.$i
print ${x.r}
done
) != $'3\n4' ]]
then err_exit 'nameref optimization error'
fi
[[ $(
unset x y var
var=(foo=bar)
for i in y var
do typeset -n x=$i
if [[ ${!x.@} ]]
then print ok
fi
typeset +n x
done) != ok ]] && err_exit 'invalid for loop optimization of name references'
function setval # name value
{
nameref arg=$1
nameref var=arg.bar
var=$2
}
foo=( integer bar=0)
setval foo 5
(( foo.bar == 5)) || err_exit 'nested nameref not working'
function selfref
{
typeset -n ps=$1
print -r -- "${ps}"
}
ps=(a=1 b=2)
[[ $(selfref ps) == *a=1* ]] || err_exit 'local nameref cannot reference global variable of the same name'
function subref
{
typeset -n foo=$1
print -r -- ${foo.a}
}
[[ $(subref ps) == 1 ]] || err_exit 'local nameref cannot reference global variable child'
function local
{
typeset ps=(typeset -i a=3 b=4)
[[ $(subref ps) == 3 ]] || err_exit 'local nameref cannot reference caller compound variable'
}
local
unset -f local
function local
{
qs=(integer a=3; integer b=4)
}
local 2> /dev/null || err_exit 'function local has non-zero exit status'
[[ ${qs.a} == 3 ]] || err_exit 'function cannot set compound global variable'
unset fun i
foo=(x=hi)
function fun
{
nameref i=$1
print -r -- "${i.x}"
}
i=foo
[[ $(fun $i) == hi ]] || err_exit 'nameref for compound variable with in function name of caller fails'
unset -n foo bar
typeset -A foo
foo[x.y]=(x=3 y=4)
nameref bar=foo[x.y]
[[ ${bar.x} == 3 ]] || err_exit 'nameref to subscript containing . fails'
[[ ${!bar} == 'foo[x.y]' ]] || err_exit '${!var} not correct for nameref to an array instance'
typeset +n bar
nameref bar=foo
[[ ${!bar} == foo ]] || err_exit '${!var} not correct for nameref to array variable'
$SHELL -c 'function bar { nameref x=foo[++];};typeset -A foo;bar' 2> /dev/null ||err_exit 'nameref of associative array tries to evaluate subscript'
i=$($SHELL -c 'nameref foo=bar; bar[2]=(x=3 y=4); nameref x=foo[2].y;print -r -- $x' 2> /dev/null)
[[ $i == 4 ]] || err_exit 'creating reference from subscripted variable whose name is a reference failed'
[[ $($SHELL 2> /dev/null <<- '+++EOF'
function bar
{
nameref x=$1
print -r -- "$x"
}
function foo
{
typeset var=( foo=hello)
bar var
}
foo
+++EOF
) == *foo=hello* ]] || err_exit 'unable to display compound variable from name reference of local variable'
#set -x
for c in '=' '[' ']' '\' "'" '"' '<' '=' '('
do [[ $($SHELL 2> /dev/null <<- ++EOF++
i=\\$c;typeset -A a; a[\$i]=foo;typeset -n x=a[\$i]; print "\$x"
++EOF++
) != foo ]] && err_exit 'nameref x=a[$c] '"not working for c=$c"
done
for c in '=' '[' ']' '\' "'" '"' '<' '=' '('
do [[ $($SHELL 2> /dev/null <<- ++EOF++
i=\\$c;typeset -A a; a[\$i]=foo;b=a[\$i];typeset -n x=\$b; print "\$x"
++EOF++
) != foo ]] && err_exit 'nameref x=$b with b=a[$c] '"not working for c=$c"
done
unset -n foo x
unset foo x
typeset -A foo
nameref x=foo[xyz]
foo[xyz]=ok
[[ $x == ok ]] || err_exit 'nameref to unset subscript not working'
function function2
{
nameref v=$1
v.x=19 v.y=20
}
function function1
{
typeset compound_var=()
function2 compound_var
printf "x=%d, y=%d\n" compound_var.x compound_var.y
}
x="$(function1)"
[[ "$x" != 'x=19, y=20' ]] && err_exit "expected 'x=19, y=20', got '${x}'"
typeset +n bar
unset foo bar
[[ $(function a
{
for i in foo bar
do typeset -n v=$i
print $v
done | cat
}
foo=1 bar=2;a) == $'1\n2' ]] 2> /dev/null || err_exit 'nameref in pipeline broken'
function a
{
typeset -n v=vars.data._1
print "${v.a} ${v.b}"
}
vars=(data=())
vars.data._1.a=a.1
vars.data._1.b=b.1
[[ $(a) == 'a.1 b.1' ]] || err_exit 'nameref choosing wrong scope -- '
typeset +n bam zip foo
unset bam zip foo
typeset -A foo
foo[2]=bar
typeset -n bam=foo[2]
typeset -n zip=bam
[[ $zip == bar ]] || err_exit 'nameref to another nameref to array element fails'
[[ -R zip ]] || err_exit '[[ -R zip ]] should detect that zip is a reference'
[[ -R bam ]] || err_exit '[[ -R bam ]] should detect that bam is a reference'
[[ -R zip ]] || err_exit '[[ -v zip ]] should detect that zip is set'
[[ -v bam ]] || err_exit '[[ -v bam ]] should detect that bam is set'
[[ -R 123 ]] && err_exit '[[ -R 123 ]] should detect that 123 is not a reference'
[[ -v 123 ]] && err_exit '[[ -v 123 ]] should detect that 123 is not set'
unset ref x
typeset -n ref
x=3
function foobar
{
typeset xxx=3
ref=xxx
return 0
}
foobar 2> /dev/null && err_exit 'invalid reference should cause foobar to fail'
[[ -v ref ]] && err_exit '$ref should be unset'
ref=x
[[ $ref == 3 ]] || err_exit "\$ref is $ref, it should be 3"
function foobar
{
typeset fvar=()
typeset -n ref=fvar.foo
ref=ok
print -r $ref
}
[[ $(foobar) == ok ]] 2> /dev/null || err_exit 'nameref in function not creating variable in proper scope'
function foobar
{
nameref doc=docs
nameref bar=doc.num
[[ $bar == 2 ]] || err_exit 'nameref scoping error'
}
docs=(num=2)
foobar
typeset +n x y
unset x y
typeset -A x
x[a]=(b=c)
typeset -n y=x[a]
[[ ${!y.@} == 'x[a].b' ]] || err_exit 'reference to array element not expanded with ${!y.@}'
typeset +n v
v=()
k=a.b.c/d
command typeset -n n=v.${k//['./']/_} 2> /dev/null || err_exit 'patterns with quotes not handled correctly with name reference assignment'
typeset _n sp
nameref sp=addrsp
sp[14]=( size=1 )
[[ -v sp[19] ]] && err_exit '[[ -v sp[19] ]] where sp is a nameref should not be set'
function fun2
{
nameref var=$1
var.foo=bar
}
function fun1
{
compound -S container
fun2 container
[[ $container == *foo=bar* ]] || err_exit 'name references to static compound variables in parent scope not working'
}
fun1
function fun2
{
nameref var=$1
var.foo=bar
}
typeset -T container_t=(
typeset foo
)
function fun1
{
container_t -S container
fun2 container
[[ $container == *foo=bar* ]] || err_exit 'name references to static type variables in parent scope not working'
}
fun1
function fun2
{
nameref var=$1
nameref node=var.foo
node=bar
}
function fun3
{
fun2 container #2> /dev/null
}
compound container
fun3
[[ $container == *foo=bar* ]] || err_exit 'name reference to a name reference variable in a function not working'
typeset -A x=( [a]=1 )
nameref c=x[h]
[[ -v x[h] ]] && err_exit 'creating reference to non-existant associative array element causes element to get added'
unset a
function x
{
nameref a=a
(( $# > 0 )) && typeset -A a
a[a b]=${1-99} # this was cauing a syntax on the second call
}
x 7
x 2> /dev/null
[[ ${a[a b]} == 99 ]] || err_exit 'nameref not handling subscript correctly'
nameref sizes=baz
typeset -A -i sizes
sizes[bar]=1
[[ ${sizes[*]} == 1 ]] || err_exit 'adding -Ai attribute to name referenced variable not working'
$SHELL 2> /dev/null -c 'nameref foo=bar; typeset -A foo; (( (x=foo[a])==0 ))' || err_exit 'references inside arithmetic expressions not working'
:
unset ar z
integer -a ar
nameref z=ar[0]
(( z[2]=3))
[[ ${ar[0][2]} == 3 ]] || err_exit "\${ar[0][2]} is '${ar[0][2]}' but should be 3"
(( ar[0][2] == 3 )) || err_exit "ar[0][2] is '${ar[0][2]}' but should be 3"
unset c x
typeset +n c x
compound c=( typeset -a x )
nameref x=c.x
x[4]=1
[[ ${ typeset -p c.x ;} == *-C* ]] && err_exit 'c.x should not have -C attributes'
{ $SHELL 2> /dev/null <<- \EOF
typeset -T xxx_t=(
float x=1 y=2
typeset name=abc
)
xxx_t x
nameref r=x.y
[[ $r == 2 ]] || exit 1
unset x
[[ ${!r} == .deleted ]] || exit 2
EOF
} 2> /dev/null #|| print -u2 bad
exitval=$?
if [[ $(kill -l $exitval) == SEGV ]]
then print -u2 'name reference to unset type instance causes segmentation violation'
else if((exitval))
then print -u2 'name reference to unset type instance not redirected to .deleted'
fi
fi
typeset +n nr
unset c nr
compound c
compound -A c.a
nameref nr=c.a[hello]
[[ ${!nr} == "c.a[hello]" ]] || err_exit 'name reference nr to unset associative array instance does not expand ${!nr} correctly.'
typeset +n nr
compound -a c.b
nameref nr=c.b[2]
[[ ${!nr} == "c.b[2]" ]] || err_exit 'name reference nr to unset indexed array instance does not expand ${!nr} correctly.'
typeset +n a b
unset a b
typeset -n a=ls[0] b=ls[1]
read line << \!
3 4
!
set -A ls -- $line
[[ $a == 3 ]] || err_exit 'name reference to ls[0] when ls is not an array fails'
$SHELL 2> /dev/null <<-\EOF || err_exit 'nameref to array element fails'
set -o errexit
function bf {
nameref treename=$1
nodepath="treename" ;
nameref x="$nodepath"
compound -A x.nodes
nameref node=treename.nodes[4]
node=()
typeset +p node.elements
}
compound c
bf c
EOF
function add_compound
{
nameref arr=$1
arr[34]+=( float val=1.1 )
}
compound -a rootcpv
nameref mycpv=rootcpv[4][8][16][32][64]
compound -a mycpv.myindexedcompoundarray
add_compound mycpv.myindexedcompoundarray
(( mycpv.myindexedcompoundarray[34].val == 1.1 )) || err_exit 'nameref scoping error'
function add_file_to_tree
{
nameref node=$1
compound -A node.elements
node.elements[/]=(filepath=foobar)
}
function main
{
compound filetree
add_file_to_tree filetree
}
main 2> /dev/null
[[ $? == 0 ]] || err_exit 'nameref binding to calling function compound variable failed'
unset l
typeset -a -C l
printf "( typeset -a ar=( 1\n2\n3\n) b=1 )\n" | read -C l[4][6]
exp=$(print -v l)
unset l
typeset -a -C l
nameref l4=l[4]
printf "( typeset -a ar=( 1\n2\n3\n) b=1 )\n" | read -C l4[6]
[[ $(print -v l) == "$exp" ]] || err_exit 'nameref l4=l[4] not working'
unset l
typeset -a -C l
nameref l46=l[4][6]
printf "( typeset -a ar=( 1\n2\n3\n) b=1 )\n" | read -C l46
[[ $(print -v l) == "$exp" ]] || err_exit 'nameref l46=l[4][6] not working'
exp=$'(\n\t[4]=(\n\t\ttypeset -a ar=(\n\t\t\t1\n\t\t\t2\n\t\t)\n\t\tb=1\n\t)\n)'
unset l
typeset +n l4
typeset -a -C l
nameref l4=l[4]
printf "( typeset -a ar=( 1\n2\n) b=1 )\n" | read -C l4
[[ $(print -v l) == "$exp" ]] || err_exit 'nameref l4=l[4] not working with indexed array read'
unset l
typeset +n l4
typeset -A -C l
nameref l4=l[4]
printf "( typeset -a ar=( 1\n2\n) b=1 )\n" | read -C l4
[[ $(print -v l) == "$exp" ]] || err_exit 'nameref l4=l[4] not working with associative array read'
exp=$'(\n\t[9]=(\n\t\tfish=4\n\t)\n)'
function add_eval
{
nameref pos=$1
source /dev/stdin <<<"$2"
typeset -m pos=addvar
}
function do_local_plain
{
compound -A local_tree
add_eval local_tree[9].fish "typeset -i addvar=4"
[[ $(print -v local_tree) == "$exp" ]] || err_exit 'do_local_plain failed'
}
function do_global_throughnameref
{
nameref tr=global_tree
add_eval tr[9].fish "typeset -i addvar=4"
[[ $(print -v tr) == "$exp" ]] || err_exit 'do_global_throughnameref failed'
}
function do_local_throughnameref
{
compound -A local_tree
nameref tr=local_tree
add_eval tr[9].fish "typeset -i addvar=4"
[[ $(print -v tr) == "$exp" ]] || err_exit 'do_local_throughnameref failed'
}
compound -A global_tree
do_global_throughnameref
do_local_throughnameref
do_local_plain
unset ar
compound -a ar
function read_c
{
nameref v=$1
read -C v
}
print "( typeset -i x=36 ) " | read_c ar[5][9][2]
exp=$'(\n\t[5]=(\n\t\t[9]=(\n\t\t\t[2]=(\n\t\t\t\ttypeset -i x=36\n\t\t\t)\n\t\t)\n\t)\n)'
[[ $(print -v ar) == "$exp" ]] || err_exit 'read into nameref of global array instance from within a function fails'
function read_c
{
nameref v=$1
read -C v
}
function main
{
compound -a ar
nameref nar=ar
print "( typeset -i x=36 ) " | read_c nar[5][9][2]
exp=$'(\n\t[5]=(\n\t\t[9]=(\n\t\t\t[2]=(\n\t\t\t\ttypeset -i x=36\n\t\t\t)\n\t\t)\n\t)\n)'
[[ $(print -v nar) == "$exp" ]] || err_exit 'read from a nameref variable from calling scope fails'
}
main
function rf2
{
nameref val=$1
read -C val
}
function rf
{
nameref val=$1
rf2 val
}
function main
{
compound c
typeset -A -C c.l
nameref l4=c.l[4]
printf "( typeset -a ar=( 1\n2\n3\n) b=1 )\n" | rf l4
exp=$'(\n\ttypeset -C -A l=(\n\t\t[4]=(\n\t\t\ttypeset -a ar=(\n\t\t\t\t1\n\t\t\t\t2\n\t\t\t\t3\n\t\t\t)\n\t\t\tb=1\n\t\t)\n\t)\n)'
[[ $(print -v c) == "$exp" ]] || err_exit 'read -C with nameref to array element fails'
}
main
# bug reported by ek
cfg=( alarms=(type=3))
function a
{
typeset -n y=$1
print -- ${y.type}
}
function b
{
a $1
}
[[ $(a cfg.alarms) == 3 ]] || err_exit "nameref scoping error in function"
[[ $(b cfg.alarms) == 3 ]] || err_exit "nameref scoping error in nested function"
exit $((Errors<125?Errors:125))
|