opus/sys/apps/Lua.lua

363 lines
7.3 KiB
Lua
Raw Normal View History

2018-01-21 10:44:13 +00:00
_G.requireInjector(_ENV)
2017-10-08 21:45:01 +00:00
local History = require('history')
local UI = require('ui')
local Util = require('util')
2016-12-11 19:24:52 +00:00
2017-10-14 07:41:54 +00:00
local colors = _G.colors
local os = _G.os
2017-10-13 20:30:47 +00:00
local textutils = _G.textutils
2018-01-22 03:08:30 +00:00
local term = _G.term
2017-10-08 21:45:01 +00:00
2018-01-24 22:39:38 +00:00
local _exit
2017-10-08 21:45:01 +00:00
local sandboxEnv = setmetatable(Util.shallowCopy(_ENV), { __index = _G })
2018-01-24 22:39:38 +00:00
sandboxEnv.exit = function() _exit = true end
2017-10-14 07:41:54 +00:00
sandboxEnv._echo = function( ... ) return { ... } end
2018-01-21 10:44:13 +00:00
_G.requireInjector(sandboxEnv)
2016-12-11 19:24:52 +00:00
UI:configure('Lua', ...)
local command = ''
2017-05-20 22:27:26 +00:00
local history = History.load('usr/.lua_history', 25)
2016-12-11 19:24:52 +00:00
2017-10-03 04:50:54 +00:00
local page = UI.Page {
2018-01-22 03:08:30 +00:00
menuBar = UI.MenuBar {
buttons = {
{ text = 'Local', event = 'local' },
{ text = 'Global', event = 'global' },
{ text = 'Device', event = 'device', name = 'Device' },
},
},
prompt = UI.TextEntry {
y = 2,
shadowText = 'enter command',
limit = 256,
accelerators = {
enter = 'command_enter',
up = 'history_back',
down = 'history_forward',
mouse_rightclick = 'clear_prompt',
[ 'control-space' ] = 'autocomplete',
},
},
grid = UI.ScrollingGrid {
y = 3, ey = -2,
columns = {
{ heading = 'Key', key = 'name' },
{ heading = 'Value', key = 'value' },
},
sortColumn = 'name',
autospace = true,
},
titleBar = UI.TitleBar {
title = 'Output',
y = -1,
event = 'show_output',
closeInd = '^'
},
output = UI.Embedded {
y = -6,
2018-01-24 22:39:38 +00:00
backgroundColor = colors.gray,
2018-01-22 03:08:30 +00:00
},
2017-10-03 04:50:54 +00:00
}
2016-12-11 19:24:52 +00:00
2016-12-18 19:38:48 +00:00
function page:setPrompt(value, focus)
2018-01-22 03:08:30 +00:00
self.prompt:setValue(value)
self.prompt.scroll = 0
self.prompt:setPosition(#value)
self.prompt:updateScroll()
if value:sub(-1) == ')' then
self.prompt:setPosition(#value - 1)
end
self.prompt:draw()
if focus then
page:setFocus(self.prompt)
end
2016-12-11 19:24:52 +00:00
end
2016-12-18 19:38:48 +00:00
function page:enable()
2018-01-22 03:08:30 +00:00
self:setFocus(self.prompt)
UI.Page.enable(self)
self.output:disable()
2016-12-11 19:24:52 +00:00
end
2016-12-27 21:01:06 +00:00
local function autocomplete(env, oLine, x)
2018-01-22 03:08:30 +00:00
local sLine = oLine:sub(1, x)
local nStartPos = sLine:find("[a-zA-Z0-9_%.]+$")
if nStartPos then
sLine = sLine:sub(nStartPos)
end
if #sLine > 0 then
local results = textutils.complete(sLine, env)
if #results == 1 then
return Util.insertString(oLine, results[1], x + 1)
elseif #results > 1 then
local prefix = results[1]
for n = 1, #results do
local result = results[n]
while #prefix > 0 do
if result:find(prefix, 1, true) == 1 then
break
end
prefix = prefix:sub(1, #prefix - 1)
end
end
if #prefix > 0 then
return Util.insertString(oLine, prefix, x + 1)
end
end
end
return oLine
2016-12-27 03:26:43 +00:00
end
2016-12-18 19:38:48 +00:00
function page:eventHandler(event)
2018-01-22 03:08:30 +00:00
if event.type == 'global' then
2018-01-24 22:39:38 +00:00
self:setPrompt('_G', true)
2018-01-22 03:08:30 +00:00
self:executeStatement('_G')
command = nil
elseif event.type == 'local' then
2018-01-24 22:39:38 +00:00
self:setPrompt('_ENV', true)
2018-01-22 03:08:30 +00:00
self:executeStatement('_ENV')
command = nil
elseif event.type == 'hide_output' then
self.output:disable()
self.titleBar.oy = -1
self.titleBar.event = 'show_output'
self.titleBar.closeInd = '^'
self.titleBar:resize()
self.grid.ey = -2
self.grid:resize()
self:draw()
elseif event.type == 'show_output' then
self.output:enable()
self.titleBar.oy = -7
self.titleBar.event = 'hide_output'
self.titleBar.closeInd = 'v'
self.titleBar:resize()
self.grid.ey = -8
self.grid:resize()
self:draw()
elseif event.type == 'autocomplete' then
local sz = #self.prompt.value
local pos = self.prompt.pos
self:setPrompt(autocomplete(sandboxEnv, self.prompt.value, self.prompt.pos))
self.prompt:setPosition(pos + #self.prompt.value - sz)
self.prompt:updateCursor()
elseif event.type == 'device' then
self:setPrompt('device', true)
self:executeStatement('device')
elseif event.type == 'history_back' then
local value = history:back()
if value then
self:setPrompt(value)
end
elseif event.type == 'history_forward' then
self:setPrompt(history:forward() or '')
elseif event.type == 'clear_prompt' then
self:setPrompt('')
history:reset()
elseif event.type == 'command_enter' then
local s = tostring(self.prompt.value)
if #s > 0 then
history:add(s)
history:back()
self:executeStatement(s)
else
local t = { }
for k = #history.entries, 1, -1 do
table.insert(t, {
name = #t + 1,
value = history.entries[k],
isHistory = true,
pos = k,
})
end
history:reset()
command = nil
self.grid:setValues(t)
self.grid:setIndex(1)
self.grid:adjustWidth()
self:draw()
end
return true
else
return UI.Page.eventHandler(self, event)
end
return true
2016-12-11 19:24:52 +00:00
end
2016-12-18 19:38:48 +00:00
function page:setResult(result)
2018-01-22 03:08:30 +00:00
local t = { }
local oterm = term.redirect(self.output.win)
Util.print(result)
term.redirect(oterm)
local function safeValue(v)
if type(v) == 'string' or type(v) == 'number' then
return v
end
return tostring(v)
end
if type(result) == 'table' then
for k,v in pairs(result) do
local entry = {
name = safeValue(k),
rawName = k,
value = safeValue(v),
rawValue = v,
}
if type(v) == 'table' then
if Util.size(v) == 0 then
entry.value = 'table: (empty)'
else
entry.value = tostring(v)
end
end
table.insert(t, entry)
end
else
table.insert(t, {
name = type(result),
value = tostring(result),
rawValue = result,
})
end
self.grid:setValues(t)
self.grid:setIndex(1)
self.grid:adjustWidth()
self:draw()
2016-12-11 19:24:52 +00:00
end
2016-12-18 19:38:48 +00:00
function page.grid:eventHandler(event)
2018-01-22 03:08:30 +00:00
local entry = self:getSelected()
local function commandAppend()
if entry.isHistory then
--history.setPosition(entry.pos)
return entry.value
end
if type(entry.rawValue) == 'function' then
if command then
return command .. '.' .. entry.name .. '()'
end
return entry.name .. '()'
end
if command then
if type(entry.rawName) == 'number' then
return command .. '[' .. entry.name .. ']'
end
if entry.name:match("%W") or
entry.name:sub(1, 1):match("%d") then
return command .. "['" .. tostring(entry.name) .. "']"
end
return command .. '.' .. entry.name
end
return entry.name
end
if event.type == 'grid_focus_row' then
if self.focused then
page:setPrompt(commandAppend())
end
elseif event.type == 'grid_select' then
page:setPrompt(commandAppend(), true)
page:executeStatement(commandAppend())
elseif event.type == 'copy' then
if entry then
os.queueEvent('clipboard_copy', entry.rawValue)
end
else
return UI.ScrollingGrid.eventHandler(self, event)
end
return true
2016-12-11 19:24:52 +00:00
end
2016-12-18 19:38:48 +00:00
function page:rawExecute(s)
2018-01-22 03:08:30 +00:00
local fn, m
2017-10-14 07:41:54 +00:00
2018-01-22 03:08:30 +00:00
fn = load('return (' ..s.. ')', 'lua', nil, sandboxEnv)
2017-10-14 07:41:54 +00:00
2018-01-22 03:08:30 +00:00
if fn then
fn = load('return {' ..s.. '}', 'lua', nil, sandboxEnv)
end
2017-10-14 07:41:54 +00:00
2018-01-22 03:08:30 +00:00
if fn then
fn, m = pcall(fn)
if #m == 1 then
m = m[1]
end
return fn, m
end
2016-12-11 19:24:52 +00:00
2018-01-22 03:08:30 +00:00
fn, m = load(s, 'lua', nil, sandboxEnv)
if fn then
fn, m = pcall(fn)
end
2016-12-11 19:24:52 +00:00
2018-01-22 03:08:30 +00:00
return fn, m
2016-12-11 19:24:52 +00:00
end
2016-12-18 19:38:48 +00:00
function page:executeStatement(statement)
2018-01-22 03:08:30 +00:00
command = statement
2018-01-24 22:39:38 +00:00
local s, m
2018-01-22 03:08:30 +00:00
local oterm = term.redirect(self.output.win)
2018-01-24 22:39:38 +00:00
pcall(function()
s, m = self:rawExecute(command)
end)
2018-01-22 03:08:30 +00:00
if not s then
_G.printError(m)
end
term.redirect(oterm)
if s and m then
self:setResult(m)
else
self.grid:setValues({ })
self.grid:draw()
2018-01-24 22:39:38 +00:00
if m and not self.output.enabled then
self:emit({ type = 'show_output' })
2018-01-22 03:08:30 +00:00
end
end
2018-01-24 22:39:38 +00:00
if _exit then
UI:exitPullEvents()
end
2016-12-11 19:24:52 +00:00
end
2016-12-23 04:22:04 +00:00
local args = { ... }
if args[1] then
2018-01-22 03:08:30 +00:00
command = 'args[1]'
sandboxEnv.args = args
page:setResult(args[1])
2016-12-18 19:38:48 +00:00
end
UI:setPage(page)
2018-01-24 22:39:38 +00:00
UI:pullEvents()