author | wenzelm |
Thu, 09 Mar 2017 11:34:24 +0100 | |
changeset 65157 | cd977a5bd928 |
parent 64877 | 31e9920a0dc1 |
child 65159 | 0ae97858d8b3 |
permissions | -rw-r--r-- |
64611 | 1 |
/* Title: Pure/PIDE/line.scala |
64605 | 2 |
Author: Makarius |
3 |
||
65157
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
4 |
Line-oriented text documents, with some bias towards VSCode. |
64605 | 5 |
*/ |
6 |
||
64611 | 7 |
package isabelle |
64605 | 8 |
|
9 |
||
10 |
import scala.annotation.tailrec |
|
11 |
||
12 |
||
13 |
object Line |
|
14 |
{ |
|
64806 | 15 |
/* logical lines */ |
16 |
||
17 |
def normalize(text: String): String = |
|
18 |
if (text.contains('\r')) text.replace("\r\n", "\n") else text |
|
19 |
||
20 |
def logical_lines(text: String): List[String] = |
|
21 |
Library.split_lines(normalize(text)) |
|
22 |
||
23 |
||
64605 | 24 |
/* position */ |
25 |
||
26 |
object Position |
|
27 |
{ |
|
64650 | 28 |
val zero: Position = Position() |
64605 | 29 |
} |
30 |
||
64650 | 31 |
sealed case class Position(line: Int = 0, column: Int = 0) |
64605 | 32 |
{ |
33 |
def line1: Int = line + 1 |
|
34 |
def column1: Int = column + 1 |
|
35 |
def print: String = line1.toString + ":" + column1.toString |
|
36 |
||
37 |
def compare(that: Position): Int = |
|
38 |
line compare that.line match { |
|
39 |
case 0 => column compare that.column |
|
40 |
case i => i |
|
41 |
} |
|
42 |
||
64682 | 43 |
def advance(text: String, text_length: Text.Length): Position = |
64617 | 44 |
if (text.isEmpty) this |
45 |
else { |
|
64806 | 46 |
val lines = logical_lines(text) |
64619 | 47 |
val l = line + lines.length - 1 |
64681
642b6105e6f4
clarified signature: explicit Length to avoid implicit mistakes;
wenzelm
parents:
64679
diff
changeset
|
48 |
val c = (if (l == line) column else 0) + text_length(Library.trim_line(lines.last)) |
64619 | 49 |
Position(l, c) |
64605 | 50 |
} |
51 |
} |
|
52 |
||
53 |
||
54 |
/* range (right-open interval) */ |
|
55 |
||
64647 | 56 |
object Range |
57 |
{ |
|
64666 | 58 |
def apply(start: Position): Range = Range(start, start) |
59 |
val zero: Range = Range(Position.zero) |
|
64647 | 60 |
} |
61 |
||
64605 | 62 |
sealed case class Range(start: Position, stop: Position) |
63 |
{ |
|
64 |
if (start.compare(stop) > 0) |
|
65 |
error("Bad line range: " + start.print + ".." + stop.print) |
|
66 |
||
64647 | 67 |
def print: String = |
68 |
if (start == stop) start.print |
|
69 |
else start.print + ".." + stop.print |
|
64605 | 70 |
} |
71 |
||
72 |
||
64649 | 73 |
/* positions within document node */ |
74 |
||
64651 | 75 |
sealed case class Node_Position(name: String, pos: Position = Position.zero) |
64650 | 76 |
{ |
77 |
def line: Int = pos.line |
|
78 |
def column: Int = pos.column |
|
79 |
} |
|
80 |
||
64651 | 81 |
sealed case class Node_Range(name: String, range: Range = Range.zero) |
64650 | 82 |
{ |
83 |
def start: Position = range.start |
|
84 |
def stop: Position = range.stop |
|
85 |
} |
|
64649 | 86 |
|
87 |
||
64605 | 88 |
/* document with newline as separator (not terminator) */ |
89 |
||
90 |
object Document |
|
91 |
{ |
|
64683
c0c09b6dfbe0
clarified signature: maintan Text.Length within Line.Document;
wenzelm
parents:
64682
diff
changeset
|
92 |
def apply(text: String, text_length: Text.Length): Document = |
64820
00488a8c042f
Line.Document consists of independently allocated strings;
wenzelm
parents:
64806
diff
changeset
|
93 |
Document(logical_lines(text).map(s => Line(Library.trim_substring(s))), text_length) |
65157
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
94 |
|
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
95 |
def lines(text: String): List[Line] = apply(text, Text.Length).lines |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
96 |
|
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
97 |
private def chop(lines: List[Line]): (String, List[Line]) = |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
98 |
lines match { |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
99 |
case Nil => ("", Nil) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
100 |
case List(line) => (line.text, Nil) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
101 |
case line :: rest => (line.text + "\n", rest) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
102 |
} |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
103 |
|
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
104 |
private def length(lines: List[Line]): Int = |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
105 |
if (lines.isEmpty) 0 |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
106 |
else ((0 /: lines) { case (n, line) => n + line.text.length + 1 }) - 1 |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
107 |
|
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
108 |
def text(lines: List[Line]): String = lines.mkString("", "\n", "") |
64605 | 109 |
} |
110 |
||
64683
c0c09b6dfbe0
clarified signature: maintan Text.Length within Line.Document;
wenzelm
parents:
64682
diff
changeset
|
111 |
sealed case class Document(lines: List[Line], text_length: Text.Length) |
64605 | 112 |
{ |
65157
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
113 |
lazy val text_range: Text.Range = Text.Range(0, Document.length(lines)) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
114 |
lazy val text: String = Document.text(lines) |
64672 | 115 |
|
64877 | 116 |
def try_get_text(range: Text.Range): Option[String] = |
117 |
if (text_range.contains(range)) Some(text.substring(range.start, range.stop)) |
|
118 |
else None |
|
119 |
||
64821 | 120 |
override def toString: String = text |
64605 | 121 |
|
122 |
override def equals(that: Any): Boolean = |
|
123 |
that match { |
|
124 |
case other: Document => lines == other.lines |
|
125 |
case _ => false |
|
126 |
} |
|
127 |
override def hashCode(): Int = lines.hashCode |
|
128 |
||
64683
c0c09b6dfbe0
clarified signature: maintan Text.Length within Line.Document;
wenzelm
parents:
64682
diff
changeset
|
129 |
def position(text_offset: Text.Offset): Position = |
64605 | 130 |
{ |
131 |
@tailrec def move(i: Text.Offset, lines_count: Int, lines_rest: List[Line]): Position = |
|
132 |
{ |
|
133 |
lines_rest match { |
|
64650 | 134 |
case Nil => require(i == 0); Position(lines_count) |
64605 | 135 |
case line :: ls => |
136 |
val n = line.text.length |
|
64617 | 137 |
if (ls.isEmpty || i <= n) |
64681
642b6105e6f4
clarified signature: explicit Length to avoid implicit mistakes;
wenzelm
parents:
64679
diff
changeset
|
138 |
Position(lines_count).advance(line.text.substring(n - i), text_length) |
64605 | 139 |
else move(i - (n + 1), lines_count + 1, ls) |
140 |
} |
|
141 |
} |
|
64681
642b6105e6f4
clarified signature: explicit Length to avoid implicit mistakes;
wenzelm
parents:
64679
diff
changeset
|
142 |
move(text_offset, 0, lines) |
64605 | 143 |
} |
144 |
||
64683
c0c09b6dfbe0
clarified signature: maintan Text.Length within Line.Document;
wenzelm
parents:
64682
diff
changeset
|
145 |
def range(text_range: Text.Range): Range = |
c0c09b6dfbe0
clarified signature: maintan Text.Length within Line.Document;
wenzelm
parents:
64682
diff
changeset
|
146 |
Range(position(text_range.start), position(text_range.stop)) |
64679
b2bf280b7e13
more uniform treatment of input/output wrt. client;
wenzelm
parents:
64672
diff
changeset
|
147 |
|
64683
c0c09b6dfbe0
clarified signature: maintan Text.Length within Line.Document;
wenzelm
parents:
64682
diff
changeset
|
148 |
def offset(pos: Position): Option[Text.Offset] = |
64605 | 149 |
{ |
150 |
val l = pos.line |
|
151 |
val c = pos.column |
|
65157
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
152 |
val n = lines.length |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
153 |
if (0 <= l && l < n) { |
64605 | 154 |
val line_offset = |
65157
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
155 |
(0 /: lines.iterator.take(l)) { case (n, line) => n + line.text.length + 1 } |
64681
642b6105e6f4
clarified signature: explicit Length to avoid implicit mistakes;
wenzelm
parents:
64679
diff
changeset
|
156 |
text_length.offset(lines(l).text, c).map(line_offset + _) |
64605 | 157 |
} |
65157
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
158 |
else if (l == n && c == 0) Some(text_range.length) |
64605 | 159 |
else None |
160 |
} |
|
65157
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
161 |
|
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
162 |
def change(remove: Range, insert: String): Option[(List[Text.Edit], Document)] = |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
163 |
{ |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
164 |
for { |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
165 |
edit_start <- offset(remove.start) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
166 |
if remove.stop == remove.start || offset(remove.stop).isDefined |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
167 |
l1 = remove.start.line |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
168 |
l2 = remove.stop.line |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
169 |
if l1 <= l2 |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
170 |
(removed_text, changed_lines) <- |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
171 |
{ |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
172 |
val (prefix, lines1) = lines.splitAt(l1) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
173 |
val (s1, rest1) = Document.chop(lines1) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
174 |
|
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
175 |
if (l1 == l2) { |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
176 |
for { |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
177 |
c1 <- text_length.offset(s1, remove.start.column) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
178 |
c2 <- text_length.offset(s1, remove.stop.column) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
179 |
if c1 <= c2 |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
180 |
} |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
181 |
yield { |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
182 |
val removed_text = s1.substring(c1, c2) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
183 |
val changed_text = s1.substring(0, c1) + insert + Library.trim_line(s1.substring(c2)) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
184 |
(removed_text, prefix ::: Document.lines(changed_text) ::: rest1) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
185 |
} |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
186 |
} |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
187 |
else { |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
188 |
val (middle, lines2) = rest1.splitAt(l2 - l1 - 1) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
189 |
val (s2, rest2) = Document.chop(lines2) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
190 |
for { |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
191 |
c1 <- text_length.offset(s1, remove.start.column) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
192 |
c2 <- text_length.offset(s2, remove.stop.column) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
193 |
} |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
194 |
yield { |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
195 |
val r1 = Library.trim_line(s1.substring(c1)) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
196 |
val r2 = s2.substring(0, c2) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
197 |
val removed_text = |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
198 |
if (lines1.isEmpty) "" |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
199 |
else if (lines2.isEmpty) Document.text(Line(r1) :: middle) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
200 |
else Document.text(Line(r1) :: middle ::: List(Line(r2))) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
201 |
val changed_text = s1.substring(0, c1) + insert + Library.trim_line(s2.substring(c2)) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
202 |
(removed_text, prefix ::: Document.lines(changed_text) ::: rest2) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
203 |
} |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
204 |
} |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
205 |
} |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
206 |
} |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
207 |
yield |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
208 |
(Text.Edit.removes(edit_start, removed_text) ::: Text.Edit.inserts(edit_start, insert), |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
209 |
Document(changed_lines, text_length)) |
cd977a5bd928
clarified Document.offset: including final position;
wenzelm
parents:
64877
diff
changeset
|
210 |
} |
64605 | 211 |
} |
212 |
||
213 |
||
214 |
/* line text */ |
|
215 |
||
216 |
val empty: Line = new Line("") |
|
217 |
def apply(text: String): Line = if (text == "") empty else new Line(text) |
|
218 |
} |
|
219 |
||
220 |
final class Line private(val text: String) |
|
221 |
{ |
|
222 |
require(text.forall(c => c != '\r' && c != '\n')) |
|
223 |
||
224 |
override def equals(that: Any): Boolean = |
|
225 |
that match { |
|
226 |
case other: Line => text == other.text |
|
227 |
case _ => false |
|
228 |
} |
|
229 |
override def hashCode(): Int = text.hashCode |
|
230 |
override def toString: String = text |
|
231 |
} |