aboutsummaryrefslogtreecommitdiff
path: root/src/api/buffer.c
blob: 328b26061d09a5ec4054456864fd73bd2d1d08ba (plain) (blame)
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
// Much of this code was adapted from 'if_py_both.h' from the original
// vim source
#include <stdint.h>
#include <stdlib.h>

#include "api/buffer.h"
#include "api/helpers.h"
#include "api/defs.h"
#include "../vim.h"
#include "../buffer.h"
#include "memline.h"
#include "memory.h"
#include "misc1.h"
#include "misc2.h"
#include "ex_cmds.h"
#include "mark.h"
#include "fileio.h"
#include "move.h"
#include "../window.h"
#include "undo.h"

// Find a window that contains "buf" and switch to it.
// If there is no such window, use the current window and change "curbuf".
// Caller must initialize save_curbuf to NULL.
// restore_win_for_buf() MUST be called later!
static void switch_to_win_for_buf(buf_T *buf,
                                  win_T **save_curwinp,
                                  tabpage_T **save_curtabp,
                                  buf_T **save_curbufp);

static void restore_win_for_buf(win_T *save_curwin,
                                tabpage_T *save_curtab,
                                buf_T *save_curbuf);

// Check if deleting lines made the cursor position invalid.
// Changed the lines from "lo" to "hi" and added "extra" lines (negative if
// deleted).
static void fix_cursor(linenr_T lo, linenr_T hi, linenr_T extra);

// Normalizes 0-based indexes to buffer line numbers
static int64_t normalize_index(buf_T *buf, int64_t index);

int64_t buffer_get_length(Buffer buffer, Error *err)
{
  buf_T *buf = find_buffer(buffer, err);

  if (!buf) {
    return 0;
  }

  return buf->b_ml.ml_line_count;
}

String buffer_get_line(Buffer buffer, int64_t index, Error *err)
{
  String rv = {.size = 0};
  StringArray slice = buffer_get_slice(buffer, index, index, true, true, err);

  if (slice.size) {
    rv = slice.items[0];
  }

  return rv;
}

void buffer_set_line(Buffer buffer, int64_t index, String line, Error *err)
{
  StringArray array = {.items = &line, .size = 1};
  buffer_set_slice(buffer, index, index, true, true, array, err);
}

void buffer_del_line(Buffer buffer, int64_t index, Error *err)
{
  StringArray array = {.size = 0};
  buffer_set_slice(buffer, index, index, true, true, array, err);
}

StringArray buffer_get_slice(Buffer buffer,
                             int64_t start,
                             int64_t end,
                             bool include_start,
                             bool include_end,
                             Error *err)
{
  StringArray rv = {.size = 0};
  buf_T *buf = find_buffer(buffer, err);

  if (!buf) {
    return rv;
  }

  start = normalize_index(buf, start) + (include_start ? 0 : 1);
  end = normalize_index(buf, end) + (include_end ? 1 : 0);

  if (start >= end) {
    // Return 0-length array
    return rv;
  }

  rv.size = end - start;
  rv.items = xmalloc(sizeof(String) * rv.size);

  for (uint32_t i = 0; i < rv.size; i++) {
    rv.items[i].data = xstrdup((char *)ml_get_buf(buf, start + i, false));
    rv.items[i].size = strlen(rv.items[i].data);
  }

  return rv;
}

void buffer_set_slice(Buffer buffer,
                      int64_t start,
                      int64_t end,
                      bool include_start,
                      bool include_end,
                      StringArray replacement,
                      Error *err)
{
  buf_T *buf = find_buffer(buffer, err);

  if (!buf) {
    return;
  }

  start = normalize_index(buf, start) + (include_start ? 0 : 1);
  end = normalize_index(buf, end) + (include_end ? 1 : 0);

  if (start > end) {
    set_api_error("start > end", err);
    return;
  }

  buf_T *save_curbuf = NULL;
  win_T *save_curwin = NULL;
  tabpage_T *save_curtab = NULL;
  uint32_t new_len = replacement.size;
  uint32_t old_len = end - start;
  uint32_t i;
  int32_t extra = 0;  // lines added to text, can be negative
  char **lines;

  if (new_len == 0) {
    // avoid allocating zero bytes
    lines = NULL;
  } else {
    lines = xcalloc(sizeof(char *), new_len);
  }

  for (i = 0; i < new_len; i++) {
    String l = replacement.items[i];
    lines[i] = xstrndup(l.data, l.size);
  }

  try_start();
  switch_to_win_for_buf(buf, &save_curwin, &save_curtab, &save_curbuf);

  if (u_save(start - 1, end) == FAIL) {
    set_api_error("Cannot save undo information", err);
    goto cleanup;
  }

  // If the size of the range is reducing (ie, new_len < old_len) we
  // need to delete some old_len. We do this at the start, by
  // repeatedly deleting line "start".
  for (i = 0; new_len < old_len && i < old_len - new_len; i++) {
    if (ml_delete(start, false) == FAIL) {
      set_api_error("Cannot delete line", err);
      goto cleanup;
    }
  }

  extra -= i;

  // For as long as possible, replace the existing old_len with the
  // new old_len. This is a more efficient operation, as it requires
  // less memory allocation and freeing.
  for (i = 0; i < old_len && i < new_len; i++) {
    if (ml_replace(start + i, (char_u *)lines[i], false) == FAIL) {
      set_api_error("Cannot replace line", err);
      goto cleanup;
    }
    // Mark lines that haven't been passed to the buffer as they need
    // to be freed later
    lines[i] = NULL;
  }

  // Now we may need to insert the remaining new old_len
  while (i < new_len) {
    if (ml_append(start + i - 1, (char_u *)lines[i], 0, false) == FAIL) {
      set_api_error("Cannot insert line", err);
      goto cleanup;
    }
    // Same as with replacing
    lines[i] = NULL;
    i++;
    extra++;
  }

  // Adjust marks. Invalidate any which lie in the
  // changed range, and move any in the remainder of the buffer.
  // Only adjust marks if we managed to switch to a window that holds
  // the buffer, otherwise line numbers will be invalid.
  if (save_curbuf == NULL) {
    mark_adjust(start, end - 1, MAXLNUM, extra);
  }

  changed_lines(start, 0, end, extra);

  if (buf == curbuf) {
    fix_cursor(start, end, extra);
  }

cleanup:
  for (uint32_t i = 0; i < new_len; i++) {
    if (lines[i] != NULL) {
      free(lines[i]);
    }
  }

  free(lines);
  restore_win_for_buf(save_curwin, save_curtab, save_curbuf);
  try_end(err);
}

Object buffer_get_var(Buffer buffer, String name, Error *err)
{
  Object rv;
  buf_T *buf = find_buffer(buffer, err);

  if (!buf) {
    return rv;
  }

  return dict_get_value(buf->b_vars, name, err);
}

Object buffer_set_var(Buffer buffer, String name, Object value, Error *err)
{
  Object rv;
  buf_T *buf = find_buffer(buffer, err);

  if (!buf) {
    return rv;
  }

  return dict_set_value(buf->b_vars, name, value, err);
}

Object buffer_get_option(Buffer buffer, String name, Error *err)
{
  Object rv;
  buf_T *buf = find_buffer(buffer, err);

  if (!buf) {
    return rv;
  }

  return get_option_from(buf, SREQ_BUF, name, err);
}

void buffer_set_option(Buffer buffer, String name, Object value, Error *err)
{
  buf_T *buf = find_buffer(buffer, err);

  if (!buf) {
    return;
  }

  set_option_to(buf, SREQ_BUF, name, value, err);
}

String buffer_get_name(Buffer buffer, Error *err)
{
  String rv = {.size = 0, .data = ""};
  buf_T *buf = find_buffer(buffer, err);

  if (!buf || buf->b_ffname == NULL) {
    return rv;
  }

  rv.data = xstrdup((char *)buf->b_ffname);
  rv.size = strlen(rv.data);
  return rv;
}

void buffer_set_name(Buffer buffer, String name, Error *err)
{
  buf_T *buf = find_buffer(buffer, err);

  if (!buf) {
    return;
  }

  aco_save_T aco;
  int ren_ret;
  char *val = xstrndup(name.data, name.size);

  try_start();
  // Using aucmd_*: autocommands will be executed by rename_buffer
  aucmd_prepbuf(&aco, buf);
  ren_ret = rename_buffer((char_u *)val);
  aucmd_restbuf(&aco);

  if (try_end(err)) {
    return;
  }

  if (ren_ret == FAIL) {
    set_api_error("failed to rename buffer", err);
  }
}

bool buffer_is_valid(Buffer buffer)
{
  Error stub = {.set = false};
  return find_buffer(buffer, &stub) != NULL;
}

void buffer_insert(Buffer buffer, int64_t index, StringArray lines, Error *err)
{
  buffer_set_slice(buffer, index, index, false, true, lines, err);
}

Position buffer_get_mark(Buffer buffer, String name, Error *err)
{
  Position rv;
  buf_T *buf = find_buffer(buffer, err);

  if (!buf) {
    return rv;
  }

  if (name.size != 0) {
    set_api_error("mark name must be a single character", err);
    return rv;
  }

  pos_T *posp;
  buf_T *savebuf;
  char mark = *name.data;

  try_start();
  switch_buffer(&savebuf, buf);
  posp = getmark(mark, false);
  restore_buffer(savebuf);

  if (try_end(err)) {
    return rv;
  }

  if (posp == NULL) {
    set_api_error("invalid mark name", err);
    return rv;
  }

  rv.row = posp->lnum;
  rv.col = posp->col;
  return rv;
}

static void switch_to_win_for_buf(buf_T *buf,
                                  win_T **save_curwinp,
                                  tabpage_T **save_curtabp,
                                  buf_T **save_curbufp)
{
  win_T *wp;
  tabpage_T *tp;

  if (find_win_for_buf(buf, &wp, &tp) == FAIL
      || switch_win(save_curwinp, save_curtabp, wp, tp, true) == FAIL)
    switch_buffer(save_curbufp, buf);
}

static void restore_win_for_buf(win_T *save_curwin,
                                tabpage_T *save_curtab,
                                buf_T *save_curbuf)
{
  if (save_curbuf == NULL) {
    restore_win(save_curwin, save_curtab, true);
  } else {
    restore_buffer(save_curbuf);
  }
}

static void fix_cursor(linenr_T lo, linenr_T hi, linenr_T extra)
{
  if (curwin->w_cursor.lnum >= lo) {
    // Adjust the cursor position if it's in/after the changed
    // lines.
    if (curwin->w_cursor.lnum >= hi) {
      curwin->w_cursor.lnum += extra;
      check_cursor_col();
    } else if (extra < 0) {
      curwin->w_cursor.lnum = lo;
      check_cursor();
    } else {
      check_cursor_col();
    }
    changed_cline_bef_curs();
  }
  invalidate_botline();
}

static int64_t normalize_index(buf_T *buf, int64_t index)
{
  // Fix if < 0
  index = index < 0 ?  buf->b_ml.ml_line_count + index : index;
  // Convert the index to a vim line number
  index++;
  // Fix if > line_count
  index = index > buf->b_ml.ml_line_count ? buf->b_ml.ml_line_count : index;
  return index;
}