forked from siegebell/vsc-prettify-symbols-mode
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtext-util.ts
187 lines (170 loc) · 6.17 KB
/
text-util.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
import * as vscode from 'vscode';
// 'sticky' flag is not yet supported :(
const lineEndingRE = /([^\r\n]*)(\r\n|\r|\n)?/;
export interface RangeDelta {
start: vscode.Position;
end: vscode.Position;
linesDelta: number;
endCharactersDelta: number; // delta for positions on the same line as the end position
}
export function offsetAt(text: string, pos: vscode.Position) : number {
let line = pos.line;
let lastIndex = 0;
while (line > 0) {
const match = lineEndingRE.exec(text.substring(lastIndex));
if(match[2] === '' || match[2] === undefined) // no line-ending found
return -1; // the position is beyond the length of text
else {
lastIndex+= match[0].length;
--line;
}
}
return lastIndex + pos.character;
}
/** Calculates the offset into text of pos, where textStart is the position where text starts and both pos and textStart are absolute positions
* @return the offset into text indicated by pos, or -1 if pos is out of range
*
* 'abc\ndef'
* 'acbX\ndef'
* +++*** --> +++_***
* */
export function relativeOffsetAtAbsolutePosition(text: string, textStart: vscode.Position, pos: vscode.Position) : number {
let line = textStart.line;
let currentOffset = 0;
// count the relative lines and offset w.r.t text
while(line < pos.line) {
const match = lineEndingRE.exec(text.substring(currentOffset));
++line; // there was a new line
currentOffset += match[0].length;
}
if(line > pos.line)
return -1
else if(textStart.line === pos.line)
return Math.max(-1, pos.character - textStart.character);
else // if(line === pos.line)
return Math.max(-1, pos.character + currentOffset);
}
/**
* @returns the Position (line, column) for the location (character position), assuming that text begins at start
*/
export function positionAtRelative(start: vscode.Position, text: string, offset: number) : vscode.Position {
if(offset > text.length)
offset = text.length;
let line = start.line;
let currentOffset = 0; // offset into text we are current at; <= `offset`
let lineOffset = start.character;
//let lastIndex = start.character;
let found = false;
let pos = null;
while(!found) {
const match = lineEndingRE.exec(text.substring(currentOffset));
// match[0] -- characters plus newline
// match[1] -- characters up to newline
// match[2] -- newline (\n, \r, or \r\n)
if(!match || match[0].length === 0 || currentOffset + match[1].length >= offset) {
found = true;
pos = new vscode.Position(line, lineOffset + Math.max(offset - currentOffset, 0))
}
currentOffset+= match[0].length;
lineOffset = 0;
++line;
}
return pos;
}
/**
* @returns the Position (line, column) for the location (character position)
*/
export function positionAt(text: string, offset: number) : vscode.Position {
if(offset > text.length)
offset = text.length;
let line = 0;
let lastIndex = 0;
let found = false;
let pos = null;
while(!found) {
const match = lineEndingRE.exec(text.substring(lastIndex));
if(lastIndex + match[1].length >= offset) {
found = true;
pos = new vscode.Position(line, Math.max(0, offset - lastIndex));
}
lastIndex+= match[0].length;
++line;
}
return pos;
}
/**
* @returns the lines and characters represented by the text
*/
export function toRangeDelta(oldRange:vscode.Range, text: string) : RangeDelta {
const newEnd = positionAt(text,text.length);
let charsDelta;
if(oldRange.start.line == oldRange.end.line)
charsDelta = newEnd.character - (oldRange.end.character-oldRange.start.character);
else
charsDelta = newEnd.character - oldRange.end.character;
return {
start: oldRange.start,
end: oldRange.end,
linesDelta: newEnd.line-(oldRange.end.line-oldRange.start.line),
endCharactersDelta: charsDelta
};
}
export function rangeDeltaNewRange(delta: RangeDelta) : vscode.Range {
let x : number;
if (delta.linesDelta > 0)
x = delta.endCharactersDelta;
else if (delta.linesDelta < 0 && delta.start.line == delta.end.line + delta.linesDelta)
x = delta.end.character + delta.endCharactersDelta + delta.start.character;
else
x = delta.end.character + delta.endCharactersDelta;
return new vscode.Range(delta.start, new vscode.Position(delta.end.line + delta.linesDelta, x));
}
function positionRangeDeltaTranslate(pos: vscode.Position, delta: RangeDelta) : vscode.Position {
if(pos.isBefore(delta.end))
return pos;
else if (delta.end.line == pos.line) {
let x = pos.character + delta.endCharactersDelta;
if (delta.linesDelta > 0)
x = x - delta.end.character;
else if (delta.start.line == delta.end.line + delta.linesDelta && delta.linesDelta < 0)
x = x + delta.start.character;
return new vscode.Position(pos.line + delta.linesDelta, x);
}
else // if(pos.line > delta.end.line)
return new vscode.Position(pos.line + delta.linesDelta, pos.character);
}
function positionRangeDeltaTranslateEnd(pos: vscode.Position, delta: RangeDelta) : vscode.Position {
if(pos.isBeforeOrEqual(delta.end))
return pos;
else if (delta.end.line == pos.line) {
let x = pos.character + delta.endCharactersDelta;
if (delta.linesDelta > 0)
x = x - delta.end.character;
else if (delta.start.line == delta.end.line + delta.linesDelta && delta.linesDelta < 0)
x = x + delta.start.character;
return new vscode.Position(pos.line + delta.linesDelta, x);
}
else // if(pos.line > delta.end.line)
return new vscode.Position(pos.line + delta.linesDelta, pos.character);
}
export function rangeTranslate(range: vscode.Range, delta: RangeDelta) {
return new vscode.Range(
positionRangeDeltaTranslate(range.start, delta),
positionRangeDeltaTranslateEnd(range.end, delta)
)
}
export function rangeContains(range: vscode.Range, pos: vscode.Position, exclStart=false, inclEnd=false) {
return range.start.isBeforeOrEqual(pos)
&& (!exclStart || !range.start.isEqual(pos))
&& ((inclEnd && range.end.isEqual(pos)) || range.end.isAfter(pos));
}
export function maxPosition(x: vscode.Position, y: vscode.Position) {
if(x.line < y.line)
return x;
if(x.line < x.line)
return y;
if(x.character < y.character)
return x;
else
return y;
}