package scala.tools.nsc
package io
import java.io.{ FileInputStream, FileOutputStream, IOException }
import PartialFunction._
object PlainFile {
def fromPath(file: Path): PlainFile =
if (file.isDirectory) new PlainDirectory(file.toDirectory)
else if (file.isFile) new PlainFile(file)
else null
}
class PlainDirectory(givenPath: Directory) extends PlainFile(givenPath) {
override def isDirectory = true
override def iterator = givenPath.list filter (_.exists) map (x => new PlainFile(x))
override def delete(): Unit = givenPath.deleteRecursively()
}
class PlainFile(val givenPath: Path) extends AbstractFile {
assert(path ne null)
val file = givenPath.jfile
override def underlyingSource = Some(this)
private val fpath = givenPath.toAbsolute
def name = givenPath.name
def path = givenPath.path
def absolute = new PlainFile(givenPath.toAbsolute)
override def container: AbstractFile = new PlainFile(givenPath.parent)
override def input = givenPath.toFile.inputStream()
override def output = givenPath.toFile.outputStream()
override def sizeOption = Some(givenPath.length.toInt)
override def hashCode(): Int = fpath.hashCode
override def equals(that: Any): Boolean = that match {
case x: PlainFile => fpath == x.fpath
case _ => false
}
def isDirectory: Boolean = givenPath.isDirectory
def lastModified: Long = givenPath.lastModified
def iterator: Iterator[AbstractFile] = {
if (!isDirectory) Iterator.empty
else givenPath.toDirectory.list filter (_.exists) map (new PlainFile(_))
}
def lookupName(name: String, directory: Boolean): AbstractFile = {
val child = givenPath / name
if ((child.isDirectory && directory) || (child.isFile && !directory)) new PlainFile(child)
else null
}
def create(): Unit = if (!exists) givenPath.createFile()
def delete(): Unit =
if (givenPath.isFile) givenPath.delete()
else if (givenPath.isDirectory) givenPath.toDirectory.deleteRecursively()
def lookupNameUnchecked(name: String, directory: Boolean): AbstractFile =
new PlainFile(givenPath / name)
}