0
0
mirror of https://github.com/Doodle3D/doodle3d-firmware.git synced 2024-06-28 20:31:21 +02:00
doodle3d-firmware/src/script/print-fetch.lua

95 lines
2.1 KiB
Lua
Raw Normal View History

2017-04-11 12:00:34 +02:00
#!/usr/bin/lua
local function log(message)
os.execute("logger" .. message)
print(message)
end
if (table.getn(arg) == 0) then
print("Usage: ./print-fetch {printerSocket} {remoteURL} {id} [startGcode] [endGCode]")
return
end
log("starting gcode fetch program")
2017-04-11 12:00:34 +02:00
package.cpath = package.cpath .. '/usr/lib/lua/?.so'
JSON = (loadfile "/usr/share/lua/wifibox/util/JSON.lua")()
local p3d = require("print3d")
local printer = p3d.getPrinter(arg[1])
2017-04-11 12:50:49 +02:00
local remote = arg[2]
2017-04-11 12:00:34 +02:00
local finished = false
2017-04-11 17:04:57 +02:00
local id = arg[3]
log("gcode file id: " .. id)
2017-04-11 17:04:57 +02:00
local info = JSON:decode(io.popen("wget -qO - " .. remote .. "/info/" .. id):read("*a"))
2017-04-11 12:00:34 +02:00
local current_line = 0
local total_lines = tonumber(info["lines"])
local started = false
log("total lines: " .. total_lines)
local startCode = ''
local endCode = ''
function countlines(file)
return tonumber(io.popen("wc -l < " .. file):read('*a'))
end
function readGCodeArg(argi)
local gcodeFile = arg[argi]
total_lines = total_lines + countlines(gcodeFile)
return io.open(gcodeFile):read('*a')
end
if table.getn(arg) >= 5 then
startCode = readGCodeArg(4)
endCode = readGCodeArg(5)
end
printer:appendGcode(startCode)
2017-04-11 12:00:34 +02:00
while(not finished)
do
2017-04-11 17:04:57 +02:00
local f = io.popen("wget -qO - " .. remote .. "/fetch/" .. id .. "/" .. current_line)
2017-04-11 12:00:34 +02:00
local line = f:read()
while line ~= nil do
printer:appendGcode(line, total_lines)
2017-04-11 12:00:34 +02:00
current_line = current_line + 1
line = f:read()
end
if current_line >= total_lines then
printer:appendGcode(endCode)
2017-04-11 12:00:34 +02:00
finished = true
break
end
if not started then
started = true
print("send print start command")
printer:startPrint()
end
local accepts_new_gcode = false
while (not accepts_new_gcode)
do
local current,buffer,total,bufferSize,maxBufferSize = printer:getProgress()
local percentageBufferSize = bufferSize / maxBufferSize
if percentageBufferSize < 0.8 then
print("buffer below 80% capacity, sending new gcode")
accepts_new_gcode = true
else
print("buffer above 80% capacity")
os.execute("sleep 10")
end
end
end