src/Tools/jEdit/src/text_structure.scala
author haftmann
Sun, 16 Oct 2016 13:47:36 +0200
changeset 64249 a3f654f9a46c
parent 63483 2c9444125485
child 64518 b87697eec2ac
permissions -rw-r--r--
dropped potentially explosive rule for groebner simpset, with no observable effect on examples
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
     1
/*  Title:      Tools/jEdit/src/text_structure.scala
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
     3
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
     4
Text structure based on Isabelle/Isar outer syntax.
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
     5
*/
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
     6
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
     7
package isabelle.jedit
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
     8
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
     9
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
    10
import isabelle._
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
    11
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    12
import org.gjt.sp.jedit.indent.{IndentRule, IndentAction}
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
    13
import org.gjt.sp.jedit.textarea.{TextArea, StructureMatcher, Selection}
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    14
import org.gjt.sp.jedit.buffer.JEditBuffer
63423
ed65a6d9929b more operations;
wenzelm
parents: 63422
diff changeset
    15
import org.gjt.sp.jedit.Buffer
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
    16
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
    17
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    18
object Text_Structure
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
    19
{
63425
wenzelm
parents: 63424
diff changeset
    20
  /* token navigator */
wenzelm
parents: 63424
diff changeset
    21
63447
55b1bed86c44 proper filter;
wenzelm
parents: 63446
diff changeset
    22
  class Navigator(syntax: Outer_Syntax, buffer: Buffer, comments: Boolean)
63425
wenzelm
parents: 63424
diff changeset
    23
  {
wenzelm
parents: 63424
diff changeset
    24
    val limit = PIDE.options.value.int("jedit_structure_limit") max 0
wenzelm
parents: 63424
diff changeset
    25
wenzelm
parents: 63424
diff changeset
    26
    def iterator(line: Int, lim: Int = limit): Iterator[Text.Info[Token]] =
63445
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
    27
    {
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
    28
      val it = Token_Markup.line_token_iterator(syntax, buffer, line, line + lim)
63480
wenzelm
parents: 63479
diff changeset
    29
      if (comments) it.filterNot(_.info.is_space) else it.filterNot(_.info.is_improper)
63445
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
    30
    }
63425
wenzelm
parents: 63424
diff changeset
    31
63427
wenzelm
parents: 63425
diff changeset
    32
    def reverse_iterator(line: Int, lim: Int = limit): Iterator[Text.Info[Token]] =
63445
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
    33
    {
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
    34
      val it = Token_Markup.line_token_reverse_iterator(syntax, buffer, line, line - lim)
63480
wenzelm
parents: 63479
diff changeset
    35
      if (comments) it.filterNot(_.info.is_space) else it.filterNot(_.info.is_improper)
63445
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
    36
    }
63425
wenzelm
parents: 63424
diff changeset
    37
  }
wenzelm
parents: 63424
diff changeset
    38
wenzelm
parents: 63424
diff changeset
    39
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    40
  /* indentation */
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    41
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    42
  object Indent_Rule extends IndentRule
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    43
  {
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    44
    private val keyword_open = Keyword.theory_goal ++ Keyword.proof_open
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    45
    private val keyword_close = Keyword.proof_close
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    46
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    47
    def apply(buffer: JEditBuffer, current_line: Int, prev_line: Int, prev_prev_line: Int,
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    48
      actions: java.util.List[IndentAction])
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    49
    {
63425
wenzelm
parents: 63424
diff changeset
    50
      Isabelle.buffer_syntax(buffer) match {
wenzelm
parents: 63424
diff changeset
    51
        case Some(syntax) if buffer.isInstanceOf[Buffer] =>
wenzelm
parents: 63424
diff changeset
    52
          val keywords = syntax.keywords
63445
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
    53
          val nav = new Navigator(syntax, buffer.asInstanceOf[Buffer], true)
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    54
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    55
          val indent_size = buffer.getIndentSize
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    56
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    57
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    58
          def line_indent(line: Int): Int =
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    59
            if (line < 0 || line >= buffer.getLineCount) 0
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    60
            else buffer.getCurrentIndentForLine(line, null)
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    61
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    62
          def line_head(line: Int): Option[Text.Info[Token]] =
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    63
            nav.iterator(line, 1).toStream.headOption
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    64
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    65
          def head_is_quasi_command(line: Int): Boolean =
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    66
            line_head(line) match {
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    67
              case None => false
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    68
              case Some(Text.Info(_, tok)) => keywords.is_quasi_command(tok)
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    69
            }
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    70
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    71
          def prev_line_command: Option[Token] =
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    72
            nav.reverse_iterator(prev_line, 1).
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    73
              collectFirst({ case Text.Info(_, tok) if tok.is_begin_or_command => tok })
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    74
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    75
          def prev_line_span: Iterator[Token] =
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    76
            nav.reverse_iterator(prev_line, 1).map(_.info).takeWhile(tok => !tok.is_begin_or_command)
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    77
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    78
          def prev_span: Iterator[Token] =
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    79
            nav.reverse_iterator(prev_line).map(_.info).takeWhile(tok => !tok.is_begin_or_command)
63450
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
    80
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    81
63481
wenzelm
parents: 63480
diff changeset
    82
          val script_indent: Text.Info[Token] => Int =
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    83
          {
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    84
            val opt_rendering: Option[Rendering] =
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    85
              if (PIDE.options.value.bool("jedit_indent_script"))
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    86
                GUI_Thread.now {
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    87
                  (for {
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    88
                    text_area <- JEdit_Lib.jedit_text_areas(buffer)
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    89
                    doc_view <- PIDE.document_view(text_area)
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    90
                  } yield doc_view.get_rendering).toStream.headOption
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    91
                }
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    92
              else None
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    93
            val limit = PIDE.options.value.int("jedit_indent_script_limit")
63481
wenzelm
parents: 63480
diff changeset
    94
            (info: Text.Info[Token]) =>
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    95
              opt_rendering match {
63481
wenzelm
parents: 63480
diff changeset
    96
                case Some(rendering) if keywords.is_command(info.info, Keyword.prf_script) =>
wenzelm
parents: 63480
diff changeset
    97
                  (rendering.indentation(info.range) min limit) max 0
wenzelm
parents: 63480
diff changeset
    98
                case _ => 0
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    99
              }
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   100
          }
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   101
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   102
          def indent_indent(tok: Token): Int =
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   103
            if (keywords.is_command(tok, keyword_open)) indent_size
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   104
            else if (keywords.is_command(tok, keyword_close)) - indent_size
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   105
            else 0
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   106
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   107
          def indent_offset(tok: Token): Int =
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
   108
            if (keywords.is_command(tok, Keyword.proof_enclose)) indent_size
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   109
            else 0
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   110
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   111
          def indent_structure: Int =
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   112
            nav.reverse_iterator(current_line - 1).scanLeft((0, false))(
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   113
              { case ((ind, _), Text.Info(range, tok)) =>
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   114
                  val ind1 = ind + indent_indent(tok)
63479
wenzelm
parents: 63478
diff changeset
   115
                  if (tok.is_begin_or_command && !keywords.is_command(tok, Keyword.prf_script)) {
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   116
                    val line = buffer.getLineOfOffset(range.start)
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   117
                    line_head(line) match {
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   118
                      case Some(info) if info.info == tok =>
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   119
                        (ind1 + indent_offset(tok) + line_indent(line), true)
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   120
                      case _ => (ind1, false)
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   121
                    }
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   122
                  }
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   123
                  else (ind1, false)
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   124
              }).collectFirst({ case (i, true) => i }).getOrElse(0)
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   125
63480
wenzelm
parents: 63479
diff changeset
   126
          def indent_brackets: Int =
wenzelm
parents: 63479
diff changeset
   127
            (0 /: prev_line_span)(
wenzelm
parents: 63479
diff changeset
   128
              { case (i, tok) =>
wenzelm
parents: 63479
diff changeset
   129
                  if (tok.is_open_bracket) i + indent_size
wenzelm
parents: 63479
diff changeset
   130
                  else if (tok.is_close_bracket) i - indent_size
wenzelm
parents: 63479
diff changeset
   131
                  else i })
wenzelm
parents: 63479
diff changeset
   132
wenzelm
parents: 63479
diff changeset
   133
          def indent_extra: Int =
wenzelm
parents: 63479
diff changeset
   134
            if (prev_span.exists(keywords.is_quasi_command(_))) indent_size
wenzelm
parents: 63479
diff changeset
   135
            else 0
wenzelm
parents: 63479
diff changeset
   136
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   137
          val indent =
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   138
            line_head(current_line) match {
63450
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
   139
              case None => indent_structure + indent_brackets + indent_extra
63481
wenzelm
parents: 63480
diff changeset
   140
              case Some(info @ Text.Info(range, tok)) =>
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
   141
                if (tok.is_begin ||
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
   142
                    keywords.is_before_command(tok) ||
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
   143
                    keywords.is_command(tok, Keyword.theory)) 0
63482
cf2d332acb7c clarified indentation (amending 37a3fc20154d);
wenzelm
parents: 63481
diff changeset
   144
                else if (keywords.is_command(tok, Keyword.proof_enclose))
cf2d332acb7c clarified indentation (amending 37a3fc20154d);
wenzelm
parents: 63481
diff changeset
   145
                  indent_structure + script_indent(info) - indent_offset(tok)
63478
37a3fc20154d clarified indentation of proof commands, notably for "notepad begin", which lacks a head goal;
wenzelm
parents: 63477
diff changeset
   146
                else if (keywords.is_command(tok, Keyword.proof))
63481
wenzelm
parents: 63480
diff changeset
   147
                  (indent_structure + script_indent(info) - indent_offset(tok)) max indent_size
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
   148
                else if (tok.is_command) indent_structure - indent_offset(tok)
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   149
                else {
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
   150
                  prev_line_command match {
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   151
                    case None =>
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   152
                      val extra =
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   153
                        (keywords.is_quasi_command(tok), head_is_quasi_command(prev_line)) match {
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   154
                          case (true, true) | (false, false) => 0
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   155
                          case (true, false) => - indent_extra
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   156
                          case (false, true) => indent_extra
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   157
                        }
63483
wenzelm
parents: 63482
diff changeset
   158
                      line_indent(prev_line) + indent_brackets + extra - indent_offset(tok)
63431
wenzelm
parents: 63428
diff changeset
   159
                    case Some(prev_tok) =>
63483
wenzelm
parents: 63482
diff changeset
   160
                      indent_structure + indent_brackets + indent_size - indent_offset(tok) -
wenzelm
parents: 63482
diff changeset
   161
                      indent_offset(prev_tok) - indent_indent(prev_tok)
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   162
                  }
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   163
               }
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   164
            }
63423
ed65a6d9929b more operations;
wenzelm
parents: 63422
diff changeset
   165
63425
wenzelm
parents: 63424
diff changeset
   166
          actions.clear()
63439
5ad98525e918 more robust;
wenzelm
parents: 63434
diff changeset
   167
          actions.add(new IndentAction.AlignOffset(indent max 0))
63423
ed65a6d9929b more operations;
wenzelm
parents: 63422
diff changeset
   168
        case _ =>
ed65a6d9929b more operations;
wenzelm
parents: 63422
diff changeset
   169
      }
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   170
    }
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   171
  }
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   172
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   173
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   174
  /* structure matching */
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   175
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   176
  object Matcher extends StructureMatcher
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   177
  {
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   178
    private def find_block(
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   179
      open: Token => Boolean,
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   180
      close: Token => Boolean,
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   181
      reset: Token => Boolean,
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   182
      restrict: Token => Boolean,
58754
wenzelm
parents: 58752
diff changeset
   183
      it: Iterator[Text.Info[Token]]): Option[(Text.Range, Text.Range)] =
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   184
    {
58754
wenzelm
parents: 58752
diff changeset
   185
      val range1 = it.next.range
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   186
      it.takeWhile(info => !info.info.is_command || restrict(info.info)).
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   187
        scanLeft((range1, 1))(
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   188
          { case ((r, d), Text.Info(range, tok)) =>
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   189
              if (open(tok)) (range, d + 1)
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   190
              else if (close(tok)) (range, d - 1)
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   191
              else if (reset(tok)) (range, 0)
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   192
              else (r, d) }
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   193
        ).collectFirst({ case (range2, 0) => (range1, range2) })
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   194
    }
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   195
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   196
    private def find_pair(text_area: TextArea): Option[(Text.Range, Text.Range)] =
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   197
    {
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   198
      val buffer = text_area.getBuffer
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   199
      val caret_line = text_area.getCaretLine
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   200
      val caret = text_area.getCaretPosition
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   201
59074
7836d927ffca tuned signature;
wenzelm
parents: 58901
diff changeset
   202
      Isabelle.buffer_syntax(text_area.getBuffer) match {
63425
wenzelm
parents: 63424
diff changeset
   203
        case Some(syntax) if buffer.isInstanceOf[Buffer] =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   204
          val keywords = syntax.keywords
58750
1b4b005d73c1 added option jedit_structure_limit;
wenzelm
parents: 58749
diff changeset
   205
63445
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
   206
          val nav = new Navigator(syntax, buffer.asInstanceOf[Buffer], false)
58750
1b4b005d73c1 added option jedit_structure_limit;
wenzelm
parents: 58749
diff changeset
   207
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   208
          def caret_iterator(): Iterator[Text.Info[Token]] =
63425
wenzelm
parents: 63424
diff changeset
   209
            nav.iterator(caret_line).dropWhile(info => !info.range.touches(caret))
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   210
63427
wenzelm
parents: 63425
diff changeset
   211
          def reverse_caret_iterator(): Iterator[Text.Info[Token]] =
wenzelm
parents: 63425
diff changeset
   212
            nav.reverse_iterator(caret_line).dropWhile(info => !info.range.touches(caret))
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   213
63425
wenzelm
parents: 63424
diff changeset
   214
          nav.iterator(caret_line, 1).find(info => info.range.touches(caret))
58756
eb5d0c58564d ignore improper tokens to avoid ambiguity of Range.touches (assuming that relevant tokens are separated properly);
wenzelm
parents: 58755
diff changeset
   215
          match {
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   216
            case Some(Text.Info(range1, tok)) if keywords.is_command(tok, Keyword.theory_goal) =>
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   217
              find_block(
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   218
                keywords.is_command(_, Keyword.proof_goal),
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   219
                keywords.is_command(_, Keyword.qed),
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   220
                keywords.is_command(_, Keyword.qed_global),
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   221
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   222
                  keywords.is_command(t, Keyword.diag) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   223
                  keywords.is_command(t, Keyword.proof),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   224
                caret_iterator())
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   225
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   226
            case Some(Text.Info(range1, tok)) if keywords.is_command(tok, Keyword.proof_goal) =>
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   227
              find_block(
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   228
                keywords.is_command(_, Keyword.proof_goal),
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   229
                keywords.is_command(_, Keyword.qed),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   230
                _ => false,
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   231
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   232
                  keywords.is_command(t, Keyword.diag) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   233
                  keywords.is_command(t, Keyword.proof),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   234
                caret_iterator())
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   235
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   236
            case Some(Text.Info(range1, tok)) if keywords.is_command(tok, Keyword.qed_global) =>
63427
wenzelm
parents: 63425
diff changeset
   237
              reverse_caret_iterator().find(info => keywords.is_command(info.info, Keyword.theory))
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   238
              match {
58750
1b4b005d73c1 added option jedit_structure_limit;
wenzelm
parents: 58749
diff changeset
   239
                case Some(Text.Info(range2, tok))
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   240
                if keywords.is_command(tok, Keyword.theory_goal) => Some((range1, range2))
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   241
                case _ => None
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   242
              }
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   243
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   244
            case Some(Text.Info(range1, tok)) if keywords.is_command(tok, Keyword.qed) =>
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   245
              find_block(
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   246
                keywords.is_command(_, Keyword.qed),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   247
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   248
                  keywords.is_command(t, Keyword.proof_goal) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   249
                  keywords.is_command(t, Keyword.theory_goal),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   250
                _ => false,
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   251
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   252
                  keywords.is_command(t, Keyword.diag) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   253
                  keywords.is_command(t, Keyword.proof) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   254
                  keywords.is_command(t, Keyword.theory_goal),
63427
wenzelm
parents: 63425
diff changeset
   255
                reverse_caret_iterator())
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   256
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   257
            case Some(Text.Info(range1, tok)) if tok.is_begin =>
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   258
              find_block(_.is_begin, _.is_end, _ => false, _ => true, caret_iterator())
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   259
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   260
            case Some(Text.Info(range1, tok)) if tok.is_end =>
63427
wenzelm
parents: 63425
diff changeset
   261
              find_block(_.is_end, _.is_begin, _ => false, _ => true, reverse_caret_iterator())
58763
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   262
              match {
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   263
                case Some((_, range2)) =>
63427
wenzelm
parents: 63425
diff changeset
   264
                  reverse_caret_iterator().
58800
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   265
                    dropWhile(info => info.range != range2).
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   266
                    dropWhile(info => info.range == range2).
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   267
                    find(info => info.info.is_command || info.info.is_begin)
58763
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   268
                  match {
58800
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   269
                    case Some(Text.Info(range3, tok)) =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   270
                      if (keywords.is_command(tok, Keyword.theory_block)) Some((range1, range3))
58800
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   271
                      else Some((range1, range2))
58763
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   272
                    case None => None
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   273
                  }
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   274
                case None => None
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   275
              }
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   276
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   277
            case _ => None
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   278
          }
63425
wenzelm
parents: 63424
diff changeset
   279
        case _ => None
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   280
      }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   281
    }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   282
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   283
    def getMatch(text_area: TextArea): StructureMatcher.Match =
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   284
      find_pair(text_area) match {
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   285
        case Some((_, range)) =>
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   286
          val line = text_area.getBuffer.getLineOfOffset(range.start)
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   287
          new StructureMatcher.Match(Matcher, line, range.start, line, range.stop)
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   288
        case None => null
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   289
      }
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   290
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   291
    def selectMatch(text_area: TextArea)
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   292
    {
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   293
      def get_span(offset: Text.Offset): Option[Text.Range] =
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   294
        for {
59074
7836d927ffca tuned signature;
wenzelm
parents: 58901
diff changeset
   295
          syntax <- Isabelle.buffer_syntax(text_area.getBuffer)
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   296
          span <- Token_Markup.command_span(syntax, text_area.getBuffer, offset)
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   297
        } yield span.range
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   298
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   299
      find_pair(text_area) match {
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   300
        case Some((r1, r2)) =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   301
          (get_span(r1.start), get_span(r2.start)) match {
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   302
            case (Some(range1), Some(range2)) =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   303
              val start = range1.start min range2.start
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   304
              val stop = range1.stop max range2.stop
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   305
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   306
              text_area.moveCaretPosition(stop, false)
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   307
              if (!text_area.isMultipleSelectionEnabled) text_area.selectNone
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   308
              text_area.addToSelection(new Selection.Range(start, stop))
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   309
            case _ =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   310
          }
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   311
        case None =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   312
      }
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   313
    }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   314
  }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   315
}