Advertisement
Guest User

Untitled

a guest
Jan 18th, 2015
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.94 KB | None | 0 0
  1. --[[ tape program, provides basic tape modification and access tools
  2. Authors: Bizzycola and Vexatos
  3. ]]
  4. local component = require("component")
  5. local fs = require("filesystem")
  6. local shell = require("shell")
  7. local term = require("term")
  8.  
  9. local args, options = shell.parse(...)
  10.  
  11. if not component.isAvailable("tape_drive") then
  12.   io.stderr:write("This program requires a tape drive to run.")
  13.   return
  14. end
  15.  
  16. local tape = component.tape_drive
  17.  
  18. if not tape.isReady() then
  19.   io.stderr:write("The tape drive does not contain a tape.")
  20.   return
  21. end
  22.  
  23. local function writeTape(path)
  24.   tape.stop()
  25.   tape.seek(-tape.getSize())
  26.   tape.stop() --Just making sure
  27.  
  28.   local file, msg, _, y, success
  29.   local block = 1024 --How much to read at a time
  30.   local bytery = 0 --For the progress indicator
  31.   local filesize = tape.getSize()
  32.  
  33.   if string.match(path, "https?://.+") then
  34.  
  35.     if not component.isAvailable("internet") then
  36.       io.stderr:write("This program requires an internet card to run.")
  37.       return false
  38.     end
  39.  
  40.     local internet = require("internet")
  41.     local header = ""
  42.  
  43.     local function setupConnection(addr)
  44.       if string.match(addr, "https://") then
  45.         io.stderr:write("unsupported URL (HTTPS is not supported, use HTTP)")
  46.         return false
  47.       end
  48.       local url = string.gsub(addr, "http://", "", 1)
  49.       local domain = string.gsub(url, "/.*", "", 1)
  50.       local path = string.gsub(url, ".-/", "/", 1)
  51.       local header = ""
  52.  
  53.       file = internet.open(domain, 80)
  54.       file:setTimeout(10)
  55.  
  56.       file:write("GET " .. path .. " HTTP/1.1\r\nHost: " .. domain .. "\r\nConnection: close\r\n\r\n")
  57.  
  58.       repeat
  59.         local hBlock = file:read(block)
  60.         if not hBlock or #hBlock <= 0 then
  61.           io.stderr:write("no valid HTTP response - malformed header")
  62.           return false
  63.         end
  64.         header = header .. hBlock
  65.       until string.find(header, "\r\n\r\n")
  66.  
  67.       if string.match(header, "HTTP/1.1 ([^\r\n]-)\r\n") then
  68.         local status = string.match(header, "HTTP/1.1 ([^\r\n]-)\r?\n")
  69.         local location = string.match(header, "[Ll]ocation: (.-)\r\n")
  70.         if string.match(status, "3%d%d") then
  71.           if location ~= addr then
  72.             file:close()
  73.             print("Redirecting to " .. location)
  74.             return setupConnection(location)
  75.           end
  76.         end
  77.         if string.match(status, "2%d%d") then
  78.           print("Status: " .. status)
  79.           print("Domain: " .. domain)
  80.           print("Path: " .. path)
  81.           return true, file, header
  82.         end
  83.         io.stderr:write(status)
  84.         return false
  85.       end
  86.       io.stderr:write("no valid HTTP response - no response")
  87.       return false
  88.     end
  89.  
  90.     success, file, header = setupConnection(path)
  91.     if not success then
  92.       if file then
  93.         file:close()
  94.       end
  95.       return
  96.     end
  97.  
  98.     print("Writing...")
  99.  
  100.     _, y = term.getCursor()
  101.  
  102.     if string.match(header, "Content%-Length: (%d-)\r\n") then
  103.       filesize = tonumber(string.match(header, "Content%-Length: (%d-)\r\n"))
  104.     end
  105.     local bytes = string.gsub(header, ".-\r\n\r\n", "", 1)
  106.     if bytes and #bytes > 0 then
  107.       term.setCursor(1, y)
  108.       bytery = bytery + #bytes
  109.       term.write("Read " .. tostring(bytery) .. " bytes...")
  110.       tape.write(bytes)
  111.     end
  112.   end
  113.  
  114.   if filesize > tape.getSize() then
  115.     io.stderr:write("Error: File is too large for tape, shortening file")
  116.     filesize = tape.getSize()
  117.   end
  118.  
  119.   while true do
  120.     local bytes = file:read(math.min(block, filesize - bytery))
  121.     if (not bytes) or bytes == "" then break end
  122.     term.setCursor(1, y)
  123.     bytery = bytery + #bytes
  124.     term.write("Read " .. tostring(bytery) .. " of " .. tostring(filesize) .. " bytes...")
  125.     tape.write(bytes)
  126.   end
  127.   file:close()
  128.   tape.stop()
  129.   tape.seek(-tape.getSize())
  130.   tape.stop() --Just making sure
  131.   print("\nDone.")
  132. end
  133.  
  134. if args[1] == "write" then
  135.   writeTape(args[2])
  136. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement