src/Pure/Tools/isabelle_system.scala
author wenzelm
Thu, 21 Aug 2008 13:05:37 +0200
changeset 27936 947cb8e3d313
parent 27919 1eb8a3902d49
child 27953 b2003c98897c
permissions -rw-r--r--
added get_setting; removed obsolete ISABELLE_HOME, ISABELLE_HOME_USER; added platform_path, which expands variables and performs basic cygwin conversion;

/*  Title:      Pure/Tools/isabelle_system.scala
    ID:         $Id$
    Author:     Makarius

Isabelle system support: settings and path specifications.
*/

package isabelle

import java.util.regex.{Pattern, Matcher}
import java.io.File


object IsabelleSystem {

  /* Isabelle settings */

  class BadSetting(val name: String) extends Exception

  def get_setting(name: String) = {
    val value = System.getenv(name)
    if (value == null || value == "") throw new BadSetting(name)
    else value
  }


  /* File path specifications */

  private val cygdrive_pattern = Pattern.compile("/cygdrive/([a-zA-Z])($|/.*)")

  def platform_path(source_path: String) = {
    val result_path = new StringBuilder

    def init(path: String) = {
      val cygdrive = cygdrive_pattern.matcher(path)
      if (cygdrive.matches) {
        result_path.setLength(0)
        result_path.append(cygdrive.group(1))
        result_path.append(":")
        result_path.append(File.separator)
        cygdrive.group(2)
      }
      else if (path.startsWith("/")) {
        result_path.setLength(0)
        result_path.append(get_setting("ISABELLE_ROOT_JVM"))
        path.substring(1)
      }
      else path
    }
    def append(path: String) = {
      for (p <- init(path).split("/")) {
        if (p != "") {
          val len = result_path.length
          if (len > 0 && result_path(len - 1) != File.separatorChar)
            result_path.append(File.separator)
          result_path.append(p)
        }
      }
    }
    for (p <- init(source_path).split("/")) {
      if (p.startsWith("$")) append(get_setting(p.substring(1)))
      else if (p == "~") append(get_setting("HOME"))
      else if (p == "~~") append(get_setting("ISABELLE_HOME"))
      else append(p)
    }
    result_path.toString
  }
}