-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathbuffer.ts
531 lines (509 loc) Β· 15.1 KB
/
buffer.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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
import type { Denops } from "@denops/core";
import { maybe } from "@core/unknownutil/maybe";
import { ulid } from "@std/ulid/ulid";
import * as autocmd from "../autocmd/mod.ts";
import * as batch from "../batch/mod.ts";
import * as fn from "../function/mod.ts";
import * as op from "../option/mod.ts";
import { execute } from "../helper/execute.ts";
import {
type FileFormat,
findFileFormat,
isFileFormat,
splitText,
} from "./fileformat.ts";
import { tryDecode } from "./fileencoding.ts";
const cacheKey = "denops_std/buffer/buffer.ts@1";
async function ensurePrerequisites(denops: Denops): Promise<string> {
if (typeof denops.context[cacheKey] === "string") {
return denops.context[cacheKey];
}
const suffix = ulid();
denops.context[cacheKey] = suffix;
const script = `
function! DenopsStdBufferOpen_${suffix}(bang, mods, opener, cmdarg, bufname) abort
execute printf('%s %s%s %s \`=a:bufname\`', a:mods, a:opener, a:bang ? '!' : '', a:cmdarg)
return {
\\ 'winid': win_getid(),
\\ 'bufnr': bufnr(),
\\ 'winnr': winnr(),
\\ 'tabpagenr': tabpagenr(),
\\}
endfunction
function! DenopsStdBufferReload_${suffix}(bufnr) abort
if bufnr('%') is# a:bufnr
edit
return
endif
let winid_saved = win_getid()
let winid = bufwinid(a:bufnr)
if winid is# -1
augroup denops_std_buffer_reload_${suffix}
execute printf('autocmd! * <buffer=%d>', a:bufnr)
execute printf('autocmd BufEnter <buffer=%d> ++nested ++once edit', a:bufnr)
augroup END
return
endif
keepjumps keepalt call win_gotoid(winid)
try
edit
finally
keepjumps keepalt call win_gotoid(winid_saved)
endtry
endfunction
function! DenopsStdBufferAppend_${suffix}(bufnr, lnum, repl) abort
let modified = getbufvar(a:bufnr, '&modified')
let modifiable = getbufvar(a:bufnr, '&modifiable')
call setbufvar(a:bufnr, '&modifiable', 1)
call appendbufline(a:bufnr, a:lnum, a:repl)
call setbufvar(a:bufnr, '&modified', modified)
call setbufvar(a:bufnr, '&modifiable', modifiable)
endfunction
function! DenopsStdBufferReplace_${suffix}(bufnr, repl, fileformat, fileencoding) abort
let modified = getbufvar(a:bufnr, '&modified')
let modifiable = getbufvar(a:bufnr, '&modifiable')
call setbufvar(a:bufnr, '&modifiable', 1)
if a:fileformat isnot# v:null
call setbufvar(a:bufnr, '&fileformat', a:fileformat)
endif
if a:fileencoding isnot# v:null
call setbufvar(a:bufnr, '&fileencoding', a:fileencoding)
endif
call setbufline(a:bufnr, 1, a:repl)
call deletebufline(a:bufnr, len(a:repl) + 1, '$')
call setbufvar(a:bufnr, '&modified', modified)
call setbufvar(a:bufnr, '&modifiable', modifiable)
endfunction
function! DenopsStdBufferConcreteRestore_${suffix}() abort
let cache = get(s:denops_std_buffer_concrete_cache_${suffix}, bufnr(), v:null)
if cache is# v:null
return
endif
call DenopsStdBufferReplace_${suffix}(
\\ bufnr('%'),
\\ cache.content,
\\ v:null,
\\ v:null,
\\)
let &filetype = cache.filetype
endfunction
function! DenopsStdBufferConcreteStore_${suffix}() abort
let s:denops_std_buffer_concrete_cache_${suffix}[bufnr()] = {
\\ 'filetype': &filetype,
\\ 'content': getline(1, '$'),
\\}
endfunction
let s:denops_std_buffer_concrete_cache_${suffix} = {}
augroup denops_std_buffer_${suffix}
autocmd!
autocmd User DenopsStopped,DenopsClosed ++once
\\ silent! unlet! s:denops_std_buffer_concrete_cache_${suffix}
autocmd User DenopsStopped,DenopsClosed ++once
\\ augroup denops_std_buffer_reload_${suffix} |
\\ autocmd! |
\\ augroup END
autocmd User DenopsStopped,DenopsClosed ++once
\\ augroup denops_std_buffer_concrete_${suffix} |
\\ autocmd! |
\\ augroup END
autocmd User DenopsStopped,DenopsClosed ++once
\\ augroup denops_std_buffer_${suffix} |
\\ autocmd! |
\\ augroup END
augroup END
`;
await execute(denops, script);
return suffix;
}
/**
* Open a `bufname` buffer with given options on the current window
*
* ```typescript
* import type { Entrypoint } from "jsr:@denops/std";
* import { open } from "jsr:@denops/std/buffer";
*
* export const main: Entrypoint = async (denops) => {
* // Open `README.md`
* // Same as `:edit README.md`
* await open(denops, "README.md");
*
* // Open `LICENSE` with given options
* // Same as `:keepjumps keepalt edit ++enc=sjis ++ff=dos LICENSE`
* await open(denops, "LICENSE", {
* mods: "keepjumps keepalt",
* cmdarg: "++enc=sjis ++ff=dos",
* });
* }
* ```
*
* Use `split`, `vsplit`, `tabedit`, `pedit`, or whatever in `opener` attribute of
* the option like:
*
* ```typescript
* import type { Entrypoint } from "jsr:@denops/std";
* import { open } from "jsr:@denops/std/buffer";
*
* export const main: Entrypoint = async (denops) => {
* await open(denops, "README.md", { opener: "split" });
* }
* ```
*
* Use a result value if you need window id, buffer number, window number, or
* tabpage number like:
*
* ```typescript
* import type { Entrypoint } from "jsr:@denops/std";
* import { open } from "jsr:@denops/std/buffer";
*
* export const main: Entrypoint = async (denops) => {
* const info = await open(denops, "README.md");
* console.log("winid:", info.winid);
* console.log("bufnr:", info.bufnr);
* console.log("winnr:", info.winnr);
* console.log("tabpagenr:", info.tabpagenr);
* }
* ```
*/
export async function open(
denops: Denops,
bufname: string,
options: OpenOptions = {},
): Promise<OpenResult> {
const suffix = await ensurePrerequisites(denops);
const bang = options.bang ?? false;
const mods = options.mods ?? "";
const cmdarg = options.cmdarg ?? "";
const opener = options.opener ?? "edit";
return await denops.call(
`DenopsStdBufferOpen_${suffix}`,
bang,
mods,
opener,
cmdarg,
bufname,
) as OpenResult;
}
export interface OpenOptions {
bang?: boolean;
mods?: string;
cmdarg?: string;
opener?: string;
}
export interface OpenResult {
winid: number;
bufnr: number;
winnr: number;
tabpagenr: number;
}
/**
* Reload the content of the `bufnr` buffer
*
* ```typescript
* import type { Entrypoint } from "jsr:@denops/std";
* import * as fn from "jsr:@denops/std/function";
* import { open, reload } from "jsr:@denops/std/buffer";
*
* export const main: Entrypoint = async (denops) => {
* await open(denops, "README.md");
* const bufnr = await fn.bufnr(denops);
* // ...
* // Reload the content of the `bufnr` buffer.
* await reload(denops, bufnr);
* }
* ```
*
* It may temporary change a current buffer or a current window to properly reload
* the content of the `bufnr` buffer.
*/
export async function reload(denops: Denops, bufnr: number): Promise<void> {
const suffix = await ensurePrerequisites(denops);
await denops.cmd(
`call timer_start(0, { -> DenopsStdBufferReload_${suffix}(bufnr) })`,
{ bufnr },
);
}
/**
* Decode raw binary content for string array for the `bufnr` buffer
*
* ```typescript
* import type { Entrypoint } from "jsr:@denops/std";
* import * as fn from "jsr:@denops/std/function";
* import { decode, open, replace } from "jsr:@denops/std/buffer";
*
* export const main: Entrypoint = async (denops) => {
* await open(denops, "README.md");
* const bufnr = await fn.bufnr(denops);
* const data = await Deno.readFile("README.md");
* const { content } = await decode(denops, bufnr, data);
* await replace(denops, bufnr, content);
* }
* ```
*
* It follows Vim's rule to find a corresponding `fileformat` and `fileencoding` to
* decode the `data` if the one is not given by `options`.
*/
export async function decode(
denops: Denops,
bufnr: number,
data: Uint8Array,
options: DecodeOptions = {},
): Promise<DecodeResult> {
const [fileformat, fileformatsStr, fileencodingsStr] = await batch.collect(
denops,
(denops) => [
op.fileformat.getBuffer(denops, bufnr) as Promise<FileFormat>,
op.fileformats.get(denops),
op.fileencodings.get(denops),
],
);
const fileformats = fileformatsStr.split(",") as FileFormat[];
const fileencodings = fileencodingsStr.split(",");
let enc: string;
let text: string;
if (options.fileencoding) {
enc = options.fileencoding;
text = (new TextDecoder(enc)).decode(data);
} else {
[enc, text] = tryDecode(data, fileencodings);
}
const ff = maybe(options.fileformat, isFileFormat) ??
findFileFormat(text, fileformats) ?? fileformat;
return {
content: splitText(text, ff),
fileformat: ff,
fileencoding: enc,
};
}
export interface DecodeOptions {
fileformat?: string;
fileencoding?: string;
}
export interface DecodeResult {
content: string[];
fileformat: FileFormat;
fileencoding: string;
}
/**
* Append content under the current cursor position or given lnum of the buffer
*
* ```typescript
* import type { Entrypoint } from "jsr:@denops/std";
* import * as fn from "jsr:@denops/std/function";
* import { append, open } from "jsr:@denops/std/buffer";
*
* export const main: Entrypoint = async (denops) => {
* await open(denops, "README.md");
* const bufnr = await fn.bufnr(denops);
* // Append the content under the cursor position of the `bufnr` buffer
* await append(denops, bufnr, ["Hello", "World"]);
* }
* ```
*
* It temporary change `modified` and `modifiable` options to append
* the content of the `buffer` buffer without unmodifiable error or so on.
*/
export async function append(
denops: Denops,
bufnr: number,
repl: string[],
options: AppendOptions = {},
): Promise<void> {
const suffix = await ensurePrerequisites(denops);
const lnum = options.lnum ??
await ensure(denops, bufnr, () => fn.line(denops, "."));
await denops.call(
`DenopsStdBufferAppend_${suffix}`,
bufnr,
lnum,
repl,
);
}
export interface AppendOptions {
lnum?: number;
}
/**
* Replace the content of the `bufnr` buffer
*
* ```typescript
* import type { Entrypoint } from "jsr:@denops/std";
* import * as fn from "jsr:@denops/std/function";
* import { open, replace } from "jsr:@denops/std/buffer";
*
* export const main: Entrypoint = async (denops) => {
* await open(denops, "README.md");
* const bufnr = await fn.bufnr(denops);
* // Set the content of the `bufnr` buffer
* await replace(denops, bufnr, ["Hello", "World"]);
* }
* ```
*
* It temporary change `modified` and `modifiable` options to replace
* the content of the `buffer` buffer without unmodifiable error or so on.
*/
export async function replace(
denops: Denops,
bufnr: number,
repl: string[],
options: ReplaceOptions = {},
): Promise<void> {
const suffix = await ensurePrerequisites(denops);
await denops.call(
`DenopsStdBufferReplace_${suffix}`,
bufnr,
repl,
options.fileformat ?? null,
options.fileencoding ?? null,
);
}
export interface ReplaceOptions {
fileformat?: string;
fileencoding?: string;
}
/**
* Concrete the buffer.
*
* Vim will discard the content of a non-file buffer when `:edit` is invoked. Use
* this function to concrete the content of such buffer to prevent this discard.
*
* ```typescript
* import type { Entrypoint } from "jsr:@denops/std";
* import * as fn from "jsr:@denops/std/function";
* import { concrete, open, replace } from "jsr:@denops/std/buffer";
*
* export const main: Entrypoint = async (denops) => {
* await open(denops, "README.md");
* const bufnr = await fn.bufnr(denops);
* await fn.setbufvar(denops, bufnr, "&buftype", "nofile");
* await replace(denops, bufnr, ["Hello", "World"]);
* await concrete(denops, bufnr);
* }
* ```
*
* Then `:edit` on the buffer won't discard the content.
*/
export async function concrete(
denops: Denops,
bufnr: number,
): Promise<void> {
const suffix = await ensurePrerequisites(denops);
await batch.batch(denops, async (denops) => {
await autocmd.group(
denops,
`denops_std_buffer_concrete_${suffix}`,
(helper) => {
const pat = `<buffer=${bufnr}>`;
helper.remove("*", pat);
helper.define(
"BufWriteCmd",
pat,
`call DenopsStdBufferConcreteStore_${suffix}()`,
);
helper.define(
"BufReadCmd",
pat,
`call DenopsStdBufferConcreteRestore_${suffix}()`,
{
nested: true,
},
);
},
);
await denops.call(`DenopsStdBufferConcreteStore_${suffix}`);
});
}
/**
* Ensure the executor is executed under the specified buffer
*
* ```typescript
* import type { Entrypoint } from "jsr:@denops/std";
* import * as option from "jsr:@denops/std/option";
* import * as fn from "jsr:@denops/std/function";
* import { ensure, open } from "jsr:@denops/std/buffer";
*
* export const main: Entrypoint = async (denops) => {
* await open(denops, "README.md");
* const bufnr = await fn.bufnr(denops);
* // ...
* await ensure(denops, bufnr, async () => {
* await option.buftype.set(denops, "nofile");
* await option.swapfile.set(denops, false);
* await fn.setline(denops, 1, ["Hello", "World"]);
* });
* }
* ```
*
* Note that it's better to use `setbufvar` or whatever instead. It's mainly
* designed to define mappings that is not possible from outside of the buffer.
*/
export async function ensure<T>(
denops: Denops,
bufnr: number,
executor: () => T,
): Promise<T> {
const [bufnrCur, winidCur, winidNext] = await batch.collect(
denops,
(denops) => [
fn.bufnr(denops),
fn.win_getid(denops),
fn.bufwinid(denops, bufnr),
],
);
if (winidCur === winidNext) {
return executor();
}
if (winidNext === -1) {
await denops.cmd(`keepjumps keepalt ${bufnr}buffer`);
try {
return await executor();
} finally {
await denops.cmd(`keepjumps keepalt ${bufnrCur}buffer`);
}
} else {
await fn.win_gotoid(denops, winidNext);
try {
return await executor();
} finally {
await fn.win_gotoid(denops, winidCur);
}
}
}
/**
* Ensure the executor is executed under a modifiable buffer
*
* ```typescript
* import type { Entrypoint } from "jsr:@denops/std";
* import * as fn from "jsr:@denops/std/function";
* import { modifiable, open } from "jsr:@denops/std/buffer";
*
* export const main: Entrypoint = async (denops) => {
* await open(denops, "README.md");
* const bufnr = await fn.bufnr(denops);
* // ...
* await modifiable(denops, bufnr, async () => {
* await fn.setline(denops, 1, ["Hello", "World"]);
* });
* }
* ```
*/
export async function modifiable<T>(
denops: Denops,
bufnr: number,
executor: () => T,
): Promise<T> {
const [modified, modifiable] = await batch.collect(
denops,
(denops) => [
op.modified.getBuffer(denops, bufnr),
op.modifiable.getBuffer(denops, bufnr),
],
);
await fn.setbufvar(denops, bufnr, "&modifiable", 1);
try {
return await executor();
} finally {
await batch.batch(denops, async (denops) => {
await fn.setbufvar(denops, bufnr, "&modified", modified);
await fn.setbufvar(denops, bufnr, "&modifiable", modifiable);
});
}
}