Consolidating code obj code and expunging all [[..]]-style lua strings.
This commit is contained in:
parent
0c07968e07
commit
446892d11e
29
code_obj.lua
29
code_obj.lua
@ -101,20 +101,21 @@ do
|
|||||||
end,
|
end,
|
||||||
append = function(self, ...)
|
append = function(self, ...)
|
||||||
local n = select("#", ...)
|
local n = select("#", ...)
|
||||||
local bits = self.bits
|
local bits, indents = self.bits, self.indents
|
||||||
|
local match = string.match
|
||||||
for i = 1, n do
|
for i = 1, n do
|
||||||
local b = select(i, ...)
|
local b = select(i, ...)
|
||||||
assert(b ~= self, "No recursion please.")
|
assert(b ~= self, "No recursion please.")
|
||||||
bits[#bits + 1] = b
|
bits[#bits + 1] = b
|
||||||
if type(b) == 'string' then
|
if type(b) == 'string' then
|
||||||
do
|
do
|
||||||
local spaces = b:match("\n([ ]*)[^\n]*$")
|
local spaces = match(b, "\n([ ]*)[^\n]*$")
|
||||||
if spaces then
|
if spaces then
|
||||||
self.current_indent = #spaces
|
self.current_indent = #spaces
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
elseif self.current_indent ~= 0 then
|
elseif self.current_indent ~= 0 then
|
||||||
self.indents[#bits] = self.current_indent
|
indents[#bits] = self.current_indent
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
self.__str = nil
|
self.__str = nil
|
||||||
@ -151,26 +152,8 @@ do
|
|||||||
_class_0 = setmetatable({
|
_class_0 = setmetatable({
|
||||||
__init = function(self, source, ...)
|
__init = function(self, source, ...)
|
||||||
self.source = source
|
self.source = source
|
||||||
self.bits = {
|
self.bits, self.indents, self.current_indent = { }, { }, 0
|
||||||
...
|
self:append(...)
|
||||||
}
|
|
||||||
local indent, indents = 0, { }
|
|
||||||
local match = string.match
|
|
||||||
for i, b in ipairs(self.bits) do
|
|
||||||
if type(b) == 'string' then
|
|
||||||
do
|
|
||||||
local spaces = match(b, "\n([ ]*)[^\n]*$")
|
|
||||||
if spaces then
|
|
||||||
indent = #spaces
|
|
||||||
end
|
|
||||||
end
|
|
||||||
elseif indent ~= 0 then
|
|
||||||
indents[i] = indent
|
|
||||||
end
|
|
||||||
end
|
|
||||||
self.current_indent = indent
|
|
||||||
self.indents = indents
|
|
||||||
self.__str = nil
|
|
||||||
if type(self.source) == 'string' then
|
if type(self.source) == 'string' then
|
||||||
local filename, start, stop = self.source:match("^(.-)%[(%d+):(%d+)%]$")
|
local filename, start, stop = self.source:match("^(.-)%[(%d+):(%d+)%]$")
|
||||||
if not (filename) then
|
if not (filename) then
|
||||||
|
@ -62,18 +62,8 @@ Source = immutable {"filename","start","stop"}, {
|
|||||||
|
|
||||||
class Code
|
class Code
|
||||||
new: (@source, ...)=>
|
new: (@source, ...)=>
|
||||||
@bits = {...}
|
@bits, @indents, @current_indent = {}, {}, 0
|
||||||
indent, indents = 0, {}
|
@append(...)
|
||||||
match = string.match
|
|
||||||
for i,b in ipairs @bits
|
|
||||||
if type(b) == 'string'
|
|
||||||
if spaces = match(b, "\n([ ]*)[^\n]*$")
|
|
||||||
indent = #spaces
|
|
||||||
elseif indent != 0
|
|
||||||
indents[i] = indent
|
|
||||||
@current_indent = indent
|
|
||||||
@indents = indents
|
|
||||||
@__str = nil
|
|
||||||
if type(@source) == 'string'
|
if type(@source) == 'string'
|
||||||
filename,start,stop = @source\match("^(.-)%[(%d+):(%d+)%]$")
|
filename,start,stop = @source\match("^(.-)%[(%d+):(%d+)%]$")
|
||||||
unless filename
|
unless filename
|
||||||
@ -91,16 +81,17 @@ class Code
|
|||||||
|
|
||||||
append: (...)=>
|
append: (...)=>
|
||||||
n = select("#",...)
|
n = select("#",...)
|
||||||
bits = @bits
|
bits, indents = @bits, @indents
|
||||||
|
match = string.match
|
||||||
for i=1,n
|
for i=1,n
|
||||||
b = select(i, ...)
|
b = select(i, ...)
|
||||||
assert(b != self, "No recursion please.")
|
assert(b != self, "No recursion please.")
|
||||||
bits[#bits+1] = b
|
bits[#bits+1] = b
|
||||||
if type(b) == 'string'
|
if type(b) == 'string'
|
||||||
if spaces = b\match("\n([ ]*)[^\n]*$")
|
if spaces = match(b, "\n([ ]*)[^\n]*$")
|
||||||
@current_indent = #spaces
|
@current_indent = #spaces
|
||||||
elseif @current_indent != 0
|
elseif @current_indent != 0
|
||||||
@indents[#bits] = @current_indent
|
indents[#bits] = @current_indent
|
||||||
@__str = nil
|
@__str = nil
|
||||||
|
|
||||||
prepend: (...)=>
|
prepend: (...)=>
|
||||||
|
@ -101,11 +101,7 @@ immediately
|
|||||||
return t.type.."("..make_tree(t.value)..")"
|
return t.type.."("..make_tree(t.value)..")"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
lua:append([[)
|
lua:append(")\n local tree = ", make_tree(\%longhand), "\n return nomsu:tree_to_lua(tree)\nend);")
|
||||||
local tree = ]], make_tree(\%longhand), [[
|
|
||||||
|
|
||||||
return nomsu:tree_to_lua(tree)
|
|
||||||
end);]])
|
|
||||||
return lua
|
return lua
|
||||||
|
|
||||||
action [remove action %stub]
|
action [remove action %stub]
|
||||||
|
@ -3,7 +3,7 @@ use "core"
|
|||||||
action [file with hash %hash]
|
action [file with hash %hash]
|
||||||
lua> ".."
|
lua> ".."
|
||||||
local Hash = require("openssl.digest")
|
local Hash = require("openssl.digest")
|
||||||
for filename in io.popen('find -L . -type f -name "*.nom"'):lines() do
|
for filename in io.popen('find -L . -not -path "*/\\\\.*" -type f -name "*.nom"'):lines() do
|
||||||
local file = io.open(filename)
|
local file = io.open(filename)
|
||||||
local contents = file:read("*a")
|
local contents = file:read("*a")
|
||||||
file:close()
|
file:close()
|
||||||
|
@ -89,7 +89,7 @@ all_files = function(path)
|
|||||||
end
|
end
|
||||||
path = path:gsub("\\", "\\\\"):gsub("`", ""):gsub('"', '\\"'):gsub("$", "")
|
path = path:gsub("\\", "\\\\"):gsub("`", ""):gsub('"', '\\"'):gsub("$", "")
|
||||||
return coroutine.wrap(function()
|
return coroutine.wrap(function()
|
||||||
local f = io.popen('find -L "' .. path .. '" -type f -name "*.nom"')
|
local f = io.popen('find -L "' .. path .. '" -not -path "*/\\.*" -type f -name "*.nom"')
|
||||||
for line in f:lines() do
|
for line in f:lines() do
|
||||||
coroutine.yield(line)
|
coroutine.yield(line)
|
||||||
end
|
end
|
||||||
|
@ -78,7 +78,7 @@ all_files = (path)->
|
|||||||
-- TODO: improve sanitization
|
-- TODO: improve sanitization
|
||||||
path = path\gsub("\\","\\\\")\gsub("`","")\gsub('"','\\"')\gsub("$","")
|
path = path\gsub("\\","\\\\")\gsub("`","")\gsub('"','\\"')\gsub("$","")
|
||||||
return coroutine.wrap ->
|
return coroutine.wrap ->
|
||||||
f = io.popen('find -L "'..path..'" -type f -name "*.nom"')
|
f = io.popen('find -L "'..path..'" -not -path "*/\\.*" -type f -name "*.nom"')
|
||||||
for line in f\lines!
|
for line in f\lines!
|
||||||
coroutine.yield(line)
|
coroutine.yield(line)
|
||||||
success = f\close!
|
success = f\close!
|
||||||
|
@ -49,9 +49,6 @@ local function repr(x, depth)
|
|||||||
return "{"..table.concat(ret, ", ").."}"
|
return "{"..table.concat(ret, ", ").."}"
|
||||||
end
|
end
|
||||||
elseif x_type == 'string' then
|
elseif x_type == 'string' then
|
||||||
if x == "\n" then
|
|
||||||
return "'\\n'"
|
|
||||||
end
|
|
||||||
local escaped = x:gsub("\\", "\\\\"):gsub("\n","\\n"):gsub('"', '\\"')
|
local escaped = x:gsub("\\", "\\\\"):gsub("\n","\\n"):gsub('"', '\\"')
|
||||||
return '"'..escaped..'"'
|
return '"'..escaped..'"'
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user