all repos — acme @ main

fork of the acme editor from plan9port - keybinds, tweaks, config.h, etc

buff.c (raw)

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
#include <u.h>
#include <libc.h>
#include <draw.h>
#include <thread.h>
#include <cursor.h>
#include <mouse.h>
#include <keyboard.h>
#include "libframe/frame.h"
#include <fcall.h>
#include <plumb.h>
#include <libsec.h>
#include "dat.h"
#include "fns.h"

enum {
  Slop = 100 /* room to grow with reallocation */
};

static void sizecache(Buffer* b, uint n) {
  if (n <= b->cmax)
    return;
  b->cmax = n + Slop;
  b->c = runerealloc(b->c, b->cmax);
}

static void addblock(Buffer* b, uint i, uint n) {
  if (i > b->nbl)
    error("internal error: addblock");

  b->bl = realloc(b->bl, (b->nbl + 1) * sizeof b->bl[0]);
  if (i < b->nbl)
    memmove(b->bl + i + 1, b->bl + i, (b->nbl - i) * sizeof(Block*));
  b->bl[i] = disknewblock(disk, n);
  b->nbl++;
}

static void delblock(Buffer* b, uint i) {
  if (i >= b->nbl)
    error("internal error: delblock");

  diskrelease(disk, b->bl[i]);
  b->nbl--;
  if (i < b->nbl)
    memmove(b->bl + i, b->bl + i + 1, (b->nbl - i) * sizeof(Block*));
  b->bl = realloc(b->bl, b->nbl * sizeof b->bl[0]);
}

/*
 * Move cache so b->cq <= q0 < b->cq+b->cnc.
 * If at very end, q0 will fall on end of cache block.
 */

static void flush(Buffer* b) {
  if (b->cdirty || b->cnc == 0) {
    if (b->cnc == 0)
      delblock(b, b->cbi);
    else
      diskwrite(disk, &b->bl[b->cbi], b->c, b->cnc);
    b->cdirty = FALSE;
  }
}

static void setcache(Buffer* b, uint q0) {
  Block **blp, *bl;
  uint i, q;

  if (q0 > b->nc)
    error("internal error: setcache");
  /*
   * flush and reload if q0 is not in cache.
   */
  if (b->nc == 0 || (b->cq <= q0 && q0 < b->cq + b->cnc))
    return;
  /*
   * if q0 is at end of file and end of cache, continue to grow this block
   */
  if (q0 == b->nc && q0 == b->cq + b->cnc && b->cnc < Maxblock)
    return;
  flush(b);
  /* find block */
  if (q0 < b->cq) {
    q = 0;
    i = 0;
  } else {
    q = b->cq;
    i = b->cbi;
  }
  blp = &b->bl[i];
  while (q + (*blp)->u.n <= q0 && q + (*blp)->u.n < b->nc) {
    q += (*blp)->u.n;
    i++;
    blp++;
    if (i >= b->nbl)
      error("block not found");
  }
  bl = *blp;
  /* remember position */
  b->cbi = i;
  b->cq = q;
  sizecache(b, bl->u.n);
  b->cnc = bl->u.n;
  /*read block*/
  diskread(disk, bl, b->c, b->cnc);
}

void bufinsert(Buffer* b, uint q0, Rune* s, uint n) {
  uint i, m, t, off;

  if (q0 > b->nc)
    error("internal error: bufinsert");

  while (n > 0) {
    setcache(b, q0);
    off = q0 - b->cq;
    if (b->cnc + n <= Maxblock) {
      /* Everything fits in one block. */
      t = b->cnc + n;
      m = n;
      if (b->bl == nil) { /* allocate */
        if (b->cnc != 0)
          error("internal error: bufinsert1 cnc!=0");
        addblock(b, 0, t);
        b->cbi = 0;
      }
      sizecache(b, t);
      runemove(b->c + off + m, b->c + off, b->cnc - off);
      runemove(b->c + off, s, m);
      b->cnc = t;
      goto Tail;
    }
    /*
     * We must make a new block.  If q0 is at
     * the very beginning or end of this block,
     * just make a new block and fill it.
     */
    if (q0 == b->cq || q0 == b->cq + b->cnc) {
      if (b->cdirty)
        flush(b);
      m = min(n, Maxblock);
      if (b->bl == nil) { /* allocate */
        if (b->cnc != 0)
          error("internal error: bufinsert2 cnc!=0");
        i = 0;
      } else {
        i = b->cbi;
        if (q0 > b->cq)
          i++;
      }
      addblock(b, i, m);
      sizecache(b, m);
      runemove(b->c, s, m);
      b->cq = q0;
      b->cbi = i;
      b->cnc = m;
      goto Tail;
    }
    /*
     * Split the block; cut off the right side and
     * let go of it.
     */
    m = b->cnc - off;
    if (m > 0) {
      i = b->cbi + 1;
      addblock(b, i, m);
      diskwrite(disk, &b->bl[i], b->c + off, m);
      b->cnc -= m;
    }
    /*
     * Now at end of block.  Take as much input
     * as possible and tack it on end of block.
     */
    m = min(n, Maxblock - b->cnc);
    sizecache(b, b->cnc + m);
    runemove(b->c + b->cnc, s, m);
    b->cnc += m;
  Tail:
    b->nc += m;
    q0 += m;
    s += m;
    n -= m;
    b->cdirty = TRUE;
  }
}

void bufdelete(Buffer* b, uint q0, uint q1) {
  uint m, n, off;

  if (!(q0 <= q1 && q0 <= b->nc && q1 <= b->nc))
    error("internal error: bufdelete");
  while (q1 > q0) {
    setcache(b, q0);
    off = q0 - b->cq;
    if (q1 > b->cq + b->cnc)
      n = b->cnc - off;
    else
      n = q1 - q0;
    m = b->cnc - (off + n);
    if (m > 0)
      runemove(b->c + off, b->c + off + n, m);
    b->cnc -= n;
    b->cdirty = TRUE;
    q1 -= n;
    b->nc -= n;
  }
}

static int bufloader(void* v, uint q0, Rune* r, int nr) {
  bufinsert(v, q0, r, nr);
  return nr;
}

uint loadfile(
  int fd, uint q0, int* nulls, int (*f)(void*, uint, Rune*, int), void* arg,
  DigestState* h) {
  char* p;
  Rune* r;
  int l, m, n, nb, nr;
  uint q1;

  p = emalloc((Maxblock + UTFmax + 1) * sizeof p[0]);
  r = runemalloc(Maxblock);
  m = 0;
  n = 1;
  q1 = q0;
  /*
   * At top of loop, may have m bytes left over from
   * last pass, possibly representing a partial rune.
   */
  while (n > 0) {
    n = read(fd, p + m, Maxblock);
    if (n < 0) {
      warning(nil, "read error in Buffer.load");
      break;
    }
    if (h != nil)
      sha1((uchar*)p + m, n, nil, h);
    m += n;
    p[m] = 0;
    l = m;
    if (n > 0)
      l -= UTFmax;
    cvttorunes(p, l, r, &nb, &nr, nulls);
    memmove(p, p + nb, m - nb);
    m -= nb;
    q1 += (*f)(arg, q1, r, nr);
  }
  free(p);
  free(r);
  return q1 - q0;
}

uint bufload(Buffer* b, uint q0, int fd, int* nulls, DigestState* h) {
  if (q0 > b->nc)
    error("internal error: bufload");
  return loadfile(fd, q0, nulls, bufloader, b, h);
}

void bufread(Buffer* b, uint q0, Rune* s, uint n) {
  uint m;

  if (!(q0 <= b->nc && q0 + n <= b->nc))
    error("bufread: internal error");

  while (n > 0) {
    setcache(b, q0);
    m = min(n, b->cnc - (q0 - b->cq));
    runemove(s, b->c + (q0 - b->cq), m);
    q0 += m;
    s += m;
    n -= m;
  }
}

void bufreset(Buffer* b) {
  int i;

  b->nc = 0;
  b->cnc = 0;
  b->cq = 0;
  b->cdirty = 0;
  b->cbi = 0;
  /* delete backwards to avoid n² behavior */
  for (i = b->nbl - 1; --i >= 0;)
    delblock(b, i);
}

void bufclose(Buffer* b) {
  bufreset(b);
  free(b->c);
  b->c = nil;
  b->cnc = 0;
  free(b->bl);
  b->bl = nil;
  b->nbl = 0;
}