All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ammonite.compiler.DirectoryClassPath.scala Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package dotty.ammonite.compiler

import java.io.{File => JFile}
import dotty.tools.dotc.classpath
import dotty.tools.io.{AbstractFile, PlainFile, ClassPath, ClassRepresentation, EfficientClassPath}
import classpath.FileUtils._

case class DirectoryClassPath(dir: JFile)
    extends classpath.JFileDirectoryLookup[classpath.BinaryFileEntry]
    with classpath.NoSourcePaths {

  def findClassFile(className: String): Option[AbstractFile] = {
    val relativePath = classpath.FileUtils.dirPath(className)
    val classFile = new JFile(dir, relativePath + ".class")
    if (classFile.exists) {
      val wrappedClassFile = new dotty.tools.io.File(classFile.toPath)
      val abstractClassFile = new PlainFile(wrappedClassFile)
      Some(abstractClassFile)
    } else None
  }

  protected def createFileEntry(file: AbstractFile): classpath.BinaryFileEntry =
    classpath.BinaryFileEntry(file)
  protected def isMatchingFile(f: JFile): Boolean =
    f.isClass

  private[dotty] def classes(inPackage: classpath.PackageName): Seq[classpath.BinaryFileEntry] =
    files(inPackage)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy