summaryrefslogtreecommitdiff
path: root/src/file-templates/scriptlee.lua
blob: 75da9405b19435b81e8bdc59e62fe3f664b30f47 (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

local objectSeal = assert(require("scriptlee").objectSeal)

local inn, out, log = io.stdin, io.stdout, io.stderr
local mod = {}


function mod.getExports()return{
    --doWhatever = mod.doWhatever,
}end


function mod.printHelp()
    out:write("\n"
        .."  TODO write this help page\n"
        .."\n"
        .."  Options:\n"
        .."\n")
end


function mod.parseArgs( app )
    local positionalArgNr = 0
    local iA = 0
    while true do iA = iA +1
        local arg = _ENV.arg[iA]
        if not arg then
            break
        elseif arg == "--help" then
            mod.printHelp() return -1
        elseif not arg:find("^%-%-") then
            positionalArgNr = positionalArgNr + 1
            if false then
            --elseif positionalArgNr == 1 then
            --    app.whatever = arg
            else
                log:write("Unexpected arg: ".. arg .."\n")return -1
            end
        else
            log:write("Unexpected arg: ".. arg .."\n")return -1
        end
    end
    if not app.whatever then log:write("TODO write errmsg here\n")return -1 end
    return 0
end


function mod.run( app )
    log:write("[INFO ] TODO impl what the prog should do\n")
end


function mod.main()
    local app = objectSeal{
        whatever = false,
    }
    if mod.parseArgs(app) ~= 0 then os.exit(1) end
    mod.run(app)
end


if debug.getinfo(3)then return mod.getExports()else mod.main()end