File: runlua

package info (click to toggle)
lua-cqueues 20161214-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,672 kB
  • ctags: 3,228
  • sloc: ansic: 20,232; sh: 2,959; makefile: 24
file content (825 lines) | stat: -rwxr-xr-x 20,422 bytes parent folder | download | duplicates (4)
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
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
#!/bin/sh
#
# Copyright (C) 2015-2016 William Ahern
#
# 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.
# ----------------------------------------------------------------------------
# DESCRIPTION
#
# runlua is a POSIX shell script for locating and invoking specific Lua
# interpreter versions. For example, the environment's Lua 5.1 interpreter
# might be named lua, lua5.1, lua51, luajit, luajit2.0.2, etc. runlua
# automates this difficult task in a safe, portable manner. runlua is
# regularly tested on Linux, OS X, Solaris, AIX, FreeBSD, NetBSD, and
# OpenBSD. And runlua safely handles all special characters encountered in
# option arguments, directory and command paths, and shell variables.
#
# To execute a simple statement in either a Lua 5.2 or 5.3 interpreter:
#
#   runlua -r5.2-5.3 -e "print(_VERSION)"
#
# The command-line options to runlua are a superset of the standard Lua
# interpreter. Run `runlua -h` for a description of each option.
#
# Shebang (#!) Execution
#
# In addition to explicit invocation, runlua supports two modes of shebang
# execution:
#
#   #!/path/to/runlua -r5.2
#   print"running Lua code!"
#
# and
#
#   #!/bin/sh
#   _=[[
#     echo "running shell code!"
#     exec runlua -r5.2 "$0" "$@"
#   ]]
#   print "running Lua code!"
#
# Only Linux and OS X support the first mode. The second is portable in
# practice--although POSIX does not require sh to be located at
# /bin/sh, it nonetheless can be invoked from that location on all the
# environments I've tested. And POSIX effectively requires shells to parse
# and execute scripts command-by-command, so no shell should read past the
# exec line.
#
# Also, the first mode requires a fully qualified path name, whereas with
# the second mode the shell code in the header could locate runlua
# dynamically. For example, a regression or example script in a project
# repository might have a header like
#
#   #!/bin/sh
#   _=[[
#     PATH="${PATH}:$(dirname "$0")/../bin"
#     exec "$(dirname "$0")/../contrib/runlua" "$0" "$@"
#   ]]
#   local mymodule = require"mymodule"
#   -- ...
#
# which will work regardless of the current working directory when invoking
# the script.
# ----------------------------------------------------------------------------
# PORTING NOTES
#
# unset) On NetBSD (confirmed up to 6.1.5) unset NAME will exit with a
#   failure status if no such variable is set. If errexit (set -e) is
#   enabled then the shell will exit. See NetBSD PR 49595.
#
# #!) Linux and OS X permit recursive shebang execution, which some users
#   might wish to take advantage of. However, neither will field-split
#   interpreter arguments, instead passing the remainder of the shebang line
#   as a single positional argument. So we manually field-split any first
#   argument.
#
#   Solaris (confirmed 11.1), AIX (confirmed 7.1), OpenBSD (confirmed 5.5),
#   NetBSD (confirmed 5.1.2, 6.1.1), and FreeBSD (confirmed 9.0) will search
#   for the interpreter recursively, following shebang interpreter paths
#   until a binary interpreter is found. But they will not add each
#   intervening interpreter path to the positional argument list. If you
#   don't know the paths you cannot execute them recursively.
#
# $@) On some BSD shells (confirmed NetBSD 5.1.2, 6.1.1, OpenBSD 5.5)
#   expansion of an empty $@ will wrongly trigger an error if nounset (set
#   -u) is in effect.
#
# noclobber) On some BSD shells (confirmed NetBSD 5.1.2, 6.1.1) the
#   noclobber (set -C) option will wrongly cause redirection to /dev/null
#   using the redirect operator (">") to fail. Use the appending redirect
#   operator (">>") as a workaround.
#
# trap EXIT) ksh88 (confirmed AIX 7.1) wrongly executes an EXIT trap when
#   the calling function returns, rather than when the shell exits. Note
#   ksh93 does not exhibit this bug.
#
# $@ and null IFS) ksh88 (confirmed AIX 7.1) pdksh (confirmed pdksh 5.2.14)
#   and pdksh derivatives (confirmed OpenBSD 5.6 ksh, NetBSD 6.1 ksh) will
#   expand $@ as a single field if IFS is null (set but empty). As a
#   workaround we set IFS to a control character when juggling paths. ksh93,
#   bash, and ash correctly expand $@ when IFS is null.
#
set -e # strict error
set -u # don't expand unbound variable
set -f # disable pathname expansion
set -C # noclobber

unset IFS
"unalias" -a

_LC_ALL="${LC_ALL+X}${LC_ALL-}"
export LC_ALL=C

: ${PATH:=$(command -p getconf PATH)}
: ${TMPDIR:=/tmp}

: ${RUNLUA_E:=}
: ${RUNLUA_R:=1-}
: ${RUNLUA_J:=0-}
: ${RUNLUA_M:=6}
: ${RUNLUA_S:=}
: ${RUNLUA_T:=}
: ${RUNLUA_D:=}
: ${RUNLUA_P:=}

MYVERSION=20160816
MYVENDOR="william@25thandClement.com"

TMPWD=

warn() {
	if [ "${RUNLUA_D#!}" -gt 0 -a -t 2 ]; then
		printf "\033[0;31m%s: %.0s${1}\033[0m\n" "${0##*/}" "$@" >&2
	else
		printf "%s: %.0s${1}\n" "${0##*/}" "$@" >&2
	fi
}

panic() {
	warn "$@"
	exit 1
}

debug() {
	if [ "${RUNLUA_D#!}" -gt 0 ]; then
		printf "%s: %.0s${1}\n" "${0##*/}" "$@" >&2
	fi
}

dump() {
	if [ "${RUNLUA_D#!}" -gt 1 ]; then
		printf "%s: %.0s${1}\n" "${0##*/}" "$@" >&2
	fi
}

# see porting note "$@ and null IFS"
null_ifs() {
	IFS=
	set -- x y z
	set -- "$@"
	unset IFS
	[ $# -gt 1 ] || printf "\2"
}

# glob PATTERN [MAXDEPTH] [EXEC-COMMAND] [INTERNAL:GLOB-COUNT]
#
# Recursive tree descending pathname generator combining features of glob(3)
# and find(3).
#
glob() {
        glob_N="${4:-0}"

        IFS=
        set +f
        for glob_F in ${1}; do
                [ -e "${glob_F}" ] || continue
                if eval "${3:-printf '%s\\n'} \"\${glob_F}\""; then
                        glob_N=$((${glob_N} + 1))
                fi
        done
        set -f
        unset IFS

        if [ "${2-0}" -gt 0 ]; then
                glob "${1%/*}/*/${1##*/}" "$((${2} - 1))" "${3:-}" "${glob_N}" || :
        fi

        [ "${glob_N}" -gt 0 ]
}

tempnam() {
	printf "%s-%s\n" "${1}" "$(od -An -N8 -tx1 -v /dev/urandom 2>>/dev/null | tr -cd '0123456789abcdef')"
}

# chomp VARIABLE SUFFIX
chomp() {
	chomp_K="${1}"
	chomp_C="${2}"

	eval "chomp_V=\"\${${chomp_K}}\""
	while [ "${chomp_V%${chomp_C}}" != "${chomp_V}" ]; do
		chomp_V="${chomp_V%${chomp_C}}"
	done
	eval "${chomp_K}=\"\${chomp_V}\""
}

# istrue STRING
istrue() {
	case "${1#!}" in
	[TtYy1]*)
		return 0
		;;
	*)
		return 1
		;;
	esac
}

# isinteger STRING
isinteger() {
	I="${1}"

	[ "${#I}" -gt 0 ] || return 1

	while [ "${#I}" -gt 0 ]; do
		[ "${I##[0123456789]}" != "${I}" ] || return 1
		I="${I##[0123456789]}"
	done
}

# isdir PATH
isdir() {
	[ "${#1}" -gt 0 ] && [ -d "${1}" ]
}

# ver2num STRING [MAJOR] [MINOR] [PATCH]
ver2num() {
	M="${2:-0}"
	m="${3:-0}"
	p="${4:-0}"

	IFS="."
	set -- ${1}
	unset IFS

	if isinteger "${1:-}"; then
		M=${1}
	fi

	if isinteger "${2:-}"; then
		m=${2}
	fi

	if isinteger "${3:-}"; then
		p=${3}
	fi

	printf "$((${M} * 10000 + ${m} * 100 + ${p}))\n"
}

num2ver() {
	M=$((${1} / 10000 % 100))
	m=$((${1} / 100 % 100))
	p=$((${1} % 100))
	printf "${M}.${m}.${p}\n"
}

api2num() {
	n="$(ver2num "$@")"
	printf "$((${n} / 100))\n"
}

num2api() {
	printf "$((${1} / 100 % 100)).$((${1} % 100))\n"
}

getapi() {
	if [ -x "${1}" ]; then
		api2num "$(noenv; cdwd; "${1}" -e 'print(string.match(_VERSION, [[[%d.]+]]))' </dev/null 2>>/dev/null || true)"
	fi
}

getrel() {
	if [ -x "${1}" ]; then
		ver2num "$(noenv; cdwd; "${1}" -v </dev/null 2>&1 | sed -ne 's/^Lua[^ ]* \([0-9][0-9\.]*\).*/\1/p' | head -n1)"
	fi
}

trypth() {
	trypth_LUA="${1}"
	shift 1
	for L; do
		dump "testing LD_PRELOAD=\"%s\" %s" "${L}" "${trypth_LUA}"
		# glibc's ld.so ignores LD_PRELOAD errors. It does emit a
		# diagnostic to stderr, so we redirect stderr to stdout so
		# that it corrupts our expected output.
		#
		# NB: musl's ld.so ignores LD_PRELOAD errors, but never
		# issues a diagnostic. There's no way to distinguish success
		# and failure.
		TMP="$(noenv; cdwd; LD_PRELOAD="${L}" "${trypth_LUA}" -e 'print"OK"' </dev/null 2>&1 || true)"
		[ "${TMP}" = "OK" ] && printf "%s\n" "${L}" && return 0
		dump "unable to preload %s (expected 'OK', got '%s')" "${L}" "$(printf "%s" "${TMP}" | tr '\n' ' ')"
	done

	return 1
}

getpth() {
	case "${getpth_UNAME:=$(uname -s)}" in
	Linux)
		# Linux/glibc supports loading libpthread through a DSO, but
		# glibc has several bugs, including a race in libdl.
		#
		# Linux/musl unifies libpthread with libc. But it's a noop
		# to preload libpthread.so.0 so we don't bother trying to
		# distinguish musl.
		set +f
		trypth "${1}" "libpthread.so.0" /lib/*/libpthread.so* /lib/libpthread.so* && return 0
		set -f
		;;
	FreeBSD|NetBSD|OpenBSD)
		# Neither FreeBSD, NetBSD, nor OpenBSD support loading
		# libpthread through a DSO. NetBSD requires a full path.
		set +f
		trypth "${1}" "libpthread.so" /usr/lib/libpthread.so* && return 0
		set -f
		;;
	*BSD*)
		# Assume other BSDs are similar and make a best effort.
		set +f
		trypth "${1}" "libpthread.so" /usr/lib/libpthread.so* && return 0
		set -f

		debug "skipping libpthread preloading (unknown operating system: %s)" "${getpth_UNAME}"
		return 0
		;;
	Darwin)
		# libpthread.dylib integrated with libSystem.dylib
		return 0
		;;
	SunOS)
		# libpthread integrated with libc since Solaris 10
		getpth_V="$(ver2num "$(uname -v)")"
		getpth_M="$(ver2num "10")"
		[ ${getpth_V} -ge ${getpth_M} ] && return 0

		trypth "${1}" "libpthread.so" && return 0
		;;
	oops)
		# for regression testing
		;;
	*)
		debug "skipping libpthread preloading (unknown operating system: %s)" "${getpth_UNAME}"
		return 0
		;;
	esac

	panic "unable to locate libpthread"
}

cdwd() {
	if [ ${#TMPWD} -gt 0 ]; then
		cd "${TMPWD}"
	fi
}

mkwd() {
	if [ -d "/dev" -a ! -w "/dev" ]; then
		TMPWD="/dev"
		debug "reusing /dev as non-writable working directory"
	else
		TMPWD="$(tempnam "${TMPDIR}/${0##*/}")"
		debug "creating non-writable working directory %s" "${TMPWD}"
		mkdir -m0500 "${TMPWD}"
	fi
}

trap "rmwd" EXIT # see portability note "trap EXIT"

rmwd() {
	if [ ${#TMPWD} -gt 0 -a "${TMPWD}" != "/dev" -a -d "${TMPWD}" ]; then
		debug "removing working directory %s" "${TMPWD}"
		rmdir -- "${TMPWD}"
		TMPWD=
	fi
}

# set LUA_API and LUA_PRELOAD if LUA was specified from environment
checklua() {
	case "${LUA_API:-}" in
	[0123456789].[0123456789])
		;;
	*)
		# need absolute path
		if [ "${LUA#*/}" = "${LUA}" ]; then
			LUA="$(command -v "${LUA}" || panic "%s: cannot find path" "${LUA}")"
			debug "using %s" "${LUA}"
		fi
		V="$(getapi "${LUA}")"
		LUA_API="$(num2api ${V:-0})"
		debug "%s API is %s" "${LUA}" "${LUA_API}"
		;;
	esac

	if istrue "${RUNLUA_T}"; then
		if ! istrue "${LUA_PRELOAD+true}"; then
			LUA_PRELOAD="$(getpth "${LUA}")"
			[ -z "${LUA_PRELOAD}" ] || debug "preloading %s" "${LUA_PRELOAD}"
		fi
	fi
}

findlua() {
	if [ -n "${LUA:-}" ]; then
		checklua
		printf "%s\n" "${LUA}"
		return 0
	fi

	mkwd

	TMP="${RUNLUA_R#!}"
	find_API_MIN="$(api2num "${TMP%%[,:-]*}" 1 0)"
	find_API_MAX="$(api2num "${TMP##*[,:-]}" 99 99)"
	TMP="${RUNLUA_R#!}"
	find_REL_MIN="$(ver2num "${TMP%%[,:-]*}" 1 0 0)"
	find_REL_MAX="$(ver2num "${TMP##*[,:-]}" 99 99 99)"
	TMP="${RUNLUA_J#!}"
	find_JIT_MIN="$(ver2num "${TMP%%[,:-]*}" 1 0 0)"
	find_JIT_MAX="$(ver2num "${TMP##*[,:-]}" 99 99 99)"

	found_PATH=
	found_API=0
	found_REL=0

	# leverage shell pathname expansion to locate interpreter by
	# iterating over $PATH directories and letting shell do the search
	IFS=:
	set -- ${PATH}
	unset IFS

	for D; do
		# get abspath because getapi and getrel cd to working directory
		D="$(! cd "${D}" 2>>/dev/null || pwd)"
		[ ${#D} -gt 0 ] || continue

		set -- "false" # see porting note "$@"

		IFS="${NULL_IFS="$(null_ifs)"}"
		set +f
		if [ ! $find_JIT_MIN -gt 0 ]; then # PUC Lua
			set -- "$@" ${D}/lu[a] ${D}/lua5* ${D}/lua-5*
		fi
		if [ $find_JIT_MAX -gt 0 ]; then # LuaJIT
			set -- "$@" ${D}/luajit*
		fi
		set -f
		unset IFS

		for F; do
			[ "${F}" != "false" ] || continue

			dump "testing %s" "${F}"

			# NB: match only a narrow range of basenames so we
			# don't execute something like luatex or lua-tool
			B="${F##*/}"

			# strip pre-release suffix from basename (luajit-2.1.0-alpha)
			B="${B%[._-]alpha*}"
			B="${B%[._-]beta*}"
			B="${B%[._-]dev*}"

			# strip version suffix from basename (lua51,  luajit-2.0.3)
			while [ "${B}" != "${B%%[0123456789._-]}" ]; do
				B="${B%%[0123456789._-]}"
			done

			# skip if basename isn't "lua" or "luajit"
			[ "${B}" = "lua" ] || [ "${B}" = "luajit" ] || continue

			V="$(getapi "${F}")"
			R="$(getrel "${F}")"
			: ${V:=0}
			: ${R:=0}

			debug "%s is version %s (%s API)" "${F}" "$(num2ver "${R}")" "$(num2api "${V}")"

			# does it meet our API range criteria?
			[ ${V} -ge ${find_API_MIN} -a ${V} -le ${find_API_MAX} ] || continue

			# does it meet our release range criteria?
			if [ ${R} -lt ${find_REL_MIN} -o ${R} -gt ${find_REL_MAX} -o ${find_JIT_MIN} -gt 0 ]; then
				# try luajit release range
				[ "${B}" = "luajit" ] || continue
				[ ${R} -ge ${find_JIT_MIN} ] || continue
				[ ${R} -le ${find_JIT_MAX} ] || continue
			fi

			# is it a better fit than what we already found?
			[ ${V} -gt 0 -a ${V} -ge ${found_API} -a ${R} -gt ${found_REL} ] || continue

			# does it work if we preload libpthread?
			if istrue "${RUNLUA_T}"; then
				found_PTH="$(getpth "${F}")"
			else
				found_PTH=""
			fi

			found_PATH="${F}"
			found_API=${V}
			found_REL=${R}
		done
	done

	rmwd

	LUA="${found_PATH}"
	LUA_API="$(num2api "${found_API}")"
	LUA_PRELOAD="${found_PTH-}"

	[ -n "${LUA}" ] || panic "unable to locate Lua interpreter"

	debug "using %s" "${LUA}"
	[ -n "${LUA_PRELOAD}" ] && debug "preloading %s" "${LUA_PRELOAD}"

	printf "%s\n" "${LUA}"
}

# scan_api2key PREFIX VERSION
scan_api2key() {
	case "${2}" in
	5.1)
		printf "%s" "${1}"
		;;
	*)
		printf "%s_%s" "${1}" "$(printf "%s" "${2}" | tr '.' '_')"
		;;
	esac
}

scan_addenv() {
	[ "${#1}" -gt 0 ] || return 0

	addenv_K="$(scan_api2key "${2}" "${3}")"
	debug "adding %s to %s" "${1}" "${addenv_K}"

	# NB: append left to right (see note in scan routine)
	eval "addenv_V=\"\${${addenv_K}:-;;}\""
	addenv_V="${1};${addenv_V#;}"
	eval "export ${addenv_K}=\"\${addenv_V}\""
}

# callback from glob for paths matching */${LUA_API}
scan__add() {
	isdir "${1}" || return 0

	# NB: test in subshell as our glob routine isn't reentrant
	if (glob "${1}/*.lua" ${RUNLUA_M} ":"); then
		scan_addenv "${1}/?.lua" LUA_PATH "${LUA_API}"
	fi

	if (glob "${1}/*.so" ${RUNLUA_M} ":"); then
		scan_addenv "${1}/?.so" LUA_CPATH "${LUA_API}"
	fi
}

scan() {
	# NB: process from right to left and append left to right
	while [ ${#RUNLUA_S} -gt 0 ]; do
		scan_D="${RUNLUA_S##*;}"

		if isdir "${scan_D}"; then
			debug "scanning %s" "${scan_D}"
			glob "${scan_D}/${LUA_API}" "${RUNLUA_M}" scan__add || :
		fi

		RUNLUA_S="${RUNLUA_S%${scan_D}}"
		chomp RUNLUA_S ";"
	done
}

noenv() {
	for F in $(env | sed -ne 's/^\(LUA_C\{0,1\}PATH[_0123456789]*\).*$/\1/p' -e 's/^\(LUA_INIT[_0123456789]*\).*$/\1/p'); do
		unset "$F" || true # see porting note "unset"
	done
}

setopt() {
	setopt_VAR="${1}"
	setopt_NVAL="${2:-}"
	eval "setopt_OVAL=\"\${${setopt_VAR}:-}\""

	# don't set if value prefixed with "!"
	[ "${setopt_OVAL}" = "${setopt_OVAL#!}" ] || return 0

	eval "${setopt_VAR}=\"\${setopt_NVAL}\""
}

usage() {
	cat <<-EOF
	Usage: ${0##*/} [-e:il:vEr:j:Jms:tdpVh] [PATH [...]]
	  -e STRING  execute statement
	  -i         enter interactive mode after executing PATH
	  -l STRING  require package
	  -v         print interpreter version information
	  -E         ignore environment variables
	  -r RANGE   run specific Lua version
	  -j RANGE   run specific LuaJIT version
	  -J         exclude LuaJIT from candidate interpreters
	  -m NUMBER  limit recursion to NUMBER
	  -s PATH    scan directory tree for Lua modules
	  -t         preload POSIX threading library
	  -d         enable debug logging (twice for even more logging)
	  -p         print path of Lua interpreter
	  -V         print runlua version information
	  -h         print this usage message

	Examples:
	  -r5.2.1    only run PUC Lua 5.2.1 interpreter
	  -r5.1      run any Lua 5.1 interpreter, including LuaJIT
	  -r5.2-5.3  run any Lua 5.2 or 5.3 interpreter
	  -r5.2-     run any Lua 5.2 or later interpreter
	  -j2.1      only run LuaJIT 2.1 interpreter

	Environment:
	  RUNLUA_E=BOOLEAN  same as -E if TRUE
	  RUNLUA_R=RANGE    same as -r (use !RANGE to override -r)
	  RUNLUA_J=RANGE    same as -j (use !RANGE to override -j or -J)
	  RUNLUA_M=NUMBER   same as -m
	  RUNLUA_T=BOOLEAN  same as -t if TRUE
	  RUNLUA_D=NUMBER   set debug level (e.g. same -dd if 2)
	  RUNLUA_P=BOOLEAN  same as -p if TRUE

	Examples:
	  RUNLUA_R=5.2 runlua           run any Lua 5.2 interpreter
	  RUNLUA_R=5.3 runlua -r5.2     same as above (-r has higher precedence)
	  RUNLUA_R='!5.3' runlua -r5.2  run any Lua 5.3 interpreter (! overrides -r)

	BNF:
	  <PATH>    ::= <STRING>
	  <RANGE>   ::= <VERSION> | [VERSION] "-" [VERSION]
	  <VERSION> ::= <NUMBER> ["." <NUMBER> ["." <NUMBER>]]
	  <BOOLEAN> ::= <TRUE> | <FALSE>
	  <TRUE>    ::= "yes" | "true" | "1"
	  <FALSE>   ::= "no" | "false" | "0" | ""

	Report bugs to <william@25thandClement.com>
	EOF
}

version() {
	cat <<-EOF
	runlua  $MYVERSION
	vendor  $MYVENDOR
	release $MYVERSION
	EOF
}

#
# Field-split first argument. See porting note "#!".
#
# If we only have one argument than it's either a script path or we're not
# running as a shebang interpreter. If we have zero then we don't want to
# accidentally field-split the script path becaues it might contain spaces.
#
if [ $# -ge 2 ]; then
	TMP="${1}"
	shift 1
	IFS=" "
	set -- ${TMP} "$@"
	unset IFS
fi

ARGC=0
pusharg() {
	eval "ARG${ARGC}=\"\${1}\""
	ARGC=$((${ARGC} + 1))
}

while getopts "e:il:vEr:j:Js:tdpVh" OPTC; do
	case "${OPTC}" in
	e)
		pusharg "-e"
		pusharg "${OPTARG}"
		;;
	i)
		pusharg "-i"
		;;
	l)
		pusharg "-l"
		pusharg "${OPTARG}"
		;;
	v)
		pusharg "-v"
		;;
	E)
		setopt RUNLUA_E yes
		;;
	r)
		setopt RUNLUA_R "${OPTARG}"
		;;
	j)
		setopt RUNLUA_J "${OPTARG}"
		;;
	J)
		setopt RUNLUA_J "0-0"
		;;
	m)
		setopt RUNLUA_M "${OPTARG}"
		;;
	s)
		if [ "${RUNLUA_S}" = "${RUNLUA_S#!}" ]; then
			MAIN_S="${MAIN_S-}${MAIN_S:+;}${OPTARG}"
		fi
		;;
	t)
		setopt RUNLUA_T yes
		;;
	d)
		MAIN_D="$((${MAIN_D:-0} + 1))"
		;;
	p)
		setopt RUNLUA_P yes
		;;
	V)
		version
		exit 0
		;;
	h)
		usage
		exit 0
		;;
	*)
		usage >&2
		exit 1
		;;
	esac
done

shift $((${OPTIND} - 1))

#
# Prepend our argument stack to the positional list.
#
if [ ${ARGC} -gt 0 ]; then
	# first append to our positional list
	I=0
	while [ ${I} -lt ${ARGC} ]; do
		eval "ARG=\"\${ARG${I}}\""

		if [ $# -gt 0 ]; then
			set -- "$@" "${ARG}"
		else
			set -- "${ARG}"
		fi

		I=$(($I + 1))
	done

	# then rotate left
	I=0
	N=$(($# - ${ARGC}))
	while [ ${I} -lt ${N} ]; do
		set -- "$@" "${1}"
		shift 1

		I=$(($I + 1))
	done
fi

RUNLUA_M="${RUNLUA_M#!}"
isinteger "${RUNLUA_M}" || panic "%s: not an integer" "${RUNLUA_M}"

RUNLUA_S="${MAIN_S-}${MAIN_S:+;}${RUNLUA_S#!}"
chomp RUNLUA_S ";"

setopt RUNLUA_D "${MAIN_D:-0}"
isinteger "${RUNLUA_D#!}" || panic "%s: not an integer" "${RUNLUA_D#!}"

if istrue "${RUNLUA_E}"; then
	noenv
fi

findlua >>/dev/null

if istrue "${RUNLUA_P}"; then
	printf "%s\n" "${LUA}"
	exit 0
fi

scan

if [ ${#_LC_ALL} -gt 0 ]; then
	LC_ALL="${_LC_ALL#X}"
else
	unset LC_ALL
fi

if [ -n "${LUA_PRELOAD-}" ]; then
	export LD_PRELOAD="${LD_PRELOAD-}${LD_PRELOAD:+:}${LUA_PRELOAD}"
fi

# see portability note "$@"
if [ $# -gt 0 ]; then
	exec "${LUA}" "$@"
else
	exec "${LUA}"
fi