2018-04-17 14:18:23 -07:00
|
|
|
-- This file contains the datastructures used to represent parsed Nomsu syntax trees,
|
|
|
|
-- as well as the logic for converting them to Lua code.
|
|
|
|
{:insert, :remove, :concat} = table
|
2018-06-12 15:12:27 -07:00
|
|
|
{:Source} = require "code_obj"
|
2018-06-18 15:44:29 -07:00
|
|
|
unpack or= table.unpack
|
2018-04-17 14:18:23 -07:00
|
|
|
|
2018-06-12 15:12:27 -07:00
|
|
|
AST = {}
|
2018-06-18 18:10:59 -07:00
|
|
|
AST.is_syntax_tree = (n, t=nil)->
|
2018-09-28 22:15:06 -07:00
|
|
|
type(n) == 'table' and getmetatable(n) and getmetatable(n).__type == "Syntax Tree" and (t == nil or n.type == t)
|
2018-04-17 14:18:23 -07:00
|
|
|
|
2018-09-18 19:48:58 -07:00
|
|
|
as_lua = =>
|
|
|
|
if type(@) == 'number'
|
|
|
|
return tostring(@)
|
|
|
|
if mt = getmetatable(@)
|
|
|
|
if _as_lua = mt.as_lua
|
|
|
|
return _as_lua(@)
|
|
|
|
error("Not supported: #{@}")
|
|
|
|
|
2018-06-13 13:23:24 -07:00
|
|
|
types = {"Number", "Var", "Block", "EscapedNomsu", "Text", "List", "Dict", "DictEntry",
|
2018-09-12 15:31:59 -07:00
|
|
|
"IndexChain", "Action", "FileChunks", "Error", "Comment"}
|
2018-06-13 13:23:24 -07:00
|
|
|
for name in *types
|
|
|
|
cls = {}
|
2018-06-12 15:12:27 -07:00
|
|
|
with cls
|
2018-06-12 18:04:18 -07:00
|
|
|
.__class = cls
|
2018-06-13 13:23:24 -07:00
|
|
|
.__index = cls
|
2018-06-12 18:04:18 -07:00
|
|
|
.__name = name
|
2018-06-13 13:23:24 -07:00
|
|
|
.type = name
|
2018-09-28 22:15:06 -07:00
|
|
|
.__type = "Syntax Tree"
|
2018-06-12 15:12:27 -07:00
|
|
|
.is_instance = (x)=> getmetatable(x) == @
|
2018-09-18 19:48:58 -07:00
|
|
|
.__tostring = =>
|
|
|
|
bits = [tostring(b) for b in *@]
|
|
|
|
for k,v in pairs(@)
|
|
|
|
unless bits[k]
|
|
|
|
table.insert(bits, "[ #{tostring(k)}]=#{tostring(v)}")
|
|
|
|
return "#{@type}{#{table.concat(bits, ", ")}}"
|
|
|
|
.as_lua = =>
|
|
|
|
bits = [as_lua(b) for b in *@]
|
|
|
|
for k,v in pairs(@)
|
|
|
|
unless bits[k]
|
|
|
|
table.insert(bits, "[ #{as_lua(k)}]=#{as_lua(v)}")
|
|
|
|
return "#{@type}{#{table.concat(bits, ", ")}}"
|
2018-09-14 19:17:09 -07:00
|
|
|
.source_code_for_tree = setmetatable({}, {__index:(t)=>
|
|
|
|
s = t.source
|
|
|
|
Files = require 'files'
|
|
|
|
f = Files.read(s.filename)
|
|
|
|
return f
|
|
|
|
})
|
2018-09-12 15:31:59 -07:00
|
|
|
.get_source_code = => @source_code_for_tree[@]
|
2018-06-12 15:12:27 -07:00
|
|
|
.map = (fn)=>
|
2018-07-15 19:41:22 -07:00
|
|
|
replacement = fn(@)
|
2018-07-17 14:12:11 -07:00
|
|
|
if replacement == false then return nil
|
|
|
|
if replacement
|
2018-08-28 15:08:00 -07:00
|
|
|
-- Clone the replacement, so we can give it a proper source/comments
|
|
|
|
if AST.is_syntax_tree(replacement)
|
|
|
|
replacement = setmetatable {k,v for k,v in pairs replacement}, getmetatable(replacement)
|
|
|
|
replacement.source = @source
|
|
|
|
replacement.comments = {unpack(@comments)} if @comments
|
2018-08-30 14:06:41 -07:00
|
|
|
if init = replacement.__init then init(replacement)
|
2018-07-17 14:12:11 -07:00
|
|
|
else
|
2018-08-28 15:08:00 -07:00
|
|
|
replacement = {source:@source, comments:@comments and {unpack(@comments)}}
|
2018-07-17 14:12:11 -07:00
|
|
|
changes = false
|
2018-08-28 15:08:00 -07:00
|
|
|
for k,v in pairs(@)
|
|
|
|
replacement[k] = v
|
2018-07-17 14:12:11 -07:00
|
|
|
if AST.is_syntax_tree(v)
|
|
|
|
r = v\map(fn)
|
|
|
|
continue if r == v or r == nil
|
|
|
|
changes = true
|
2018-08-28 15:08:00 -07:00
|
|
|
replacement[k] = r
|
2018-07-17 14:12:11 -07:00
|
|
|
return @ unless changes
|
2018-08-28 15:08:00 -07:00
|
|
|
replacement = setmetatable replacement, getmetatable(@)
|
2018-08-30 14:06:41 -07:00
|
|
|
if init = replacement.__init then init(replacement)
|
2018-07-17 14:12:11 -07:00
|
|
|
return replacement
|
2018-07-22 13:44:00 -07:00
|
|
|
.__eq = (other)=>
|
|
|
|
return false if type(@) != type(other) or #@ != #other or getmetatable(@) != getmetatable(other)
|
|
|
|
for i=1,#@
|
|
|
|
return false if @[i] != other[i]
|
2018-08-28 15:08:00 -07:00
|
|
|
return false if @target != other.target
|
2018-07-22 13:44:00 -07:00
|
|
|
return true
|
2018-06-12 15:12:27 -07:00
|
|
|
|
|
|
|
AST[name] = setmetatable cls,
|
2018-08-27 13:38:58 -07:00
|
|
|
__tostring: => @__name
|
2018-08-28 15:08:00 -07:00
|
|
|
__call: (t)=>
|
|
|
|
if type(t.source) == 'string'
|
|
|
|
t.source = Source\from_string(t.source)
|
|
|
|
else
|
|
|
|
assert(Source\is_instance(t.source))
|
|
|
|
setmetatable(t, @)
|
2018-08-30 14:06:41 -07:00
|
|
|
if init = t.__init then init(t)
|
2018-08-28 15:08:00 -07:00
|
|
|
return t
|
2018-04-24 20:16:46 -07:00
|
|
|
|
2018-06-13 13:23:24 -07:00
|
|
|
AST.Action.__init = =>
|
2018-08-28 15:08:00 -07:00
|
|
|
stub_bits = {}
|
|
|
|
arg_i = 1
|
|
|
|
for a in *@
|
|
|
|
if type(a) == 'string'
|
|
|
|
stub_bits[#stub_bits+1] = a
|
|
|
|
else
|
|
|
|
stub_bits[#stub_bits+1] = tostring(arg_i)
|
|
|
|
arg_i += 1
|
2018-06-13 13:23:24 -07:00
|
|
|
@stub = concat stub_bits, " "
|
2018-04-24 20:16:46 -07:00
|
|
|
|
2018-06-14 21:59:25 -07:00
|
|
|
AST.Action.get_args = =>
|
|
|
|
[tok for tok in *@ when type(tok) != 'string']
|
|
|
|
|
2018-06-12 15:12:27 -07:00
|
|
|
return AST
|