summary refs log tree commit diff stats
path: root/printtokens.lua
blob: 62e8fd94195dfd7f84fa475468e1d79a359ff523 (plain) (blame)
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
--[[
    This file is part of luatokens.lua - pure-Lua Lua tokenizer
    Copyright (C) 2019  Soni L.

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.

    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.
--]]

local parser = require "parser"

-- CLI argument rules
local defs = parser.selfify({})
defs['-'] = function(state, token)
    if state.filename then
        error("Must specify only one filename")
    end
    state.filename = true
    state.file = io.stdin
    return "self"
end
defs[parser.FALLBACK] = function(state, token)
    if state.filename then
        error("Must specify only one filename")
    end
    state.filename = token
    state.file, state.err = io.open(state.filename, "r")
    return "self"
end
defs[parser.EOZ] = function(state, token)
    if not state.file then
        error((state.filename and (state.err or "") or "No file specified") )
    end
    return {}
end
defs[-1] = function(state, token, rule)
    if token ~= parser.EOZ and token:sub(1,1) == "-" and not rule then
        error("Unknown option: " .. token)
    end
end
defs['--'] = parser.selfify({[parser.FALLBACK] = defs[parser.FALLBACK], [parser.EOZ] = defs[parser.EOZ]})

local state = parser.parse(defs, arg)
local luatokens = require "luatokens"
local file = state.file
local tokens = luatokens.defs
local state, err, etoken, estate = parser.parse(tokens, function() return file:read(8192) end)
if state then
    for i,v in ipairs(state) do
        v = luatokens.reverse_keywords[v] or luatokens.reverse_tokens[v] or v
        print(i, v) -- TODO formatting
    end
else
    print("Parse error")
end