src/Pure/System/platform.scala
author wenzelm
Thu, 06 May 2021 23:28:30 +0200
changeset 73639 e1432539df35
parent 73638 a6a9162f3ec1
child 73642 ac6f8fff036b
permissions -rw-r--r--
proper jvm_platform, notably for org.sqlite.lib.path;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31825
d47a9dc1f064 moved platform identification to platform.scala;
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/System/platform.scala
d47a9dc1f064 moved platform identification to platform.scala;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
d47a9dc1f064 moved platform identification to platform.scala;
wenzelm
parents:
diff changeset
     3
69112
5b749aa452c6 misc tuning and modernization;
wenzelm
parents: 64493
diff changeset
     4
System platform identification.
31825
d47a9dc1f064 moved platform identification to platform.scala;
wenzelm
parents:
diff changeset
     5
*/
d47a9dc1f064 moved platform identification to platform.scala;
wenzelm
parents:
diff changeset
     6
d47a9dc1f064 moved platform identification to platform.scala;
wenzelm
parents:
diff changeset
     7
package isabelle
d47a9dc1f064 moved platform identification to platform.scala;
wenzelm
parents:
diff changeset
     8
31828
31584cf201cc sane platform look-and-feel;
wenzelm
parents: 31825
diff changeset
     9
31825
d47a9dc1f064 moved platform identification to platform.scala;
wenzelm
parents:
diff changeset
    10
object Platform
d47a9dc1f064 moved platform identification to platform.scala;
wenzelm
parents:
diff changeset
    11
{
69112
5b749aa452c6 misc tuning and modernization;
wenzelm
parents: 64493
diff changeset
    12
  /* platform family */
31828
31584cf201cc sane platform look-and-feel;
wenzelm
parents: 31825
diff changeset
    13
71383
8313dca6dee9 misc tuning, following hint by IntelliJ;
wenzelm
parents: 69726
diff changeset
    14
  val is_linux: Boolean = System.getProperty("os.name", "") == "Linux"
8313dca6dee9 misc tuning, following hint by IntelliJ;
wenzelm
parents: 69726
diff changeset
    15
  val is_macos: Boolean = System.getProperty("os.name", "") == "Mac OS X"
8313dca6dee9 misc tuning, following hint by IntelliJ;
wenzelm
parents: 69726
diff changeset
    16
  val is_windows: Boolean = System.getProperty("os.name", "").startsWith("Windows")
73602
37243ad3ecb6 fast approximation of test for process group (NB: initial process might already be terminated, while background processes are still running);
wenzelm
parents: 73193
diff changeset
    17
  val is_unix: Boolean = is_linux || is_macos
31825
d47a9dc1f064 moved platform identification to platform.scala;
wenzelm
parents:
diff changeset
    18
73637
f3a356c64193 support for platform family "linux_arm";
wenzelm
parents: 73602
diff changeset
    19
  def is_arm: Boolean = cpu_arch.startsWith("arm")
f3a356c64193 support for platform family "linux_arm";
wenzelm
parents: 73602
diff changeset
    20
69410
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    21
  def family: Family.Value =
73637
f3a356c64193 support for platform family "linux_arm";
wenzelm
parents: 73602
diff changeset
    22
    if (is_linux && is_arm) Family.linux_arm
f3a356c64193 support for platform family "linux_arm";
wenzelm
parents: 73602
diff changeset
    23
    else if (is_linux) Family.linux
69410
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    24
    else if (is_macos) Family.macos
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    25
    else if (is_windows) Family.windows
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    26
    else error("Failed to determine current platform family")
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    27
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    28
  object Family extends Enumeration
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    29
  {
73637
f3a356c64193 support for platform family "linux_arm";
wenzelm
parents: 73602
diff changeset
    30
    val linux_arm, linux, macos, windows = Value
f3a356c64193 support for platform family "linux_arm";
wenzelm
parents: 73602
diff changeset
    31
    val list: List[Value] = List(linux_arm, linux, windows, macos)
69410
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    32
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    33
    def unapply(name: String): Option[Value] =
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    34
      try { Some(withName(name)) }
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    35
      catch { case _: NoSuchElementException => None }
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    36
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    37
    def parse(name: String): Value =
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    38
      unapply(name) getOrElse error("Bad platform family: " + quote(name))
73637
f3a356c64193 support for platform family "linux_arm";
wenzelm
parents: 73602
diff changeset
    39
f3a356c64193 support for platform family "linux_arm";
wenzelm
parents: 73602
diff changeset
    40
    def standard(platform: Value): String =
f3a356c64193 support for platform family "linux_arm";
wenzelm
parents: 73602
diff changeset
    41
      if (platform == linux_arm) "arm64-linux"
f3a356c64193 support for platform family "linux_arm";
wenzelm
parents: 73602
diff changeset
    42
      else if (platform == linux) "x86_64-linux"
f3a356c64193 support for platform family "linux_arm";
wenzelm
parents: 73602
diff changeset
    43
      else if (platform == macos) "x86_64-darwin"
f3a356c64193 support for platform family "linux_arm";
wenzelm
parents: 73602
diff changeset
    44
      else if (platform == windows) "x86_64-cygwin"
73638
a6a9162f3ec1 tuned message;
wenzelm
parents: 73637
diff changeset
    45
      else error("Bad platform family: " + quote(platform.toString))
69410
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    46
  }
c071fcec4323 more explicit Platform.Family;
wenzelm
parents: 69112
diff changeset
    47
31828
31584cf201cc sane platform look-and-feel;
wenzelm
parents: 31825
diff changeset
    48
69112
5b749aa452c6 misc tuning and modernization;
wenzelm
parents: 64493
diff changeset
    49
  /* platform identifiers */
31828
31584cf201cc sane platform look-and-feel;
wenzelm
parents: 31825
diff changeset
    50
69112
5b749aa452c6 misc tuning and modernization;
wenzelm
parents: 64493
diff changeset
    51
  private val X86 = """i.86|x86""".r
5b749aa452c6 misc tuning and modernization;
wenzelm
parents: 64493
diff changeset
    52
  private val X86_64 = """amd64|x86_64""".r
72344
728da67527b9 detect arm64-linux platform;
wenzelm
parents: 72250
diff changeset
    53
  private val Arm64 = """arm64|aarch64""".r
72370
e25c0a6cc335 detect/guess arm32 platform (unsupported);
wenzelm
parents: 72344
diff changeset
    54
  private val Arm32 = """arm""".r
31825
d47a9dc1f064 moved platform identification to platform.scala;
wenzelm
parents:
diff changeset
    55
69726
461f0615faa3 clarified signature;
wenzelm
parents: 69410
diff changeset
    56
  def cpu_arch: String =
461f0615faa3 clarified signature;
wenzelm
parents: 69410
diff changeset
    57
    System.getProperty("os.arch", "") match {
461f0615faa3 clarified signature;
wenzelm
parents: 69410
diff changeset
    58
      case X86() => "x86"
461f0615faa3 clarified signature;
wenzelm
parents: 69410
diff changeset
    59
      case X86_64() => "x86_64"
72344
728da67527b9 detect arm64-linux platform;
wenzelm
parents: 72250
diff changeset
    60
      case Arm64() => "arm64"
72370
e25c0a6cc335 detect/guess arm32 platform (unsupported);
wenzelm
parents: 72344
diff changeset
    61
      case Arm32() => "arm32"
69726
461f0615faa3 clarified signature;
wenzelm
parents: 69410
diff changeset
    62
      case _ => error("Failed to determine CPU architecture")
461f0615faa3 clarified signature;
wenzelm
parents: 69410
diff changeset
    63
    }
461f0615faa3 clarified signature;
wenzelm
parents: 69410
diff changeset
    64
461f0615faa3 clarified signature;
wenzelm
parents: 69410
diff changeset
    65
  def os_name: String =
461f0615faa3 clarified signature;
wenzelm
parents: 69410
diff changeset
    66
    family match {
73639
e1432539df35 proper jvm_platform, notably for org.sqlite.lib.path;
wenzelm
parents: 73638
diff changeset
    67
      case Family.linux_arm => "linux"
69726
461f0615faa3 clarified signature;
wenzelm
parents: 69410
diff changeset
    68
      case Family.macos => "darwin"
461f0615faa3 clarified signature;
wenzelm
parents: 69410
diff changeset
    69
      case _ => family.toString
461f0615faa3 clarified signature;
wenzelm
parents: 69410
diff changeset
    70
    }
461f0615faa3 clarified signature;
wenzelm
parents: 69410
diff changeset
    71
461f0615faa3 clarified signature;
wenzelm
parents: 69410
diff changeset
    72
  lazy val jvm_platform: String = cpu_arch + "-" + os_name
31828
31584cf201cc sane platform look-and-feel;
wenzelm
parents: 31825
diff changeset
    73
31584cf201cc sane platform look-and-feel;
wenzelm
parents: 31825
diff changeset
    74
61001
ea38a1922a0b more version information;
wenzelm
parents: 55618
diff changeset
    75
  /* JVM version */
ea38a1922a0b more version information;
wenzelm
parents: 55618
diff changeset
    76
69112
5b749aa452c6 misc tuning and modernization;
wenzelm
parents: 64493
diff changeset
    77
  private val Version = """1\.(\d+)\.0_(\d+)""".r
71383
8313dca6dee9 misc tuning, following hint by IntelliJ;
wenzelm
parents: 69726
diff changeset
    78
  lazy val jvm_version: String =
61001
ea38a1922a0b more version information;
wenzelm
parents: 55618
diff changeset
    79
    System.getProperty("java.version") match {
ea38a1922a0b more version information;
wenzelm
parents: 55618
diff changeset
    80
      case Version(a, b) => a + "u" + b
ea38a1922a0b more version information;
wenzelm
parents: 55618
diff changeset
    81
      case a => a
ea38a1922a0b more version information;
wenzelm
parents: 55618
diff changeset
    82
    }
ea38a1922a0b more version information;
wenzelm
parents: 55618
diff changeset
    83
ea38a1922a0b more version information;
wenzelm
parents: 55618
diff changeset
    84
41381
77990a6cd558 more explicit jvm_name;
wenzelm
parents: 36786
diff changeset
    85
  /* JVM name */
77990a6cd558 more explicit jvm_name;
wenzelm
parents: 36786
diff changeset
    86
53582
8533b4cb8dd7 more robust System.getProperty with default;
wenzelm
parents: 51617
diff changeset
    87
  val jvm_name: String = System.getProperty("java.vm.name", "")
31825
d47a9dc1f064 moved platform identification to platform.scala;
wenzelm
parents:
diff changeset
    88
}