src/Tools/jEdit/src/text_structure.scala
author wenzelm
Wed, 13 Jul 2016 19:36:47 +0200
changeset 63479 464ef556bd21
parent 63478 37a3fc20154d
child 63480 05908c773ca7
permissions -rw-r--r--
tuned;
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)
63447
55b1bed86c44 proper filter;
wenzelm
parents: 63446
diff changeset
    29
      if (comments) it.filterNot(_.info.is_space) else it.filter(_.info.is_proper)
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)
63447
55b1bed86c44 proper filter;
wenzelm
parents: 63446
diff changeset
    35
      if (comments) it.filterNot(_.info.is_space) else it.filter(_.info.is_proper)
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
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    82
          val script_indent: Text.Range => Int =
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")
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    94
            (range: Text.Range) =>
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    95
              opt_rendering match {
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    96
                case Some(rendering) => (rendering.indentation(range) min limit) max 0
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    97
                case None => 0
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    98
              }
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    99
          }
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   100
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   101
          def indent_indent(tok: Token): Int =
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   102
            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
   103
            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
   104
            else 0
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   105
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   106
          def indent_offset(tok: Token): Int =
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
   107
            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
   108
            else 0
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   109
63450
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
   110
          def indent_brackets: Int =
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
   111
            (0 /: prev_line_span)(
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
   112
              { case (i, tok) =>
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
   113
                  if (tok.is_open_bracket) i + indent_size
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
   114
                  else if (tok.is_close_bracket) i - indent_size
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
   115
                  else i })
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
   116
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   117
          def indent_extra: Int =
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   118
            if (prev_span.exists(keywords.is_quasi_command(_))) indent_size
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   119
            else 0
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   120
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   121
          def indent_structure: Int =
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   122
            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
   123
              { case ((ind, _), Text.Info(range, tok)) =>
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   124
                  val ind1 = ind + indent_indent(tok)
63479
wenzelm
parents: 63478
diff changeset
   125
                  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
   126
                    val line = buffer.getLineOfOffset(range.start)
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   127
                    line_head(line) match {
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   128
                      case Some(info) if info.info == tok =>
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   129
                        (ind1 + indent_offset(tok) + line_indent(line), true)
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   130
                      case _ => (ind1, false)
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   131
                    }
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   132
                  }
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   133
                  else (ind1, false)
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   134
              }).collectFirst({ case (i, true) => i }).getOrElse(0)
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   135
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   136
          val indent =
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   137
            line_head(current_line) match {
63450
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
   138
              case None => indent_structure + indent_brackets + indent_extra
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   139
              case Some(Text.Info(range, tok)) =>
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
   140
                if (tok.is_begin ||
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
   141
                    keywords.is_before_command(tok) ||
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
   142
                    keywords.is_command(tok, Keyword.theory)) 0
63479
wenzelm
parents: 63478
diff changeset
   143
                else if (keywords.is_command(tok, Keyword.prf_script))
63478
37a3fc20154d clarified indentation of proof commands, notably for "notepad begin", which lacks a head goal;
wenzelm
parents: 63477
diff changeset
   144
                  (indent_structure + script_indent(range)) max indent_size
37a3fc20154d clarified indentation of proof commands, notably for "notepad begin", which lacks a head goal;
wenzelm
parents: 63477
diff changeset
   145
                else if (keywords.is_command(tok, Keyword.proof))
37a3fc20154d clarified indentation of proof commands, notably for "notepad begin", which lacks a head goal;
wenzelm
parents: 63477
diff changeset
   146
                  (indent_structure - indent_offset(tok)) max indent_size
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
   147
                else if (tok.is_command) indent_structure - indent_offset(tok)
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   148
                else {
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
   149
                  prev_line_command match {
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   150
                    case None =>
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   151
                      val extra =
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   152
                        (keywords.is_quasi_command(tok), head_is_quasi_command(prev_line)) match {
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   153
                          case (true, true) | (false, false) => 0
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   154
                          case (true, false) => - indent_extra
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   155
                          case (false, true) => indent_extra
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   156
                        }
63450
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
   157
                      line_indent(prev_line) - indent_offset(tok) + indent_brackets + extra
63431
wenzelm
parents: 63428
diff changeset
   158
                    case Some(prev_tok) =>
63450
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
   159
                      indent_structure - indent_offset(tok) - indent_offset(prev_tok) +
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
   160
                      indent_brackets - indent_indent(prev_tok) + indent_size
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   161
                  }
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
   162
               }
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   163
            }
63423
ed65a6d9929b more operations;
wenzelm
parents: 63422
diff changeset
   164
63425
wenzelm
parents: 63424
diff changeset
   165
          actions.clear()
63439
5ad98525e918 more robust;
wenzelm
parents: 63434
diff changeset
   166
          actions.add(new IndentAction.AlignOffset(indent max 0))
63423
ed65a6d9929b more operations;
wenzelm
parents: 63422
diff changeset
   167
        case _ =>
ed65a6d9929b more operations;
wenzelm
parents: 63422
diff changeset
   168
      }
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   169
    }
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
  /* structure matching */
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   174
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   175
  object Matcher extends StructureMatcher
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   176
  {
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   177
    private def find_block(
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   178
      open: Token => Boolean,
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   179
      close: Token => Boolean,
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   180
      reset: Token => Boolean,
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   181
      restrict: Token => Boolean,
58754
wenzelm
parents: 58752
diff changeset
   182
      it: Iterator[Text.Info[Token]]): Option[(Text.Range, Text.Range)] =
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   183
    {
58754
wenzelm
parents: 58752
diff changeset
   184
      val range1 = it.next.range
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   185
      it.takeWhile(info => !info.info.is_command || restrict(info.info)).
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   186
        scanLeft((range1, 1))(
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   187
          { case ((r, d), Text.Info(range, tok)) =>
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   188
              if (open(tok)) (range, d + 1)
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   189
              else if (close(tok)) (range, d - 1)
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   190
              else if (reset(tok)) (range, 0)
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   191
              else (r, d) }
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   192
        ).collectFirst({ case (range2, 0) => (range1, range2) })
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   193
    }
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   194
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   195
    private def find_pair(text_area: TextArea): Option[(Text.Range, Text.Range)] =
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   196
    {
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   197
      val buffer = text_area.getBuffer
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   198
      val caret_line = text_area.getCaretLine
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   199
      val caret = text_area.getCaretPosition
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   200
59074
7836d927ffca tuned signature;
wenzelm
parents: 58901
diff changeset
   201
      Isabelle.buffer_syntax(text_area.getBuffer) match {
63425
wenzelm
parents: 63424
diff changeset
   202
        case Some(syntax) if buffer.isInstanceOf[Buffer] =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   203
          val keywords = syntax.keywords
58750
1b4b005d73c1 added option jedit_structure_limit;
wenzelm
parents: 58749
diff changeset
   204
63445
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
   205
          val nav = new Navigator(syntax, buffer.asInstanceOf[Buffer], false)
58750
1b4b005d73c1 added option jedit_structure_limit;
wenzelm
parents: 58749
diff changeset
   206
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   207
          def caret_iterator(): Iterator[Text.Info[Token]] =
63425
wenzelm
parents: 63424
diff changeset
   208
            nav.iterator(caret_line).dropWhile(info => !info.range.touches(caret))
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   209
63427
wenzelm
parents: 63425
diff changeset
   210
          def reverse_caret_iterator(): Iterator[Text.Info[Token]] =
wenzelm
parents: 63425
diff changeset
   211
            nav.reverse_iterator(caret_line).dropWhile(info => !info.range.touches(caret))
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   212
63425
wenzelm
parents: 63424
diff changeset
   213
          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
   214
          match {
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   215
            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
   216
              find_block(
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   217
                keywords.is_command(_, Keyword.proof_goal),
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   218
                keywords.is_command(_, Keyword.qed),
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   219
                keywords.is_command(_, Keyword.qed_global),
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   220
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   221
                  keywords.is_command(t, Keyword.diag) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   222
                  keywords.is_command(t, Keyword.proof),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   223
                caret_iterator())
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   224
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   225
            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
   226
              find_block(
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   227
                keywords.is_command(_, Keyword.proof_goal),
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   228
                keywords.is_command(_, Keyword.qed),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   229
                _ => false,
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   230
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   231
                  keywords.is_command(t, Keyword.diag) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   232
                  keywords.is_command(t, Keyword.proof),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   233
                caret_iterator())
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   234
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   235
            case Some(Text.Info(range1, tok)) if keywords.is_command(tok, Keyword.qed_global) =>
63427
wenzelm
parents: 63425
diff changeset
   236
              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
   237
              match {
58750
1b4b005d73c1 added option jedit_structure_limit;
wenzelm
parents: 58749
diff changeset
   238
                case Some(Text.Info(range2, tok))
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   239
                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
   240
                case _ => None
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   241
              }
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   242
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   243
            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
   244
              find_block(
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   245
                keywords.is_command(_, Keyword.qed),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   246
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   247
                  keywords.is_command(t, Keyword.proof_goal) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   248
                  keywords.is_command(t, Keyword.theory_goal),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   249
                _ => false,
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   250
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   251
                  keywords.is_command(t, Keyword.diag) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   252
                  keywords.is_command(t, Keyword.proof) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   253
                  keywords.is_command(t, Keyword.theory_goal),
63427
wenzelm
parents: 63425
diff changeset
   254
                reverse_caret_iterator())
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   255
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   256
            case Some(Text.Info(range1, tok)) if tok.is_begin =>
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   257
              find_block(_.is_begin, _.is_end, _ => false, _ => true, caret_iterator())
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   258
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   259
            case Some(Text.Info(range1, tok)) if tok.is_end =>
63427
wenzelm
parents: 63425
diff changeset
   260
              find_block(_.is_end, _.is_begin, _ => false, _ => true, reverse_caret_iterator())
58763
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   261
              match {
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   262
                case Some((_, range2)) =>
63427
wenzelm
parents: 63425
diff changeset
   263
                  reverse_caret_iterator().
58800
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   264
                    dropWhile(info => info.range != range2).
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
                    find(info => info.info.is_command || info.info.is_begin)
58763
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   267
                  match {
58800
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   268
                    case Some(Text.Info(range3, tok)) =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   269
                      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
   270
                      else Some((range1, range2))
58763
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   271
                    case None => None
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   272
                  }
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   273
                case None => None
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   274
              }
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   275
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   276
            case _ => None
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   277
          }
63425
wenzelm
parents: 63424
diff changeset
   278
        case _ => None
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   279
      }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   280
    }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   281
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   282
    def getMatch(text_area: TextArea): StructureMatcher.Match =
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   283
      find_pair(text_area) match {
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   284
        case Some((_, range)) =>
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   285
          val line = text_area.getBuffer.getLineOfOffset(range.start)
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   286
          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
   287
        case None => null
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   288
      }
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   289
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   290
    def selectMatch(text_area: TextArea)
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   291
    {
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   292
      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
   293
        for {
59074
7836d927ffca tuned signature;
wenzelm
parents: 58901
diff changeset
   294
          syntax <- Isabelle.buffer_syntax(text_area.getBuffer)
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   295
          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
   296
        } yield span.range
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   297
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   298
      find_pair(text_area) match {
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   299
        case Some((r1, r2)) =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   300
          (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
   301
            case (Some(range1), Some(range2)) =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   302
              val start = range1.start min range2.start
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   303
              val stop = range1.stop max range2.stop
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   304
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   305
              text_area.moveCaretPosition(stop, false)
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   306
              if (!text_area.isMultipleSelectionEnabled) text_area.selectNone
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   307
              text_area.addToSelection(new Selection.Range(start, stop))
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   308
            case _ =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   309
          }
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   310
        case None =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   311
      }
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   312
    }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   313
  }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   314
}