src/Pure/General/position.scala
author wenzelm
Tue, 18 Feb 2014 18:43:47 +0100
changeset 55555 9c16317c91d1
parent 55490 9b0fb0e2c9f5
child 55884 f2c0eaedd579
permissions -rw-r--r--
prefer concrete list append;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
27968
85b5f024d94b Position properties.
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/General/position.scala
85b5f024d94b Position properties.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
85b5f024d94b Position properties.
wenzelm
parents:
diff changeset
     3
85b5f024d94b Position properties.
wenzelm
parents:
diff changeset
     4
Position properties.
85b5f024d94b Position properties.
wenzelm
parents:
diff changeset
     5
*/
85b5f024d94b Position properties.
wenzelm
parents:
diff changeset
     6
85b5f024d94b Position properties.
wenzelm
parents:
diff changeset
     7
package isabelle
85b5f024d94b Position properties.
wenzelm
parents:
diff changeset
     8
85b5f024d94b Position properties.
wenzelm
parents:
diff changeset
     9
48409
0d2114eb412a more explicit java.io.{File => JFile};
wenzelm
parents: 48370
diff changeset
    10
import java.io.{File => JFile}
0d2114eb412a more explicit java.io.{File => JFile};
wenzelm
parents: 48370
diff changeset
    11
0d2114eb412a more explicit java.io.{File => JFile};
wenzelm
parents: 48370
diff changeset
    12
32450
375db037f4d2 misc tuning;
wenzelm
parents: 31705
diff changeset
    13
object Position
375db037f4d2 misc tuning;
wenzelm
parents: 31705
diff changeset
    14
{
43780
2cb2310d68b6 more uniform Properties in ML and Scala;
wenzelm
parents: 43710
diff changeset
    15
  type T = Properties.T
27968
85b5f024d94b Position properties.
wenzelm
parents:
diff changeset
    16
55490
9b0fb0e2c9f5 updated thy_info.dependencies;
wenzelm
parents: 55429
diff changeset
    17
  val none: T = Nil
9b0fb0e2c9f5 updated thy_info.dependencies;
wenzelm
parents: 55429
diff changeset
    18
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49419
diff changeset
    19
  val Line = new Properties.Int(Markup.LINE)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49419
diff changeset
    20
  val Offset = new Properties.Int(Markup.OFFSET)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49419
diff changeset
    21
  val End_Offset = new Properties.Int(Markup.END_OFFSET)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49419
diff changeset
    22
  val File = new Properties.String(Markup.FILE)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49419
diff changeset
    23
  val Id = new Properties.Long(Markup.ID)
31705
0c83e3e75fcf replaced java Properties by pure property lists;
wenzelm
parents: 29140
diff changeset
    24
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49419
diff changeset
    25
  val Def_Line = new Properties.Int(Markup.DEF_LINE)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49419
diff changeset
    26
  val Def_Offset = new Properties.Int(Markup.DEF_OFFSET)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49419
diff changeset
    27
  val Def_End_Offset = new Properties.Int(Markup.DEF_END_OFFSET)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49419
diff changeset
    28
  val Def_File = new Properties.String(Markup.DEF_FILE)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49419
diff changeset
    29
  val Def_Id = new Properties.Long(Markup.DEF_ID)
49419
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    30
48920
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    31
  object Line_File
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    32
  {
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    33
    def unapply(pos: T): Option[(Int, String)] =
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    34
      (pos, pos) match {
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    35
        case (Line(i), File(name)) => Some((i, name))
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    36
        case (_, File(name)) => Some((1, name))
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    37
        case _ => None
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    38
      }
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    39
  }
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    40
49419
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    41
  object Def_Line_File
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    42
  {
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    43
    def unapply(pos: T): Option[(Int, String)] =
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    44
      (pos, pos) match {
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    45
        case (Def_Line(i), Def_File(name)) => Some((i, name))
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    46
        case (_, Def_File(name)) => Some((1, name))
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    47
        case _ => None
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    48
      }
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    49
  }
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    50
38722
ba31936497c2 organized markup properties via apply/unapply patterns;
wenzelm
parents: 38568
diff changeset
    51
  object Range
ba31936497c2 organized markup properties via apply/unapply patterns;
wenzelm
parents: 38568
diff changeset
    52
  {
55555
9c16317c91d1 prefer concrete list append;
wenzelm
parents: 55490
diff changeset
    53
    def apply(range: Text.Range): T = Offset(range.start) ::: Offset(range.stop)
38722
ba31936497c2 organized markup properties via apply/unapply patterns;
wenzelm
parents: 38568
diff changeset
    54
    def unapply(pos: T): Option[Text.Range] =
48920
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    55
      (pos, pos) match {
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    56
        case (Offset(start), End_Offset(stop)) if start <= stop => Some(Text.Range(start, stop))
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    57
        case (Offset(start), _) => Some(Text.Range(start, start + 1))
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    58
        case _ => None
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    59
      }
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    60
  }
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    61
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    62
  object Id_Offset
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    63
  {
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    64
    def unapply(pos: T): Option[(Long, Text.Offset)] =
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    65
      (pos, pos) match {
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    66
        case (Id(id), Offset(offset)) => Some((id, offset))
38722
ba31936497c2 organized markup properties via apply/unapply patterns;
wenzelm
parents: 38568
diff changeset
    67
        case _ => None
ba31936497c2 organized markup properties via apply/unapply patterns;
wenzelm
parents: 38568
diff changeset
    68
      }
ba31936497c2 organized markup properties via apply/unapply patterns;
wenzelm
parents: 38568
diff changeset
    69
  }
38872
26c505765024 Command.results: ordered by serial number;
wenzelm
parents: 38722
diff changeset
    70
49419
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    71
  object Def_Id_Offset
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    72
  {
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    73
    def unapply(pos: T): Option[(Long, Text.Offset)] =
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    74
      (pos, pos) match {
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    75
        case (Def_Id(id), Def_Offset(offset)) => Some((id, offset))
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    76
        case _ => None
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    77
      }
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    78
  }
e2726211f834 pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents: 48992
diff changeset
    79
55429
4a50f9e70dc1 report (but ignore) markup within auxiliary files;
wenzelm
parents: 50201
diff changeset
    80
  object Reported
38887
1261481ef5e5 Command.State: add reported positions to markup tree, according main message position or Markup.binding/entity/report occurrences in body;
wenzelm
parents: 38872
diff changeset
    81
  {
55429
4a50f9e70dc1 report (but ignore) markup within auxiliary files;
wenzelm
parents: 50201
diff changeset
    82
    def unapply(pos: T): Option[(Long, String, Text.Range)] =
38887
1261481ef5e5 Command.State: add reported positions to markup tree, according main message position or Markup.binding/entity/report occurrences in body;
wenzelm
parents: 38872
diff changeset
    83
      (pos, pos) match {
55429
4a50f9e70dc1 report (but ignore) markup within auxiliary files;
wenzelm
parents: 50201
diff changeset
    84
        case (Id(id), Range(range)) =>
4a50f9e70dc1 report (but ignore) markup within auxiliary files;
wenzelm
parents: 50201
diff changeset
    85
          Some((id, File.unapply(pos).getOrElse(""), range))
38887
1261481ef5e5 Command.State: add reported positions to markup tree, according main message position or Markup.binding/entity/report occurrences in body;
wenzelm
parents: 38872
diff changeset
    86
        case _ => None
1261481ef5e5 Command.State: add reported positions to markup tree, according main message position or Markup.binding/entity/report occurrences in body;
wenzelm
parents: 38872
diff changeset
    87
      }
1261481ef5e5 Command.State: add reported positions to markup tree, according main message position or Markup.binding/entity/report occurrences in body;
wenzelm
parents: 38872
diff changeset
    88
  }
1261481ef5e5 Command.State: add reported positions to markup tree, according main message position or Markup.binding/entity/report occurrences in body;
wenzelm
parents: 38872
diff changeset
    89
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49419
diff changeset
    90
  def purge(props: T): T = props.filterNot(p => Markup.POSITION_PROPERTIES(p._1))
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 45666
diff changeset
    91
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 45666
diff changeset
    92
48992
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 48920
diff changeset
    93
  /* here: inlined formal markup */
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 48920
diff changeset
    94
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 48920
diff changeset
    95
  def here(pos: T): String =
48920
9f84d872feba tuned signature;
wenzelm
parents: 48548
diff changeset
    96
    (Line.unapply(pos), File.unapply(pos)) match {
48370
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 45666
diff changeset
    97
      case (Some(i), None) => " (line " + i.toString + ")"
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 45666
diff changeset
    98
      case (Some(i), Some(name)) => " (line " + i.toString + " of " + quote(name) + ")"
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 45666
diff changeset
    99
      case (None, Some(name)) => " (file " + quote(name) + ")"
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 45666
diff changeset
   100
      case _ => ""
d0fa3efec93b require explicit initialization of options;
wenzelm
parents: 45666
diff changeset
   101
    }
27968
85b5f024d94b Position properties.
wenzelm
parents:
diff changeset
   102
}