Advertisement
Guest User

Untitled

a guest
May 12th, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.64 KB | None | 0 0
  1. local fs = require("filesystem")
  2. local term = require("term")
  3. local computer = require("computer")
  4. local keyboard = require("keyboard")
  5. local event = require("event")
  6. local gpu = require("component").gpu
  7. local serialization = require("serialization")
  8. local logger = {}
  9.  
  10. function logger:init(program)
  11. self.loggerFolder = "/var/" .. program .. "/"
  12. local logNumber = 0
  13. local found = false
  14. while not found do
  15. if (fs.exists(self.loggerFolder .. "log-" .. logNumber .. ".log")) then
  16. logNumber = logNumber + 1
  17. else
  18. self.logNumber = logNumber
  19. found = true
  20. end
  21. end
  22. self.initTime = os.time()
  23. end
  24.  
  25. function logger:ensurelogFolderExists()
  26. if not fs.exists(self.loggerFolder) then
  27. fs.makeDirectory(self.loggerFolder)
  28. end
  29. end
  30.  
  31. function logger:log(message)
  32. self:ensurelogFolderExists()
  33. local file = io.open(self.loggerFolder.."log-"..self.logNumber..".log","a")
  34. file:write("["..string.format("%07d",(os.time()-self.initTime)).."]"..message.."\n")
  35. file:close()
  36. end
  37.  
  38. local versionNum = 0
  39. local versionName = "0.0"
  40.  
  41. logger:init("blockio")
  42.  
  43. logger:log("Launching Block.io")
  44. logger:log("Version "..versionName.." ("..versionNum..")")
  45.  
  46. if not term.isAvailable() then
  47. logger:log("Term is not avalible.")
  48. return
  49. end
  50.  
  51. blockio = {}
  52.  
  53. local core = {}
  54. local currentTab = 0
  55. local tabs = {}
  56. local packages = {}
  57. local loadingProgress = 0
  58.  
  59. function core.prePreInitCore()
  60. logger:log("Pre Pre Initializing core")
  61. logger:log("Free memory: " .. computer.freeMemory())
  62. gpu.setBackground(0xFFFFFF)
  63. gpu.setForeground(0x000000)
  64. local w , h = gpu.getResolution()
  65. gpu.fill(1,1,w,h," ")
  66. gpu.set(w/2 - 4, h/2, "BLOCK.IO")
  67. gpu.setBackground(0x000000)
  68. gpu.setForeground(0xFFFFFF)
  69. core.updateLoadingScreen(4.15)
  70.  
  71. function blockio.log(message)
  72. logger:log(message)
  73. end
  74.  
  75. function blockio.isPackageInstalled(packageName)
  76. checkArg(1,packageName,"string")
  77. return packages[packageName] ~= nil
  78. end
  79.  
  80. function blockio.getPackageList()
  81. local keyset={}
  82. local n=0
  83.  
  84. for k,v in pairs(tab) do
  85. n=n+1
  86. keyset[n]=k
  87. end
  88.  
  89. return keyset
  90. end
  91. core.updateLoadingScreen(4.15)
  92. end
  93.  
  94. function core.preInitCore()
  95. logger:log("Pre Initializing core")
  96. logger:log("Free memory: " .. computer.freeMemory())
  97.  
  98. core.updateLoadingScreen(4.15)
  99. core.updateLoadingScreen(4.15)
  100. end
  101.  
  102. function core.postInitCore()
  103. logger:log("Post Initializing core")
  104. logger:log("Free memory: " .. computer.freeMemory())
  105. function blockio.addTab(tab)
  106. checkArg(1,tab,"table")
  107. core.addTab(tab)
  108. end
  109. function blockio.switchToTab(tab)
  110. checkArg(1,tab,"number")
  111. core.switchToTab(tab)
  112. end
  113. core.updateLoadingScreen(4.15)
  114. core.updateLoadingScreen(4.15)
  115. end
  116.  
  117. function core.postPostInitCore()
  118. logger:log("Post Post Initializing core")
  119. logger:log("Free memory: " .. computer.freeMemory())
  120. function blockio.quit()
  121. logger:log("blockio.quit called.")
  122. core.softExit()
  123. end
  124. core.updateLoadingScreen(4.15)
  125. core.updateLoadingScreen(4.15)
  126. end
  127.  
  128. function core.updateLoadingScreen(progress)
  129. loadingProgress = loadingProgress + progress
  130. local w , h = gpu.getResolution()
  131. gpu.setBackground(0x000000)
  132. gpu.setForeground(0xFFFFFF)
  133. gpu.set(w/2 - 5, h/2 + 1, string.format("%02d",loadingProgress).."% Loaded")
  134. end
  135.  
  136. function core.addTab(tab)
  137. logger:log("Adding new tab.")
  138. local foundUID = false
  139. local UID = 0
  140. while not foundUID do
  141. UID = math.random(0xFFFFFFFF)
  142. foundUID = tabs[UID] == nil
  143. end
  144.  
  145. logger:log("New tab UID is "..UID)
  146.  
  147. tabs[UID] = tab
  148. tabs[UID].UID = UID
  149. if(tabs[UID]["init"]~= nil) then
  150. logger:log("init found in new tab , calling")
  151. local status, err = pcall(tabs[UID].init,tabs[UID])
  152.  
  153. if(status) then
  154. logger:log("init successful")
  155. else
  156. logger:log("init error: ")
  157. logger:log(serialization.serialize(err))
  158. end
  159. end
  160. end
  161.  
  162. function core.switchToTab(tab)
  163. logger:log("Switching from tab "..currentTab.." to tab "..tab)
  164.  
  165. if tabs[tab] ~= nil then
  166. error("There is no tab with UID "..tab)
  167. end
  168.  
  169. if tabs[currentTab] ~= nil then
  170. if(tabs[currentTab]["leaveTab"]~= nil) then
  171. logger:log("leaveTab found in old tab , calling")
  172. local status, err = pcall(tabs[currentTab].leaveTab,tabs[currentTab])
  173. if status then
  174. logger:log("leaveTab successful")
  175. else
  176. logger:log("leaveTab error: ")
  177. logger:log(serialization.serialize(err))
  178. end
  179. end
  180. end
  181.  
  182. if tabs[tab]["enterTab"]~= nil then
  183. logger:log("enterTab found in new tab , calling")
  184. local status, err = pcall(tabs[tab].enterTab,tabs[tab])
  185.  
  186. if status then
  187. logger:log("enterTab successful")
  188. else
  189. logger:log("enterTab error: ")
  190. logger:log(serialization.serialize(err))
  191. end
  192. end
  193. currentTab = tab
  194. end
  195.  
  196. function core.loadPackages()
  197. logger:log("Loading Packages")
  198. logger:log("Loading Packages into memoery")
  199. if not fs.exists("/etc/blockio/") then
  200. fs.makeDirectory("/etc/blockio/")
  201. end
  202. local packageFiles = fs.list("/etc/blockio/")
  203. local numberOfFiles = 0
  204. for packageFile in packageFiles do
  205. numberOfFiles = numberOfFiles + 1;
  206. end
  207. packageFiles = fs.list("/etc/blockio/")
  208. local numberOfPackages = 0
  209. for packageFile in packageFiles do
  210. local path,name,extension = string.match(packageFile, "(.-)([^/]-([^/%.]+))$")
  211. name = string.gsub(name,".lua","")
  212. fileLoc = "/etc/blockio/"..name.."."..extension
  213.  
  214. logger:log("Found package :"..packageFile)
  215.  
  216. if(extension == "lua") then
  217. logger:log(name.." is lua , loading into packages")
  218. packages[name] = dofile(fileLoc)
  219. numberOfPackages = numberOfPackages + 1
  220. end
  221. core.updateLoadingScreen(16.6/numberOfFiles)
  222. end
  223.  
  224. for packageName,table in pairs(packages) do
  225. for values , func in pairs(table) do
  226. logger:log(packageName.." contains ".. values)
  227. end
  228. end
  229.  
  230. for packageName,table in pairs(packages) do
  231. local loadingPerStep = 16.6/numberOfPackages
  232. logger:log("Pre initializing "..packageName)
  233. table.name = packageName;
  234. if table["preInit"]~= nil then
  235. local status, err = pcall(table.preInit,table,loadingPerStep)
  236. if status then
  237. logger:log(packageName.."preInit successful")
  238. else
  239. logger:log("preInit error: ")
  240. logger:log(serialization.serialize(err))
  241. end
  242. else
  243. logger:log("Pre init not found.")
  244. end
  245.  
  246. core.updateLoadingScreen(loadingPerStep)
  247. end
  248. core.preInitCore()
  249. for packageName,table in pairs(packages) do
  250. local loadingPerStep = 16.6/numberOfPackages
  251. logger:log("Initializing "..packageName)
  252. if(table["init"] ~= nil) then
  253. pcall(table.init,table,loadingPerStep)
  254. else
  255. logger:log("Init not found.")
  256. end
  257.  
  258. core.updateLoadingScreen(loadingPerStep)
  259. end
  260. core.postInitCore()
  261. for packageName,table in pairs(packages) do
  262. local loadingPerStep = 16.6/numberOfPackages
  263. logger:log("Post initializing "..packageName)
  264. if(table["postInit"] ~= nil) then
  265. pcall(table.postInit,table,loadingPerStep)
  266. else
  267. logger:log("Post init not found.")
  268. end
  269. core.updateLoadingScreen(loadingPerStep)
  270. end
  271. end
  272.  
  273. core.exit = false;
  274. function core.softExit()
  275. logger:log("softExit called.")
  276. core.exit = true
  277. end
  278.  
  279. function core.hardExit()
  280. logger:log("hardExit called.")
  281. logger:log("Forcing exit with os.exit().")
  282. os.exit()
  283. end
  284.  
  285. function core.onKeyDown(char, code)
  286. if keyboard.pressedCodes[code] == nil then
  287. table.insert(keyboard.pressedCodes,code)
  288. table.insert(keyboard.pressedChars,char)
  289. end
  290. if keyboard.isControlDown() and code == keyboard.keys.q then
  291. core.softExit()
  292. end
  293. end
  294.  
  295. function core.onKeyUp(char, code)
  296. if keyboard.pressedCodes[code] ~= nil then
  297. table.remove(keyboard.pressedCodes,code)
  298. table.remove(keyboard.pressedChars,char)
  299. end
  300. end
  301.  
  302. function core.main()
  303. core.prePreInitCore()
  304. core.loadPackages()
  305. core.postPostInitCore()
  306.  
  307. logger:log("Entering Main Loop")
  308. while not core.exit do
  309. local event, address, arg1, arg2, arg3 = event.pull()
  310. if event == "key_down" then
  311. core.onKeyDown(arg1, arg2)
  312. elseif event == "key_up" then
  313. core.onKeyUp(arg1, arg2)
  314. end
  315. end
  316. logger:log("Left main loop")
  317. end
  318.  
  319. logger:log("Entering Main")
  320. local status, err = pcall(core.main)
  321. if status then
  322. logger:log("Block.io exited with no errors. See you next time!")
  323. else
  324. logger:log("Block.io exited with the following error: ")
  325. logger:log(serialization.serialize(err))
  326. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement