| package li.cil.oc.server.fs |
| |
| import java.io |
| import java.io.File |
| import java.util.zip.ZipFile |
| import li.cil.oc.server.component |
| import li.cil.oc.{Config, api} |
| import net.minecraftforge.common.DimensionManager |
| |
| class ReadWriteFileSystem(val root: io.File) extends OutputStreamFileSystem with FileOutputStreamFileSystem |
| |
| class ReadOnlyFileSystem(val root: io.File) extends InputStreamFileSystem with FileInputStreamFileSystem |
| |
| object FileSystem extends api.detail.FileSystemAPI { |
| override def fromClass(clazz: Class[_], domain: String, root: String): Option[api.FileSystem] = { |
| val codeSource = clazz.getProtectionDomain.getCodeSource |
| if (codeSource == null) return None |
| val file = new java.io.File(codeSource.getLocation.toURI) |
| if (!file.exists || file.isDirectory) return None |
| val path = ("/assets/" + domain + "/" + (root.trim + "/")).replace("//", "/") |
| if (file.getName.endsWith(".class")) |
| new File(new File(file.getParent), path) match { |
| case fsp if fsp.exists() && fsp.isDirectory => |
| Some(new ReadOnlyFileSystem(fsp)) |
| case _ => |
| System.getProperty("java.class.path").split(System.getProperty("path.separator")). |
| find(cp => { |
| val fsp = new File(new File(cp), path) |
| fsp.exists() && fsp.isDirectory |
| }) match { |
| case None => None |
| case Some(dir) => Some(new ReadOnlyFileSystem(new File(new File(dir), path))) |
| } |
| } |
| else { |
| val zip = new ZipFile(file) |
| val entry = zip.getEntry(path) |
| if (entry == null || !entry.isDirectory) { |
| zip.close() |
| return None |
| } |
| Some(new ZipFileInputStreamFileSystem(zip, path)) |
| } |
| } |
| |
| override def fromSaveDir(root: String) = { |
| val path = new File(DimensionManager.getCurrentSaveRootDirectory, Config.savePath + root) |
| path.mkdirs() |
| if (path.exists() && path.isDirectory) |
| Some(new ReadWriteFileSystem(path)) |
| else None |
| } |
| |
| override def asNode(fileSystem: api.FileSystem) = Some(new component.FileSystem(fileSystem)) |
| } |