blob: 488dad4cd9a759504fac85ab2f083d30a5e16b65 [file] [log] [blame] [raw]
package li.cil.oc.server.fs
import dan200.computer.api.{IWritableMount, IMount}
import java.io
import java.util.zip.ZipFile
import li.cil.oc.server.component
import li.cil.oc.{Config, api}
import net.minecraftforge.common.DimensionManager
object FileSystem extends api.detail.FileSystemAPI {
override def fromClass(clazz: Class[_], domain: String, root: String): api.fs.FileSystem = {
val codeSource = clazz.getProtectionDomain.getCodeSource
if (codeSource == null) return null
val file = new io.File(codeSource.getLocation.toURI)
if (!file.exists || file.isDirectory) return null
val path = ("/assets/" + domain + "/" + (root.trim + "/")).replace("//", "/")
if (file.getName.endsWith(".class"))
new io.File(new io.File(file.getParent), path) match {
case fsp if fsp.exists() && fsp.isDirectory =>
new ReadOnlyFileSystem(fsp)
case _ =>
System.getProperty("java.class.path").split(System.getProperty("path.separator")).
find(cp => {
val fsp = new io.File(new io.File(cp), path)
fsp.exists() && fsp.isDirectory
}) match {
case None => null
case Some(dir) => new ReadOnlyFileSystem(new io.File(new io.File(dir), path))
}
}
else {
val zip = new ZipFile(file)
val entry = zip.getEntry(path)
if (entry == null || !entry.isDirectory) {
zip.close()
return null
}
new ZipFileInputStreamFileSystem(zip, path)
}
}
override def fromSaveDirectory(root: String, capacity: Long, buffered: Boolean) = {
val path = new io.File(DimensionManager.getCurrentSaveRootDirectory, Config.savePath + root)
path.mkdirs()
if (path.exists() && path.isDirectory) {
if (buffered)
new BufferedFileSystem(path, capacity)
else
new ReadWriteFileSystem(path, capacity)
}
else null
}
def fromMemory(capacity: Long): api.fs.FileSystem = new RamFileSystem(capacity)
def fromComputerCraft(mount: IMount) = new ComputerCraftFileSystem(mount)
def fromComputerCraft(mount: IWritableMount) = new ComputerCraftWritableFileSystem(mount)
override def asManagedEnvironment(fileSystem: api.fs.FileSystem) = new component.FileSystem(fileSystem)
private class ReadOnlyFileSystem(protected val root: io.File)
extends InputStreamFileSystem
with FileInputStreamFileSystem
private class ReadWriteFileSystem(protected val root: io.File, protected val capacity: Long)
extends OutputStreamFileSystem
with FileOutputStreamFileSystem
with Capacity
private class RamFileSystem(protected val capacity: Long)
extends VirtualFileSystem
with Capacity
with Volatile
private class BufferedFileSystem(protected val fileRoot: io.File, protected val capacity: Long)
extends VirtualFileSystem
with Capacity
with Buffered
}