src/Pure/System/invoke_scala.scala
author wenzelm
Fri, 15 Nov 2013 19:31:10 +0100
changeset 54442 c39972ddd672
parent 52582 31467a4b1466
child 56385 76acce58aeab
permissions -rw-r--r--
more specific Protocol_Output: empty message.body, main content via bytes/text;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
43744
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/System/invoke_scala.scala
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
     3
49173
fa01a202399c eliminated potentially confusing terminology of Scala "layer";
wenzelm
parents: 44158
diff changeset
     4
JVM method invocation service via Isabelle/Scala.
43744
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
     5
*/
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
     6
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
     7
package isabelle
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
     8
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
     9
43751
8c7f69f1825b proper InvocationTargetException.getCause for indirect exceptions;
wenzelm
parents: 43748
diff changeset
    10
import java.lang.reflect.{Method, Modifier, InvocationTargetException}
43748
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    11
import scala.util.matching.Regex
43744
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
    12
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
    13
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
    14
object Invoke_Scala
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
    15
{
43748
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    16
  /* method reflection */
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    17
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    18
  private val Ext = new Regex("(.*)\\.([^.]*)")
43744
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
    19
  private val STRING = Class.forName("java.lang.String")
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
    20
43748
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    21
  private def get_method(name: String): String => String =
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    22
    name match {
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    23
      case Ext(class_name, method_name) =>
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    24
        val m =
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    25
          try { Class.forName(class_name).getMethod(method_name, STRING) }
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    26
          catch {
43751
8c7f69f1825b proper InvocationTargetException.getCause for indirect exceptions;
wenzelm
parents: 43748
diff changeset
    27
            case _: ClassNotFoundException | _: NoSuchMethodException =>
8c7f69f1825b proper InvocationTargetException.getCause for indirect exceptions;
wenzelm
parents: 43748
diff changeset
    28
              error("No such method: " + quote(name))
43748
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    29
          }
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    30
        if (!Modifier.isStatic(m.getModifiers)) error("Not at static method: " + m.toString)
43751
8c7f69f1825b proper InvocationTargetException.getCause for indirect exceptions;
wenzelm
parents: 43748
diff changeset
    31
        if (m.getReturnType != STRING) error("Bad method return type: " + m.toString)
43748
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    32
43751
8c7f69f1825b proper InvocationTargetException.getCause for indirect exceptions;
wenzelm
parents: 43748
diff changeset
    33
        (arg: String) => {
8c7f69f1825b proper InvocationTargetException.getCause for indirect exceptions;
wenzelm
parents: 43748
diff changeset
    34
          try { m.invoke(null, arg).asInstanceOf[String] }
8c7f69f1825b proper InvocationTargetException.getCause for indirect exceptions;
wenzelm
parents: 43748
diff changeset
    35
          catch {
8c7f69f1825b proper InvocationTargetException.getCause for indirect exceptions;
wenzelm
parents: 43748
diff changeset
    36
            case e: InvocationTargetException if e.getCause != null =>
8c7f69f1825b proper InvocationTargetException.getCause for indirect exceptions;
wenzelm
parents: 43748
diff changeset
    37
              throw e.getCause
8c7f69f1825b proper InvocationTargetException.getCause for indirect exceptions;
wenzelm
parents: 43748
diff changeset
    38
          }
8c7f69f1825b proper InvocationTargetException.getCause for indirect exceptions;
wenzelm
parents: 43748
diff changeset
    39
        }
43748
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    40
      case _ => error("Malformed method name: " + quote(name))
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    41
    }
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    42
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    43
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    44
  /* method invocation */
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    45
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    46
  object Tag extends Enumeration
43744
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
    47
  {
43748
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    48
    val NULL = Value("0")
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    49
    val OK = Value("1")
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    50
    val ERROR = Value("2")
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    51
    val FAIL = Value("3")
49470
ee564db2649b more management of Invoke_Scala tasks;
wenzelm
parents: 49173
diff changeset
    52
    val INTERRUPT = Value("4")
43748
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    53
  }
43744
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
    54
43748
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    55
  def method(name: String, arg: String): (Tag.Value, String) =
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    56
    Exn.capture { get_method(name) } match {
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    57
      case Exn.Res(f) =>
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    58
        Exn.capture { f(arg) } match {
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    59
          case Exn.Res(null) => (Tag.NULL, "")
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    60
          case Exn.Res(res) => (Tag.OK, res)
49470
ee564db2649b more management of Invoke_Scala tasks;
wenzelm
parents: 49173
diff changeset
    61
          case Exn.Exn(_: InterruptedException) => (Tag.INTERRUPT, "")
44158
fe6d1ae7a065 clarified Exn.message;
wenzelm
parents: 43751
diff changeset
    62
          case Exn.Exn(e) => (Tag.ERROR, Exn.message(e))
43748
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    63
        }
44158
fe6d1ae7a065 clarified Exn.message;
wenzelm
parents: 43751
diff changeset
    64
      case Exn.Exn(e) => (Tag.FAIL, Exn.message(e))
43748
c70bd78ec83c JVM method invocation service via Scala layer;
wenzelm
parents: 43744
diff changeset
    65
    }
43744
2c7e1565b4a3 some support to invoke Scala methods under program control;
wenzelm
parents:
diff changeset
    66
}
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    67
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    68
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    69
/* protocol handler */
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    70
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    71
class Invoke_Scala extends Session.Protocol_Handler
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    72
{
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    73
  private var futures = Map.empty[String, java.util.concurrent.Future[Unit]]
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    74
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    75
  private def fulfill(prover: Session.Prover,
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    76
    id: String, tag: Invoke_Scala.Tag.Value, res: String): Unit = synchronized
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    77
  {
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    78
    if (futures.isDefinedAt(id)) {
52582
31467a4b1466 tuned signature;
wenzelm
parents: 52111
diff changeset
    79
      prover.protocol_command("Invoke_Scala.fulfill", id, tag.toString, res)
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    80
      futures -= id
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    81
    }
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    82
  }
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    83
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    84
  private def cancel(prover: Session.Prover,
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    85
    id: String, future: java.util.concurrent.Future[Unit])
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    86
  {
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    87
    future.cancel(true)
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    88
    fulfill(prover, id, Invoke_Scala.Tag.INTERRUPT, "")
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    89
  }
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    90
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    91
  private def invoke_scala(
54442
c39972ddd672 more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents: 52582
diff changeset
    92
    prover: Session.Prover, msg: Isabelle_Process.Protocol_Output): Boolean = synchronized
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    93
  {
54442
c39972ddd672 more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents: 52582
diff changeset
    94
    msg.properties match {
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    95
      case Markup.Invoke_Scala(name, id) =>
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    96
        futures += (id ->
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    97
          default_thread_pool.submit(() =>
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
    98
            {
54442
c39972ddd672 more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents: 52582
diff changeset
    99
              val (tag, result) = Invoke_Scala.method(name, msg.text)
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   100
              fulfill(prover, id, tag, result)
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   101
            }))
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   102
        true
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   103
      case _ => false
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   104
    }
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   105
  }
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   106
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   107
  private def cancel_scala(
54442
c39972ddd672 more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents: 52582
diff changeset
   108
    prover: Session.Prover, msg: Isabelle_Process.Protocol_Output): Boolean = synchronized
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   109
  {
54442
c39972ddd672 more specific Protocol_Output: empty message.body, main content via bytes/text;
wenzelm
parents: 52582
diff changeset
   110
    msg.properties match {
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   111
      case Markup.Cancel_Scala(id) =>
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   112
        futures.get(id) match {
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   113
          case Some(future) => cancel(prover, id, future)
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   114
          case None =>
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   115
        }
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   116
        true
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   117
      case _ => false
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   118
    }
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   119
  }
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   120
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   121
  override def stop(prover: Session.Prover): Unit = synchronized
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   122
  {
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   123
    for ((id, future) <- futures) cancel(prover, id, future)
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   124
    futures = Map.empty
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   125
  }
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   126
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   127
  val functions = Map(
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   128
    Markup.INVOKE_SCALA -> invoke_scala _,
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   129
    Markup.CANCEL_SCALA -> cancel_scala _)
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   130
}
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 49470
diff changeset
   131