mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-17 16:38:54 +00:00
Phase 4 of plans/exit.md: the aux/terminal sub-entrypoints. pkg/auxents and
pkg/terminals are now os.Exit-free; even the dispatchers return exit codes
instead of exiting.
- auxents.Dispatch returns (handled bool, exitCode int); entrypoint.Main --
the one sanctioned exit point -- exits with the code.
- terminals.Dispatch returns an exit code; the climain caller wraps it in a
lib.ExitRequest, which also retires the 'terminal did not exit the process'
panic.
- Usage functions (hex, unhex, lecat, termcvt, repl, script, regtest) no
longer take an exitCode parameter and exit; call sites print usage and
return the code explicitly.
- Inner I/O helpers (hexDumpFile, unhexFile, lecatFile, termcvtFile) return
errors; each sub-main prints 'mlr {verb}: ...' as before and returns 1.
lecatFile formerly looped forever on a non-EOF read error; it now returns
the error.
- The regtest directory walk (Execute / executeSinglePath /
executeSingleDirectory / hasCaseSubdirectories) plumbs errors up to
RegTestMain; regression_test.go updated for the new Execute signature.
Stderr messages and exit codes are unchanged across mlr aux-list, hex, unhex,
lecat, termcvt, help, version, repl, script, and regtest surfaces (checked by
hand); all 4779 regression cases pass; make lint is clean; docs rebuild with
zero churn.
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
177 lines
4.6 KiB
Go
177 lines
4.6 KiB
Go
// Entry point for mlr script: executes a Miller DSL script with next()-driven
|
|
// record iteration. No prompt, no REPL. Script from -f or -e, data from
|
|
// filenames or stdin.
|
|
//
|
|
// Example:
|
|
//
|
|
// mlr script -f sum.mlr data.csv
|
|
// mlr script -e '@sum=0; while(next()){@sum+=$x}; print @sum' --csv data.csv
|
|
|
|
package script
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"path"
|
|
"strings"
|
|
|
|
"github.com/johnkerl/miller/v6/pkg/cli"
|
|
"github.com/johnkerl/miller/v6/pkg/lib"
|
|
)
|
|
|
|
func scriptUsage(verbName string, o *os.File) {
|
|
exeName := path.Base(os.Args[0])
|
|
fmt.Fprintf(o, "Usage: %s %s [options] -f {script file} | -e {expression} [zero or more data-file names]\n", exeName, verbName)
|
|
fmt.Fprint(o,
|
|
`-f {file} Load DSL script from file. If file is a directory, load all *.mlr files.
|
|
-e {expression} DSL script from command line. May be combined with -f.
|
|
|
|
--load {file} Preload DSL before script (e.g. function library).
|
|
--mload {files} Like --load but multiple files. Use -- to terminate list.
|
|
|
|
-w Show warnings about uninitialized variables.
|
|
-z Strict mode.
|
|
|
|
-h|--help Show this message.
|
|
|
|
Or any --icsv, --ojson, etc. reader/writer options.
|
|
|
|
Data-file names (or stdin if none) are the record input stream.
|
|
`)
|
|
}
|
|
|
|
func ScriptMain(args []string) int {
|
|
scriptName := args[0]
|
|
argc := len(args)
|
|
argi := 1
|
|
|
|
doWarnings := false
|
|
strictMode := false
|
|
options := cli.DefaultOptions()
|
|
var dslStrings []string
|
|
haveDSLStrings := false
|
|
|
|
for argi < argc {
|
|
if !strings.HasPrefix(args[argi], "-") {
|
|
break
|
|
}
|
|
|
|
if args[argi] == "-h" || args[argi] == "--help" {
|
|
scriptUsage(scriptName, os.Stdout)
|
|
return 0
|
|
} else if args[argi] == "-w" {
|
|
doWarnings = true
|
|
argi++
|
|
} else if args[argi] == "-z" {
|
|
strictMode = true
|
|
argi++
|
|
} else if args[argi] == "-f" {
|
|
if argc-argi < 2 {
|
|
scriptUsage(scriptName, os.Stderr)
|
|
return 1
|
|
}
|
|
argi++
|
|
filename, err := cli.VerbGetStringArg("script", "-f", args, &argi, argc)
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "mlr: %v\n", err)
|
|
return 1
|
|
}
|
|
theseStrings, err := lib.LoadStringsFromFileOrDir(filename, ".mlr")
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "mlr script: cannot load script from \"%s\": %v\n", filename, err)
|
|
return 1
|
|
}
|
|
dslStrings = append(dslStrings, theseStrings...)
|
|
haveDSLStrings = true
|
|
} else if args[argi] == "-e" {
|
|
if argc-argi < 2 {
|
|
scriptUsage(scriptName, os.Stderr)
|
|
return 1
|
|
}
|
|
argi++
|
|
expr, err := cli.VerbGetStringArg("script", "-e", args, &argi, argc)
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "mlr: %v\n", err)
|
|
return 1
|
|
}
|
|
dslStrings = append(dslStrings, expr)
|
|
haveDSLStrings = true
|
|
} else if args[argi] == "--load" {
|
|
if argc-argi < 2 {
|
|
scriptUsage(scriptName, os.Stderr)
|
|
return 1
|
|
}
|
|
options.DSLPreloadFileNames = append(options.DSLPreloadFileNames, args[argi+1])
|
|
argi += 2
|
|
} else if args[argi] == "--mload" {
|
|
if argc-argi < 2 {
|
|
scriptUsage(scriptName, os.Stderr)
|
|
return 1
|
|
}
|
|
argi++
|
|
for argi < argc && args[argi] != "--" {
|
|
options.DSLPreloadFileNames = append(options.DSLPreloadFileNames, args[argi])
|
|
argi++
|
|
}
|
|
if argi < argc && args[argi] == "--" {
|
|
argi++
|
|
}
|
|
} else if handled, flagErr := cli.FLAG_TABLE.Parse(args, argc, &argi, options); flagErr != nil {
|
|
var exitRequest *lib.ExitRequest
|
|
if errors.As(flagErr, &exitRequest) {
|
|
return exitRequest.Code
|
|
}
|
|
fmt.Fprintf(os.Stderr, "%v\n", flagErr)
|
|
return 1
|
|
} else if handled {
|
|
} else {
|
|
scriptUsage(scriptName, os.Stderr)
|
|
return 1
|
|
}
|
|
}
|
|
|
|
if !haveDSLStrings {
|
|
fmt.Fprintf(os.Stderr, "mlr script: -f or -e is required\n")
|
|
scriptUsage(scriptName, os.Stderr)
|
|
return 1
|
|
}
|
|
|
|
if err := cli.FinalizeReaderOptions(&options.ReaderOptions); err != nil {
|
|
fmt.Fprintf(os.Stderr, "mlr %s: %v\n", scriptName, err)
|
|
return 1
|
|
}
|
|
if err := cli.FinalizeWriterOptions(&options.WriterOptions); err != nil {
|
|
fmt.Fprintf(os.Stderr, "mlr %s: %v\n", scriptName, err)
|
|
return 1
|
|
}
|
|
options.WriterOptions.AutoFlatten = cli.DecideFinalFlatten(&options.WriterOptions)
|
|
options.WriterOptions.AutoUnflatten = cli.DecideFinalUnflatten(options, [][]string{})
|
|
|
|
filenames := args[argi:]
|
|
|
|
scr, err := NewScript(options, doWarnings, strictMode, dslStrings)
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "mlr script: %v\n", err)
|
|
return 1
|
|
}
|
|
|
|
scr.openFiles(filenames)
|
|
err = scr.run()
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "mlr script: %v\n", err)
|
|
return 1
|
|
}
|
|
|
|
err = scr.bufferedRecordOutputStream.Flush()
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "mlr script: %v\n", err)
|
|
return 1
|
|
}
|
|
err = scr.closeBufferedOutputStream()
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "mlr script: %v\n", err)
|
|
return 1
|
|
}
|
|
return 0
|
|
}
|