|  | package li.cil.oc.server.component | 
|  |  | 
|  | import java.io.{FileNotFoundException, IOException} | 
|  |  | 
|  | import li.cil.oc.api.Network | 
|  | import li.cil.oc.api.driver.Container | 
|  | import li.cil.oc.api.fs.{Label, Mode, FileSystem => IFileSystem} | 
|  | import li.cil.oc.api.network._ | 
|  | import li.cil.oc.common.{Sound, component} | 
|  | import li.cil.oc.server.driver.item.{CC15Media, CC16Media} | 
|  | import li.cil.oc.server.fs.FileSystem.ItemLabel | 
|  | import li.cil.oc.util.ExtendedNBT._ | 
|  | import li.cil.oc.util.mods.Mods | 
|  | import li.cil.oc.{Settings, api} | 
|  | import net.minecraft.item.ItemStack | 
|  | import net.minecraft.nbt.{NBTTagCompound, NBTTagInt, NBTTagList} | 
|  |  | 
|  | import scala.collection.mutable | 
|  |  | 
|  | class FileSystem(val fileSystem: IFileSystem, var label: Label, val container: Option[Container] = None) extends component.ManagedComponent { | 
|  | val node = Network.newNode(this, Visibility.Network). | 
|  | withComponent("filesystem", Visibility.Neighbors). | 
|  | withConnector(). | 
|  | create() | 
|  |  | 
|  | private val owners = mutable.Map.empty[String, mutable.Set[Int]] | 
|  |  | 
|  | // ----------------------------------------------------------------------- // | 
|  |  | 
|  | @Callback(direct = true, doc = """function():string -- Get the current label of the file system.""") | 
|  | def getLabel(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | if (label != null) result(label.getLabel) else null | 
|  | } | 
|  |  | 
|  | @Callback(doc = """function(value:string):string -- Sets the label of the file system. Returns the new value, which may be truncated.""") | 
|  | def setLabel(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | if (label == null) throw new Exception("filesystem does not support labeling") | 
|  | if (args.checkAny(0) == null) label.setLabel(null) | 
|  | else label.setLabel(args.checkString(0)) | 
|  | result(label.getLabel) | 
|  | } | 
|  |  | 
|  | @Callback(direct = true, doc = """function():boolean -- Returns whether the file system is read-only.""") | 
|  | def isReadOnly(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | result(fileSystem.isReadOnly) | 
|  | } | 
|  |  | 
|  | @Callback(direct = true, doc = """function():number -- The overall capacity of the file system, in bytes.""") | 
|  | def spaceTotal(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | val space = fileSystem.spaceTotal | 
|  | if (space < 0) result(Double.PositiveInfinity) | 
|  | else result(space) | 
|  | } | 
|  |  | 
|  | @Callback(direct = true, doc = """function():number -- The currently used capacity of the file system, in bytes.""") | 
|  | def spaceUsed(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | result(fileSystem.spaceUsed) | 
|  | } | 
|  |  | 
|  | @Callback(direct = true, doc = """function(path:string):boolean -- Returns whether an object exists at the specified absolute path in the file system.""") | 
|  | def exists(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | result(fileSystem.exists(clean(args.checkString(0)))) | 
|  | } | 
|  |  | 
|  | @Callback(direct = true, doc = """function(path:string):number -- Returns the size of the object at the specified absolute path in the file system.""") | 
|  | def size(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | result(fileSystem.size(clean(args.checkString(0)))) | 
|  | } | 
|  |  | 
|  | @Callback(direct = true, doc = """function(path:string):boolean -- Returns whether the object at the specified absolute path in the file system is a directory.""") | 
|  | def isDirectory(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | result(fileSystem.isDirectory(clean(args.checkString(0)))) | 
|  | } | 
|  |  | 
|  | @Callback(direct = true, doc = """function(path:string):number -- Returns the (real world) timestamp of when the object at the specified absolute path in the file system was modified.""") | 
|  | def lastModified(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | result(fileSystem.lastModified(clean(args.checkString(0)))) | 
|  | } | 
|  |  | 
|  | @Callback(doc = """function(path:string):table -- Returns a list of names of objects in the directory at the specified absolute path in the file system.""") | 
|  | def list(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | Option(fileSystem.list(clean(args.checkString(0)))) match { | 
|  | case Some(list) => | 
|  | makeSomeNoise() | 
|  | Array(list) | 
|  | case _ => null | 
|  | } | 
|  | } | 
|  |  | 
|  | @Callback(doc = """function(path:string):boolean -- Creates a directory at the specified absolute path in the file system. Creates parent directories, if necessary.""") | 
|  | def makeDirectory(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | def recurse(path: String): Boolean = !fileSystem.exists(path) && (fileSystem.makeDirectory(path) || | 
|  | (recurse(path.split("/").dropRight(1).mkString("/")) && fileSystem.makeDirectory(path))) | 
|  | val success = recurse(clean(args.checkString(0))) | 
|  | if (success) makeSomeNoise() | 
|  | result(success) | 
|  | } | 
|  |  | 
|  | @Callback(doc = """function(path:string):boolean -- Removes the object at the specified absolute path in the file system.""") | 
|  | def remove(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | def recurse(parent: String): Boolean = (!fileSystem.isDirectory(parent) || | 
|  | fileSystem.list(parent).forall(child => recurse(parent + "/" + child))) && fileSystem.delete(parent) | 
|  | val success = recurse(clean(args.checkString(0))) | 
|  | if (success) makeSomeNoise() | 
|  | result(success) | 
|  | } | 
|  |  | 
|  | @Callback(doc = """function(from:string, to:string):boolean -- Renames/moves an object from the first specified absolute path in the file system to the second.""") | 
|  | def rename(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | val success = fileSystem.rename(clean(args.checkString(0)), clean(args.checkString(1))) | 
|  | if (success) makeSomeNoise() | 
|  | result(success) | 
|  | } | 
|  |  | 
|  | @Callback(direct = true, doc = """function(handle:number) -- Closes an open file descriptor with the specified handle.""") | 
|  | def close(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | val handle = args.checkInteger(0) | 
|  | Option(fileSystem.getHandle(handle)) match { | 
|  | case Some(file) => | 
|  | owners.get(context.node.address) match { | 
|  | case Some(set) if set.remove(handle) => file.close() | 
|  | case _ => throw new IOException("bad file descriptor") | 
|  | } | 
|  | case _ => throw new IOException("bad file descriptor") | 
|  | } | 
|  | null | 
|  | } | 
|  |  | 
|  | @Callback(direct = true, limit = 4, doc = """function(path:string[, mode:string='r']):number -- Opens a new file descriptor and returns its handle.""") | 
|  | def open(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | if (owners.get(context.node.address).fold(false)(_.size >= Settings.get.maxHandles)) { | 
|  | throw new IOException("too many open handles") | 
|  | } | 
|  | val path = args.checkString(0) | 
|  | val mode = if (args.count > 1) args.checkString(1) else "r" | 
|  | val handle = fileSystem.open(clean(path), parseMode(mode)) | 
|  | if (handle > 0) { | 
|  | owners.getOrElseUpdate(context.node.address, mutable.Set.empty[Int]) += handle | 
|  | } | 
|  | result(handle) | 
|  | } | 
|  |  | 
|  | @Callback(direct = true, limit = 4, doc = """function(handle:number, count:number):string or nil -- Reads up to the specified amount of data from an open file descriptor with the specified handle. Returns nil when EOF is reached.""") | 
|  | def read(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | val handle = args.checkInteger(0) | 
|  | val n = math.min(Settings.get.maxReadBuffer, math.max(0, args.checkInteger(1))) | 
|  | checkOwner(context.node.address, handle) | 
|  | Option(fileSystem.getHandle(handle)) match { | 
|  | case Some(file) => | 
|  | // Limit size of read buffer to avoid crazy allocations. | 
|  | val buffer = new Array[Byte](n) | 
|  | val read = file.read(buffer) | 
|  | if (read >= 0) { | 
|  | val bytes = | 
|  | if (read == buffer.length) | 
|  | buffer | 
|  | else { | 
|  | val bytes = new Array[Byte](read) | 
|  | Array.copy(buffer, 0, bytes, 0, read) | 
|  | bytes | 
|  | } | 
|  | if (!node.tryChangeBuffer(-Settings.get.hddReadCost * bytes.length)) { | 
|  | throw new IOException("not enough energy") | 
|  | } | 
|  | makeSomeNoise() | 
|  | result(bytes) | 
|  | } | 
|  | else { | 
|  | result(Unit) | 
|  | } | 
|  | case _ => throw new IOException("bad file descriptor") | 
|  | } | 
|  | } | 
|  |  | 
|  | @Callback(direct = true, limit = 4, doc = """function(handle:number, whence:string, offset:number):number -- Seeks in an open file descriptor with the specified handle. Returns the new pointer position.""") | 
|  | def seek(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | val handle = args.checkInteger(0) | 
|  | val whence = args.checkString(1) | 
|  | val offset = args.checkInteger(2) | 
|  | checkOwner(context.node.address, handle) | 
|  | Option(fileSystem.getHandle(handle)) match { | 
|  | case Some(file) => | 
|  | whence match { | 
|  | case "cur" => file.seek(file.position + offset) | 
|  | case "set" => file.seek(offset) | 
|  | case "end" => file.seek(file.length + offset) | 
|  | case _ => throw new IllegalArgumentException("invalid mode") | 
|  | } | 
|  | result(file.position) | 
|  | case _ => throw new IOException("bad file descriptor") | 
|  | } | 
|  | } | 
|  |  | 
|  | @Callback(doc = """function(handle:number, value:string):boolean -- Writes the specified data to an open file descriptor with the specified handle.""") | 
|  | def write(context: Context, args: Arguments): Array[AnyRef] = fileSystem.synchronized { | 
|  | val handle = args.checkInteger(0) | 
|  | val value = args.checkByteArray(1) | 
|  | if (!node.tryChangeBuffer(-Settings.get.hddWriteCost * value.length)) { | 
|  | throw new IOException("not enough energy") | 
|  | } | 
|  | checkOwner(context.node.address, handle) | 
|  | Option(fileSystem.getHandle(handle)) match { | 
|  | case Some(file) => | 
|  | file.write(value) | 
|  | makeSomeNoise() | 
|  | result(true) | 
|  | case _ => throw new IOException("bad file descriptor") | 
|  | } | 
|  | } | 
|  |  | 
|  | // ----------------------------------------------------------------------- // | 
|  |  | 
|  | override def onMessage(message: Message) = fileSystem.synchronized { | 
|  | super.onMessage(message) | 
|  | message.data match { | 
|  | case Array() if message.name == "computer.stopped" || message.name == "computer.started" => | 
|  | owners.get(message.source.address) match { | 
|  | case Some(set) => | 
|  | set.foreach(handle => Option(fileSystem.getHandle(handle)) match { | 
|  | case Some(file) => file.close() | 
|  | case _ => // Invalid handle... huh. | 
|  | }) | 
|  | set.clear() | 
|  | case _ => // Computer had no open files. | 
|  | } | 
|  | case _ => | 
|  | } | 
|  | } | 
|  |  | 
|  | override def onDisconnect(node: Node) = fileSystem.synchronized { | 
|  | super.onDisconnect(node) | 
|  | if (node == this.node) { | 
|  | fileSystem.close() | 
|  | } | 
|  | else if (owners.contains(node.address)) { | 
|  | for (handle <- owners(node.address)) { | 
|  | Option(fileSystem.getHandle(handle)) match { | 
|  | case Some(file) => file.close() | 
|  | case _ => | 
|  | } | 
|  | } | 
|  | owners.remove(node.address) | 
|  | } | 
|  | } | 
|  |  | 
|  | // ----------------------------------------------------------------------- // | 
|  |  | 
|  | override def load(nbt: NBTTagCompound) { | 
|  | super.load(nbt) | 
|  |  | 
|  | val ownersNbt = nbt.getTagList("owners") | 
|  | (0 until ownersNbt.tagCount).map(ownersNbt.tagAt).map(_.asInstanceOf[NBTTagCompound]).foreach(ownerNbt => { | 
|  | val address = ownerNbt.getString("address") | 
|  | if (address != "") { | 
|  | val handlesNbt = ownerNbt.getTagList("handles") | 
|  | owners += address -> (0 until handlesNbt.tagCount). | 
|  | map(handlesNbt.tagAt). | 
|  | map(_.asInstanceOf[NBTTagInt].data). | 
|  | to[mutable.Set] | 
|  | } | 
|  | }) | 
|  |  | 
|  | if (label != null) { | 
|  | label.load(nbt) | 
|  | } | 
|  | fileSystem.load(nbt.getCompoundTag("fs")) | 
|  | } | 
|  |  | 
|  | override def save(nbt: NBTTagCompound) = fileSystem.synchronized { | 
|  | super.save(nbt) | 
|  |  | 
|  | val ownersNbt = new NBTTagList() | 
|  | for ((address, handles) <- owners) { | 
|  | val ownerNbt = new NBTTagCompound() | 
|  | ownerNbt.setString("address", address) | 
|  | val handlesNbt = new NBTTagList() | 
|  | for (handle <- handles) { | 
|  | handlesNbt.appendTag(new NBTTagInt(null, handle)) | 
|  | } | 
|  | ownerNbt.setTag("handles", handlesNbt) | 
|  | ownersNbt.appendTag(ownerNbt) | 
|  | } | 
|  | nbt.setTag("owners", ownersNbt) | 
|  |  | 
|  | if (label != null) { | 
|  | label.save(nbt) | 
|  | } | 
|  | nbt.setNewCompoundTag("fs", fileSystem.save) | 
|  | } | 
|  |  | 
|  | // ----------------------------------------------------------------------- // | 
|  |  | 
|  | private def clean(path: String) = { | 
|  | val result = com.google.common.io.Files.simplifyPath(path) | 
|  | if (result.startsWith("../")) throw new FileNotFoundException() | 
|  | if (result == "/" || result == ".") "" | 
|  | else result | 
|  | } | 
|  |  | 
|  | private def parseMode(value: String): Mode = { | 
|  | if (("r" == value) || ("rb" == value)) return Mode.Read | 
|  | if (("w" == value) || ("wb" == value)) return Mode.Write | 
|  | if (("a" == value) || ("ab" == value)) return Mode.Append | 
|  | throw new IllegalArgumentException("unsupported mode") | 
|  | } | 
|  |  | 
|  | private def checkOwner(owner: String, handle: Int) = | 
|  | if (!owners.contains(owner) || !owners(owner).contains(handle)) | 
|  | throw new IOException("bad file descriptor") | 
|  |  | 
|  | private lazy val floppies = Set(api.Items.get("floppy"), api.Items.get("lootDisk"), api.Items.get("openOS")) | 
|  |  | 
|  | private lazy val hdds = Set(api.Items.get("hdd1"), api.Items.get("hdd2"), api.Items.get("hdd3")) | 
|  |  | 
|  | private def isFloppy(stack: ItemStack) = floppies contains api.Items.get(stack) | 
|  |  | 
|  | private def isHardDisk(stack: ItemStack) = hdds contains api.Items.get(stack) | 
|  |  | 
|  | private def makeSomeNoise() { | 
|  | container.foreach(c => | 
|  | // Well, this is hacky as shit, but who cares. | 
|  | label match { | 
|  | case item: ItemLabel => | 
|  | if (isFloppy(item.stack)) { | 
|  | Sound.playDiskActivity(c, isFloppy = true) | 
|  | } | 
|  | else if (isHardDisk(item.stack)) { | 
|  | Sound.playDiskActivity(c, isFloppy = false) | 
|  | } | 
|  | case _ => | 
|  | if (Mods.ComputerCraft15.isAvailable) { | 
|  | if (label.isInstanceOf[CC15Media.ComputerCraftLabel]) { | 
|  | Sound.playDiskActivity(c, isFloppy = true) | 
|  | } | 
|  | } | 
|  | if (Mods.ComputerCraft16.isAvailable) { | 
|  | if (label.isInstanceOf[CC16Media.ComputerCraftLabel]) { | 
|  | Sound.playDiskActivity(c, isFloppy = true) | 
|  | } | 
|  | } | 
|  | }) | 
|  | } | 
|  | } |