src/Pure/PIDE/text.scala
author wenzelm
Fri, 06 Apr 2012 12:02:24 +0200
changeset 47347 af937661e4a1
parent 46712 8650d9a95736
child 47542 26d0a76fef0a
permissions -rw-r--r--
stop node execution at first unassigned exec;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
38425
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
     1
/*  Title:      Pure/PIDE/text.scala
45673
cd41e3903fbf separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents: 45667
diff changeset
     2
    Module:     PIDE
34276
12436485c244 Basic edits on plain text.
wenzelm
parents:
diff changeset
     3
    Author:     Fabian Immler, TU Munich
12436485c244 Basic edits on plain text.
wenzelm
parents:
diff changeset
     4
    Author:     Makarius
12436485c244 Basic edits on plain text.
wenzelm
parents:
diff changeset
     5
38425
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
     6
Basic operations on plain text.
34276
12436485c244 Basic edits on plain text.
wenzelm
parents:
diff changeset
     7
*/
12436485c244 Basic edits on plain text.
wenzelm
parents:
diff changeset
     8
12436485c244 Basic edits on plain text.
wenzelm
parents:
diff changeset
     9
package isabelle
12436485c244 Basic edits on plain text.
wenzelm
parents:
diff changeset
    10
12436485c244 Basic edits on plain text.
wenzelm
parents:
diff changeset
    11
44379
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    12
import scala.collection.mutable
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    13
import scala.math.Ordering
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    14
import scala.util.Sorting
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    15
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    16
38425
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
    17
object Text
34276
12436485c244 Basic edits on plain text.
wenzelm
parents:
diff changeset
    18
{
38477
f01f4ab2a0af refined notion of Text.Range;
wenzelm
parents: 38427
diff changeset
    19
  /* offset */
38426
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
    20
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
    21
  type Offset = Int
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
    22
38477
f01f4ab2a0af refined notion of Text.Range;
wenzelm
parents: 38427
diff changeset
    23
38565
32b924a832c4 further clarification/unification of Position.Range and Text.Range concerning singularities: start offset is always included;
wenzelm
parents: 38564
diff changeset
    24
  /* range -- with total quasi-ordering */
38477
f01f4ab2a0af refined notion of Text.Range;
wenzelm
parents: 38427
diff changeset
    25
38568
f117ba49a59c alternative constructor for Range singularities;
wenzelm
parents: 38565
diff changeset
    26
  object Range
f117ba49a59c alternative constructor for Range singularities;
wenzelm
parents: 38565
diff changeset
    27
  {
f117ba49a59c alternative constructor for Range singularities;
wenzelm
parents: 38565
diff changeset
    28
    def apply(start: Offset): Range = Range(start, start)
44379
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    29
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    30
    object Ordering extends scala.math.Ordering[Text.Range]
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    31
    {
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    32
      def compare(r1: Text.Range, r2: Text.Range): Int = r1 compare r2
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    33
    }
38568
f117ba49a59c alternative constructor for Range singularities;
wenzelm
parents: 38565
diff changeset
    34
  }
f117ba49a59c alternative constructor for Range singularities;
wenzelm
parents: 38565
diff changeset
    35
38426
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
    36
  sealed case class Range(val start: Offset, val stop: Offset)
38427
7066fbd315ae some derived operations on Text.Range;
wenzelm
parents: 38426
diff changeset
    37
  {
38565
32b924a832c4 further clarification/unification of Position.Range and Text.Range concerning singularities: start offset is always included;
wenzelm
parents: 38564
diff changeset
    38
    // denotation: {start} Un {i. start < i & i < stop}
43425
0a5612040a8b more explicit error message;
wenzelm
parents: 38725
diff changeset
    39
    if (start > stop)
0a5612040a8b more explicit error message;
wenzelm
parents: 38725
diff changeset
    40
      error("Bad range: [" + start.toString + ":" + stop.toString + "]")
38477
f01f4ab2a0af refined notion of Text.Range;
wenzelm
parents: 38427
diff changeset
    41
38563
f6c9a4f9f66f added toString methods;
wenzelm
parents: 38562
diff changeset
    42
    override def toString = "[" + start.toString + ":" + stop.toString + "]"
f6c9a4f9f66f added toString methods;
wenzelm
parents: 38562
diff changeset
    43
38427
7066fbd315ae some derived operations on Text.Range;
wenzelm
parents: 38426
diff changeset
    44
    def map(f: Offset => Offset): Range = Range(f(start), f(stop))
7066fbd315ae some derived operations on Text.Range;
wenzelm
parents: 38426
diff changeset
    45
    def +(i: Offset): Range = map(_ + i)
38570
3fa11fb01f86 added Text.Range.- convenience;
wenzelm
parents: 38568
diff changeset
    46
    def -(i: Offset): Range = map(_ - i)
38662
4d4553e09337 Text.Range.is_singleton;
wenzelm
parents: 38578
diff changeset
    47
38725
3d9d5ff80f6f tuned signature;
wenzelm
parents: 38662
diff changeset
    48
    def is_singularity: Boolean = start == stop
38662
4d4553e09337 Text.Range.is_singleton;
wenzelm
parents: 38578
diff changeset
    49
38565
32b924a832c4 further clarification/unification of Position.Range and Text.Range concerning singularities: start offset is always included;
wenzelm
parents: 38564
diff changeset
    50
    def contains(i: Offset): Boolean = start == i || start < i && i < stop
32b924a832c4 further clarification/unification of Position.Range and Text.Range concerning singularities: start offset is always included;
wenzelm
parents: 38564
diff changeset
    51
    def contains(that: Range): Boolean = this.contains(that.start) && that.stop <= this.stop
32b924a832c4 further clarification/unification of Position.Range and Text.Range concerning singularities: start offset is always included;
wenzelm
parents: 38564
diff changeset
    52
    def overlaps(that: Range): Boolean = this.contains(that.start) || that.contains(this.start)
32b924a832c4 further clarification/unification of Position.Range and Text.Range concerning singularities: start offset is always included;
wenzelm
parents: 38564
diff changeset
    53
    def compare(that: Range): Int = if (overlaps(that)) 0 else this.start compare that.start
38485
c5eae9fc1fa4 Text.Range: improved handling of singularities;
wenzelm
parents: 38477
diff changeset
    54
45240
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    55
    def apart(that: Range): Boolean =
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    56
      (this.start max that.start) > (this.stop min that.stop)
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    57
38564
a6e2715fac5f parameterized type Markup_Tree.Node;
wenzelm
parents: 38563
diff changeset
    58
    def restrict(that: Range): Range =
38485
c5eae9fc1fa4 Text.Range: improved handling of singularities;
wenzelm
parents: 38477
diff changeset
    59
      Range(this.start max that.start, this.stop min that.stop)
43428
b41dea5772c6 more robust treatment of partial range restriction;
wenzelm
parents: 43425
diff changeset
    60
b41dea5772c6 more robust treatment of partial range restriction;
wenzelm
parents: 43425
diff changeset
    61
    def try_restrict(that: Range): Option[Range] =
45240
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    62
      if (this apart that) None
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    63
      else Some(restrict(that))
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    64
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    65
    def try_join(that: Range): Option[Range] =
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    66
      if (this apart that) None
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    67
      else Some(Range(this.start min that.start, this.stop max that.stop))
38427
7066fbd315ae some derived operations on Text.Range;
wenzelm
parents: 38426
diff changeset
    68
  }
38426
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
    69
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
    70
44379
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    71
  /* perspective */
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    72
44473
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
    73
  object Perspective
44379
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    74
  {
44474
681447a9ffe5 slightly more abstract Command.Perspective;
wenzelm
parents: 44473
diff changeset
    75
    val empty: Perspective = Perspective(Nil)
44379
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    76
46576
ae9286f64574 approximate Perspective.full within the bounds of the JVM;
wenzelm
parents: 46207
diff changeset
    77
    def full: Perspective = Perspective(List(Range(0, Integer.MAX_VALUE / 2)))
ae9286f64574 approximate Perspective.full within the bounds of the JVM;
wenzelm
parents: 46207
diff changeset
    78
44473
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
    79
    def apply(ranges: Seq[Range]): Perspective =
44379
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    80
    {
44473
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
    81
      val result = new mutable.ListBuffer[Text.Range]
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
    82
      var last: Option[Text.Range] = None
45240
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    83
      def ship(next: Option[Range]) { result ++= last; last = next }
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    84
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    85
      for (range <- ranges.sortBy(_.start))
44473
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
    86
      {
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
    87
        last match {
45240
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    88
          case None => ship(Some(range))
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    89
          case Some(last_range) =>
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    90
            last_range.try_join(range) match {
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    91
              case None => ship(Some(range))
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    92
              case joined => last = joined
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    93
            }
44473
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
    94
        }
44379
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    95
      }
45240
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
    96
      ship(None)
44473
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
    97
      new Perspective(result.toList)
44379
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
    98
    }
44473
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
    99
  }
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
   100
46712
8650d9a95736 prefer final ADTs -- prevent ooddities;
wenzelm
parents: 46576
diff changeset
   101
  final class Perspective private(
8650d9a95736 prefer final ADTs -- prevent ooddities;
wenzelm
parents: 46576
diff changeset
   102
    val ranges: List[Range]) // visible text partitioning in canonical order
44473
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
   103
  {
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
   104
    def is_empty: Boolean = ranges.isEmpty
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
   105
    def range: Range =
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
   106
      if (is_empty) Range(0)
4f264fdf8d0e slightly more abstract Text.Perspective;
wenzelm
parents: 44384
diff changeset
   107
      else Range(ranges.head.start, ranges.last.stop)
45631
6bdf8b926f50 recovered structural equality from 9d97bd3c086a, otherwise update_perspective might be issued over and over again, canceling a pending/slow execution;
wenzelm
parents: 45470
diff changeset
   108
6bdf8b926f50 recovered structural equality from 9d97bd3c086a, otherwise update_perspective might be issued over and over again, canceling a pending/slow execution;
wenzelm
parents: 45470
diff changeset
   109
    override def hashCode: Int = ranges.hashCode
6bdf8b926f50 recovered structural equality from 9d97bd3c086a, otherwise update_perspective might be issued over and over again, canceling a pending/slow execution;
wenzelm
parents: 45470
diff changeset
   110
    override def equals(that: Any): Boolean =
6bdf8b926f50 recovered structural equality from 9d97bd3c086a, otherwise update_perspective might be issued over and over again, canceling a pending/slow execution;
wenzelm
parents: 45470
diff changeset
   111
      that match {
6bdf8b926f50 recovered structural equality from 9d97bd3c086a, otherwise update_perspective might be issued over and over again, canceling a pending/slow execution;
wenzelm
parents: 45470
diff changeset
   112
        case other: Perspective => ranges == other.ranges
6bdf8b926f50 recovered structural equality from 9d97bd3c086a, otherwise update_perspective might be issued over and over again, canceling a pending/slow execution;
wenzelm
parents: 45470
diff changeset
   113
        case _ => false
6bdf8b926f50 recovered structural equality from 9d97bd3c086a, otherwise update_perspective might be issued over and over again, canceling a pending/slow execution;
wenzelm
parents: 45470
diff changeset
   114
      }
45240
9d97bd3c086a proper normal form for Perspective.ranges (overlapping ranges could be joined in wrong order, crashing multiple editor views);
wenzelm
parents: 44474
diff changeset
   115
    override def toString = ranges.toString
44379
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
   116
  }
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
   117
1079ab6b342b added official Text.Range.Ordering;
wenzelm
parents: 43714
diff changeset
   118
38577
4e4d3ea3725a renamed Markup_Tree.Node to Text.Info;
wenzelm
parents: 38570
diff changeset
   119
  /* information associated with text range */
4e4d3ea3725a renamed Markup_Tree.Node to Text.Info;
wenzelm
parents: 38570
diff changeset
   120
43714
3749d1e6dde9 tuned signature;
wenzelm
parents: 43650
diff changeset
   121
  sealed case class Info[A](val range: Text.Range, val info: A)
38577
4e4d3ea3725a renamed Markup_Tree.Node to Text.Info;
wenzelm
parents: 38570
diff changeset
   122
  {
4e4d3ea3725a renamed Markup_Tree.Node to Text.Info;
wenzelm
parents: 38570
diff changeset
   123
    def restrict(r: Text.Range): Info[A] = Info(range.restrict(r), info)
46207
e76b77356ed6 clarified partial restrict operation;
wenzelm
parents: 45673
diff changeset
   124
    def try_restrict(r: Text.Range): Option[Info[A]] = range.try_restrict(r).map(Info(_, info))
38577
4e4d3ea3725a renamed Markup_Tree.Node to Text.Info;
wenzelm
parents: 38570
diff changeset
   125
  }
4e4d3ea3725a renamed Markup_Tree.Node to Text.Info;
wenzelm
parents: 38570
diff changeset
   126
45470
81b85d4ed269 more precise type;
wenzelm
parents: 45455
diff changeset
   127
  type Markup = Info[XML.Elem]
45455
4f974c0c5c2f prefer statically typed Text.Markup;
wenzelm
parents: 45250
diff changeset
   128
38577
4e4d3ea3725a renamed Markup_Tree.Node to Text.Info;
wenzelm
parents: 38570
diff changeset
   129
38426
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
   130
  /* editing */
34286
951aa92d06bb more text edit operations;
wenzelm
parents: 34276
diff changeset
   131
38425
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   132
  object Edit
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   133
  {
38426
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
   134
    def insert(start: Offset, text: String): Edit = new Edit(true, start, text)
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
   135
    def remove(start: Offset, text: String): Edit = new Edit(false, start, text)
38425
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   136
  }
34286
951aa92d06bb more text edit operations;
wenzelm
parents: 34276
diff changeset
   137
46712
8650d9a95736 prefer final ADTs -- prevent ooddities;
wenzelm
parents: 46576
diff changeset
   138
  final class Edit private(val is_insert: Boolean, val start: Offset, val text: String)
38425
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   139
  {
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   140
    override def toString =
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   141
      (if (is_insert) "Insert(" else "Remove(") + (start, text).toString + ")"
34286
951aa92d06bb more text edit operations;
wenzelm
parents: 34276
diff changeset
   142
951aa92d06bb more text edit operations;
wenzelm
parents: 34276
diff changeset
   143
38425
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   144
    /* transform offsets */
34286
951aa92d06bb more text edit operations;
wenzelm
parents: 34276
diff changeset
   145
38426
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
   146
    private def transform(do_insert: Boolean, i: Offset): Offset =
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
   147
      if (i < start) i
43425
0a5612040a8b more explicit error message;
wenzelm
parents: 38725
diff changeset
   148
      else if (do_insert) i + text.length
38426
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
   149
      else (i - text.length) max start
34286
951aa92d06bb more text edit operations;
wenzelm
parents: 34276
diff changeset
   150
43425
0a5612040a8b more explicit error message;
wenzelm
parents: 38725
diff changeset
   151
    def convert(i: Offset): Offset = transform(is_insert, i)
0a5612040a8b more explicit error message;
wenzelm
parents: 38725
diff changeset
   152
    def revert(i: Offset): Offset = transform(!is_insert, i)
0a5612040a8b more explicit error message;
wenzelm
parents: 38725
diff changeset
   153
    def convert(range: Range): Range = range.map(convert)
0a5612040a8b more explicit error message;
wenzelm
parents: 38725
diff changeset
   154
    def revert(range: Range): Range = range.map(revert)
38425
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   155
34286
951aa92d06bb more text edit operations;
wenzelm
parents: 34276
diff changeset
   156
38425
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   157
    /* edit strings */
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   158
38426
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
   159
    private def insert(i: Offset, string: String): String =
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
   160
      string.substring(0, i) + text + string.substring(i)
34276
12436485c244 Basic edits on plain text.
wenzelm
parents:
diff changeset
   161
38426
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
   162
    private def remove(i: Offset, count: Int, string: String): String =
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
   163
      string.substring(0, i) + string.substring(i + count)
38425
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   164
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   165
    def can_edit(string: String, shift: Int): Boolean =
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   166
      shift <= start && start < shift + string.length
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   167
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   168
    def edit(string: String, shift: Int): (Option[Edit], String) =
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   169
      if (!can_edit(string, shift)) (Some(this), string)
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   170
      else if (is_insert) (None, insert(start - shift, string))
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   171
      else {
38426
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
   172
        val i = start - shift
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
   173
        val count = text.length min (string.length - i)
38425
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   174
        val rest =
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   175
          if (count == text.length) None
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   176
          else Some(Edit.remove(start, text.substring(count)))
38426
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
   177
        (rest, remove(i, count, string))
38425
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   178
      }
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38154
diff changeset
   179
  }
34276
12436485c244 Basic edits on plain text.
wenzelm
parents:
diff changeset
   180
}