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

japi.JResources.scala Maven / Gradle / Ivy

There is a newer version: 1.1.0-RC3
Show newest version
package info.hupel.isabelle.japi

import java.io.FileNotFoundException
import java.nio.file.Path
import java.util.{List => JList}

import scala.collection.JavaConverters._

import info.hupel.isabelle.api._
import info.hupel.isabelle.setup._

object JResources {

  def dumpIsabelleResources(): JResources =
    Resources.dumpIsabelleResources() match {
      case Right(resources) => new JResources(resources)
      case Left(error) => sys.error(error.explain)
    }

}

class JResources private(resources: Resources) {

  def getResources(): Resources = resources

  def asSessionsConfiguration(auxPaths: JList[Path], name: String): Configuration =
    resources.asSessionsConfiguration(auxPaths.asScala.toList, name)

  def findTheory(theory: Path): String =
    resources.findTheory(theory).getOrElse(throw new FileNotFoundException(theory.toString))

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy