nomsu/code_obj.moon

257 lines
8.4 KiB
Plaintext
Raw Normal View History

2018-04-11 20:05:12 -07:00
{:insert, :remove, :concat} = table
immutable = require 'immutable'
local Lua, Source
2018-04-11 21:07:13 -07:00
export LINE_STARTS
2018-04-11 20:05:12 -07:00
Source = immutable {"filename","start","stop"}, {
name:"Source"
2018-04-13 14:54:35 -07:00
__new: (filename, start, stop)=>
2018-04-20 16:23:53 -07:00
if not start
start, stop = 1, #FILE_CACHE[filename]
2018-05-03 22:33:44 -07:00
if stop then assert(start <= stop+1, "Invalid range: #{start}, #{stop}")
return filename, start, stop
__tostring: =>
if @stop
2018-04-19 17:38:31 -07:00
"\"#{@filename}[#{@start}:#{@stop}]\""
else
2018-04-19 17:38:31 -07:00
"\"#{@filename}[#{@start}]\""
2018-04-11 20:05:12 -07:00
__lt: (other)=>
2018-04-13 14:54:35 -07:00
assert(@filename == other.filename, "Cannot compare sources from different files")
2018-04-11 20:05:12 -07:00
return if @start == other.start
(@stop or @start) < (other.stop or other.start)
2018-04-11 20:05:12 -07:00
else @start < other.start
__le: (other)=>
2018-04-13 14:54:35 -07:00
assert(@filename == other.filename, "Cannot compare sources from different files")
2018-04-11 20:05:12 -07:00
return if @start == other.start
(@stop or @start) <= (other.stop or other.start)
2018-04-11 20:05:12 -07:00
else @start <= other.start
__add: (offset)=>
if type(self) == 'number'
offset, self = self, offset
else assert(type(offset) == 'number', "Cannot add Source and #{type(offset)}")
return Source(@filename, @start+offset, @stop)
sub: (start, stop)=>
2018-04-19 17:23:44 -07:00
start or= 1
assert(start > 0 and (stop == nil or stop > 0), "Negative subscripts not supported")
if not @stop
assert(not stop, "cannot subscript non-range with range")
2018-04-19 17:23:44 -07:00
return Source(@filename, @start + start - 1)
else
2018-04-19 17:23:44 -07:00
stop or= @stop
return Source(@filename, @start + start - 1, @start + stop - 1)
get_text: =>
FILE_CACHE[@filename]\sub(@start,@stop)
2018-04-11 20:05:12 -07:00
get_line_number: =>
-- TODO: do a binary search if this is actually slow, which I doubt
src = FILE_CACHE[@filename]
line_starts = LINE_STARTS[src]
2018-04-11 20:05:12 -07:00
start_line = 1
while (line_starts[start_line+1] or math.huge) <= @start
2018-04-11 20:05:12 -07:00
start_line += 1
stop_line = start_line
while (line_starts[stop_line+1] or math.huge) <= @stop
2018-04-11 20:05:12 -07:00
stop_line += 1
return start_line, stop_line
2018-04-13 14:54:35 -07:00
get_line: => "#{@filename}:#{@get_line_number!}"
2018-04-11 20:05:12 -07:00
get_line_range: =>
2018-04-12 20:39:17 -07:00
start_line, stop_line = @get_line_number!
2018-04-11 20:05:12 -07:00
return if stop_line == start_line
2018-04-13 14:54:35 -07:00
"#{@filename}:#{start_line}"
else "#{@filename}:#{start_line}-#{stop_line}"
2018-04-11 20:05:12 -07:00
}
class Code
2018-04-11 21:07:13 -07:00
new: (@source, ...)=>
@indents = {}
2018-04-18 15:45:58 -07:00
@bits = {...}
2018-04-13 14:54:35 -07:00
if type(@source) == 'string'
2018-04-19 17:38:31 -07:00
filename,start,stop = @source\match("^(.-)%[(%d+):(%d+)%]$")
unless filename
filename,start = @source\match("^(.-)%[(%d+)%]$")
2018-04-18 15:45:58 -07:00
if start or stop
@source = Source(filename, tonumber(start), tonumber(stop))
else
@source = Source(@source, 1, #tostring(self)+1)
2018-04-20 16:23:53 -07:00
assert(@source == nil or Source\is_instance(@source))
indent = 0
for i,b in ipairs @bits
assert(not Source\is_instance(b))
if type(b) == 'string'
if spaces = b\match("\n([ ]*)[^\n]*$")
indent = #spaces
elseif indent != 0
@indents[i] = indent
@current_indent = indent
@__str = nil
sub: (start,stop)=>
-- TODO: implement this better
str = tostring(self)\sub(start,stop)
cls = @__class
2018-04-19 17:23:44 -07:00
return cls(@source\sub(start,stop), str)
append: (...)=>
n = select("#",...)
bits = @bits
for i=1,n
b = select(i, ...)
2018-04-25 16:04:46 -07:00
assert(b != self, "No recursion please.")
bits[#bits+1] = b
if type(b) == 'string'
if spaces = b\match("\n([ ]*)[^\n]*$")
@current_indent = #spaces
elseif @current_indent != 0
@indents[#bits] = @current_indent
@__str = nil
prepend: (...)=>
n = select("#",...)
bits, indents = @bits, @indents
for i=#bits+n,n+1,-1
bits[i] = bits[i-n]
for i=1,n
bits[i] = select(i, ...)
@current_indent = 0
for i,b in ipairs(bits)
2018-04-25 16:04:46 -07:00
assert(b != self, "No recursion please.")
if type(b) == 'string'
if spaces = b\match("\n([ ]*)[^\n]*$")
@current_indent = #spaces
elseif @current_indent != 0
indents[i] = @current_indent
else indents[i] = nil
@__str = nil
class Lua extends Code
new: (...)=>
super ...
2018-04-11 20:05:12 -07:00
@free_vars = {}
@is_value = false
2018-04-20 14:33:49 -07:00
@__str = nil
2018-04-11 20:05:12 -07:00
@Value = (...)->
lua = Lua(...)
lua.is_value = true
return lua
add_free_vars: (vars)=>
2018-04-11 20:05:12 -07:00
seen = {[v]:true for v in *@free_vars}
for var in *vars
if type(var) == 'userdata' and var.type == "Var"
var = tostring(var\as_lua!)
elseif type(var) != 'string'
var = tostring(var)
assert(var\match("^[_a-zA-Z][_a-zA-Z0-9]*$"))
2018-04-11 20:05:12 -07:00
unless seen[var]
@free_vars[#@free_vars+1] = var
seen[var] = true
2018-04-20 14:33:49 -07:00
@__str = nil
2018-04-19 17:23:44 -07:00
remove_free_vars: (vars)=>
2018-04-19 17:23:44 -07:00
removals = {}
for var in *vars
2018-04-19 17:23:44 -07:00
if type(var) == 'userdata' and var.type == "Var"
var = tostring(var\as_lua!)
elseif type(var) != 'string'
var = tostring(var)
assert(var\match("^[_a-zA-Z][_a-zA-Z0-9]*$"))
2018-04-19 17:23:44 -07:00
removals[var] = true
2018-04-20 16:23:53 -07:00
stack = {self}
while #stack > 0
lua, stack[#stack] = stack[#stack], nil
for i=#lua.free_vars,1,-1
if removals[lua.free_vars[i]]
remove lua.free_vars, i
for b in *lua.bits
2018-04-19 17:23:44 -07:00
if type(b) != 'string'
2018-04-20 16:23:53 -07:00
stack[#stack+1] = b
2018-04-20 14:33:49 -07:00
@__str = nil
2018-04-11 20:05:12 -07:00
convert_to_statements: (prefix="", suffix=";")=>
unless @is_value
return
if prefix != ""
@prepend prefix
if suffix != ""
@append suffix
2018-04-11 20:05:12 -07:00
2018-04-19 17:23:44 -07:00
declare_locals: (to_declare=nil)=>
if to_declare == nil
to_declare, seen = {}, {}
gather_from = =>
for var in *@free_vars
unless seen[var]
seen[var] = true
assert(var\match("^[_a-zA-Z][_a-zA-Z0-9]*$"))
2018-04-19 17:23:44 -07:00
to_declare[#to_declare+1] = var
for bit in *@bits
if bit.__class == Lua
gather_from bit
gather_from self
if #to_declare > 0
@remove_free_vars to_declare
@prepend "local #{concat to_declare, ", "};\n"
return to_declare
2018-04-11 20:05:12 -07:00
__tostring: =>
2018-04-20 14:33:49 -07:00
if @__str == nil
buff, indents = {}, @indents
2018-04-20 14:33:49 -07:00
for i,b in ipairs @bits
b = tostring(b)
if indents[i]
b = b\gsub("\n", "\n"..((" ")\rep(indents[i])))
buff[#buff+1] = b
2018-04-20 14:33:49 -07:00
@__str = concat(buff, "")
return @__str
2018-04-11 20:05:12 -07:00
__len: =>
#tostring(self)
2018-04-11 20:05:12 -07:00
make_offset_table: =>
2018-04-11 20:05:12 -07:00
-- Return a mapping from output (lua) character number to input (nomsu) character number
2018-04-20 16:23:53 -07:00
lua_to_nomsu, nomsu_to_lua = {}, {}
2018-04-20 14:33:49 -07:00
walk = (lua, pos)->
for b in *lua.bits
if type(b) == 'string'
2018-04-20 16:23:53 -07:00
if lua.source
lua_to_nomsu[pos] = lua.source.start
nomsu_to_lua[lua.source.start] = pos
else
2018-04-20 16:23:53 -07:00
walk b, pos
pos += #tostring(b)
2018-04-20 14:33:49 -07:00
walk self, 1
2018-04-20 16:23:53 -07:00
return {
nomsu_filename:@source.filename
lua_filename:tostring(@source)..".lua", lua_file:@stringify!
:lua_to_nomsu, :nomsu_to_lua
}
2018-04-11 20:05:12 -07:00
parenthesize: =>
if @is_value
@prepend "("
@append ")"
else
error "Cannot parenthesize lua statements"
2018-04-11 20:05:12 -07:00
class Nomsu extends Code
__tostring: =>
if @__str == nil
buff, indents = {}, @indents
for i,b in ipairs @bits
b = tostring(b)
if indents[i]
b = b\gsub("\n", "\n"..((" ")\rep(indents[i])))
buff[#buff+1] = b
@__str = concat(buff, "")
return @__str
__len: =>
#tostring(self)
2018-04-25 16:04:46 -07:00
parenthesize: =>
@prepend "("
@append ")"
return {:Code, :Nomsu, :Lua, :Source}