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
|
/*
* Copyright (C) 2002 Red Hat, Inc.
*
* This is free software; you can redistribute it and/or modify it under
* the terms of the GNU Library General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <config.h>
#include <stdio.h>
#include <string.h>
#include <glib.h>
#include "debug.h"
#include "ring.h"
#ifdef VTE_DEBUG
static void
_vte_ring_validate(VteRing * ring)
{
long i, max;
g_assert(ring != NULL);
g_assert(ring->length <= ring->max);
max = ring->delta + ring->length;
for (i = ring->delta; i < max; i++) {
g_assert(_vte_ring_contains(ring, i));
g_assert(ring->array[i % ring->max] != NULL);
}
}
#else
#define _vte_ring_validate(ring) G_STMT_START {} G_STMT_END
#endif
/**
* _vte_ring_new:
* @max_elements: the maximum size the new ring will be allowed to reach
* @free_func: a #VteRingFreeFunc
* @data: user data for @free
*
* Allocates a new ring capable of holding up to @max_elements elements at a
* time, using @free to free them when they are removed from the ring. The
* @data pointer is passed to the @free callback whenever it is called.
*
* Returns: a new ring
*/
VteRing *
_vte_ring_new(glong max_elements, VteRingFreeFunc free_func, gpointer data)
{
VteRing *ret = g_slice_new0(VteRing);
ret->user_data = data;
ret->cached_item = -1;
ret->max = MAX(max_elements, 2);
ret->array = g_malloc0(sizeof(gpointer) * ret->max);
ret->free = free_func;
return ret;
}
VteRing *
_vte_ring_new_with_delta(glong max_elements, glong delta,
VteRingFreeFunc free_func, gpointer data)
{
VteRing *ret;
ret = _vte_ring_new(max_elements, free_func, data);
ret->delta = delta;
return ret;
}
/**
* _vte_ring_insert:
* @ring: a #VteRing
* @position: an index
* @data: the new item
*
* Inserts a new item (@data) into @ring at the @position'th offset. If @ring
* already has an item stored at the desired location, it will be freed before
* being replaced by the new @data.
*
*/
gpointer
_vte_ring_insert(VteRing * ring, long position, gpointer data)
{
gpointer old_data = NULL;
long point, i;
g_return_val_if_fail(ring != NULL, NULL);
g_return_val_if_fail(position >= ring->delta, NULL);
g_return_val_if_fail(position <= ring->delta + ring->length, NULL);
g_return_val_if_fail(data != NULL, NULL);
_vte_debug_print(VTE_DEBUG_RING,
"Inserting at position %ld.\n"
" Delta = %ld, Length = %ld, Max = %ld.\n",
position, ring->delta, ring->length, ring->max);
_vte_ring_validate(ring);
/* Initial insertion, or append. */
if (position == ring->length + ring->delta) {
i = position % ring->max;
old_data = ring->array[i];
/* Set the new item, and if the buffer wasn't "full", increase
* our idea of how big it is, otherwise increase the delta so
* that this becomes the "last" item and the previous item
* scrolls off the *top*. */
ring->array[i] = data;
if (ring->length == ring->max) {
ring->delta++;
if (ring->delta > ring->cached_item) {
_vte_ring_set_cache (ring, -1, NULL);
}
} else {
ring->length++;
}
_vte_debug_print(VTE_DEBUG_RING,
" Delta = %ld, Length = %ld, "
"Max = %ld.\n",
ring->delta, ring->length, ring->max);
_vte_ring_validate(ring);
return old_data;
}
if (position <= ring->cached_item) {
_vte_ring_set_cache (ring, -1, NULL);
}
/* All other cases. Calculate the location where the last "item" in the
* buffer is going to end up in the array. */
point = ring->delta + ring->length - 1;
while (point < 0) {
point += ring->max;
}
if (ring->length == ring->max) {
/* If the buffer's full, then the last item will have to be
* "lost" to make room for the new item so that the buffer
* doesn't grow (here we scroll off the *bottom*). */
old_data = ring->array[point % ring->max];
} else {
/* We don't want to discard the last item. */
point++;
}
/* We need to bubble the remaining valid elements down. This isn't as
* slow as you probably think it is due to the pattern of usage. */
for (i = point; i > position; i--) {
ring->array[i % ring->max] = ring->array[(i - 1) % ring->max];
}
/* Store the new item and bump up the length, unless we've hit the
* maximum length already. */
ring->array[position % ring->max] = data;
ring->length = CLAMP(ring->length + 1, 0, ring->max);
_vte_debug_print(VTE_DEBUG_RING,
" Delta = %ld, Length = %ld, Max = %ld.\n",
ring->delta, ring->length, ring->max);
_vte_ring_validate(ring);
return old_data;
}
/**
* _vte_ring_insert_preserve:
* @ring: a #VteRing
* @position: an index
* @data: the new item
*
* Inserts a new item (@data) into @ring at the @position'th offset. If @ring
* already has an item stored at the desired location, it (and any successive
* items) will be moved down, items that need to be removed will be removed
* from the *top*.
*
*/
gpointer
_vte_ring_insert_preserve(VteRing * ring, long position, gpointer data)
{
long point, i;
gpointer **tmp, old_data = NULL;
gpointer *stack_tmp[128];
g_return_val_if_fail(position <= _vte_ring_next(ring), NULL);
_vte_debug_print(VTE_DEBUG_RING,
"Inserting+ at position %ld.\n"
" Delta = %ld, Length = %ld, Max = %ld.\n",
position, ring->delta, ring->length, ring->max);
_vte_ring_validate(ring);
if (position <= ring->cached_item) {
_vte_ring_set_cache (ring, -1, NULL);
}
/* Allocate space to save existing elements. */
point = _vte_ring_next(ring);
i = MAX(1, point - position);
/* Save existing elements. */
tmp = stack_tmp;
if ((guint) i > G_N_ELEMENTS (stack_tmp))
tmp = g_new0(gpointer *, i);
for (i = position; i < point; i++) {
tmp[i - position] = _vte_ring_index(ring, gpointer, i);
}
/* Remove the existing elements. */
for (i = point; i > position; i--) {
_vte_ring_remove(ring, i - 1, FALSE);
}
/* Append the new item. */
old_data = _vte_ring_append(ring, data);
/* Append the old items. */
for (i = position; i < point; i++) {
if (old_data && ring->free) {
ring->free (old_data, ring->user_data);
}
old_data = _vte_ring_append(ring, tmp[i - position]);
}
/* Clean up. */
if (tmp != stack_tmp)
g_free(tmp);
return old_data;
}
/**
* _vte_ring_remove:
* @ring: a #VteRing
* @position: an index
* @free_element: %TRUE if the item should be freed
*
* Removes the @position'th item from @ring, freeing it only if @free_element is
* %TRUE.
*
*/
gpointer
_vte_ring_remove(VteRing * ring, long position, gboolean free_element)
{
long i;
gpointer old_data;
_vte_debug_print(VTE_DEBUG_RING,
"Removing item at position %ld.\n"
" Delta = %ld, Length = %ld, Max = %ld.\n",
position, ring->delta, ring->length, ring->max);
_vte_ring_validate(ring);
if (position <= ring->cached_item) {
_vte_ring_set_cache (ring, -1, NULL);
}
i = position % ring->max;
/* Remove the data at this position. */
old_data = ring->array[i];
if (free_element && old_data && ring->free) {
_vte_debug_print(VTE_DEBUG_RING,
"Freeing item at position %ld.\n", position);
ring->free(old_data, ring->user_data);
old_data = NULL;
}
ring->array[i] = NULL;
/* Bubble the rest of the buffer up one notch. This is also less
* of a problem than it might appear, again due to usage patterns. */
for (i = position; i < ring->delta + ring->length - 1; i++) {
ring->array[i % ring->max] = ring->array[(i + 1) % ring->max];
}
/* Store a NULL in the position at the end of the buffer and decrement
* its length (got room for one more now). */
ring->array[(ring->delta + ring->length - 1) % ring->max] = NULL;
if (ring->length > 0) {
ring->length--;
}
_vte_debug_print(VTE_DEBUG_RING,
" Delta = %ld, Length = %ld, Max = %ld.\n",
ring->delta, ring->length, ring->max);
_vte_ring_validate(ring);
return old_data;
}
/**
* _vte_ring_append:
* @ring: a #VteRing
* @data: the new item
*
* Appends a new item to the ring. If an item must be removed to make room for
* the new item, it is freed.
*
*/
gpointer
_vte_ring_append(VteRing * ring, gpointer data)
{
g_assert(data != NULL);
return _vte_ring_insert(ring, ring->delta + ring->length, data);
}
/**
* _vte_ring_free:
* @ring: a #VteRing
* @free_elements: %TRUE if items in the ring should be freed
*
* Frees the ring and, optionally, each of the items it contains.
*
*/
void
_vte_ring_free(VteRing * ring, gboolean free_elements)
{
long i;
if (free_elements && ring->free) {
for (i = 0; i < ring->max; i++) {
/* Remove this item. */
if (ring->array[i] != NULL) {
ring->free(ring->array[i], ring->user_data);
}
}
}
g_free(ring->array);
g_slice_free(VteRing, ring);
}
#ifdef RING_MAIN
static void
scrolled_off(gpointer freed, gpointer data)
{
long *l = (long *)freed;
char *fmt = data;
g_printerr(fmt, *l);
}
int
main(int argc, char **argv)
{
long i, j, k, bias;
const int size = 8;
long values[40];
long lone = 42;
long *value;
VteRing *ring;
for (i = 0; i < G_N_ELEMENTS(values); i++) {
values[i] = i;
}
ring = _vte_ring_new(size, scrolled_off, "Lost value %ld.\n");
bias = 0;
g_printerr("Initializing.\n");
for (i = 0; i + bias <= G_N_ELEMENTS(values); i++) {
k = 0;
g_printerr("[%ld] ", i);
for (j = 0; j < G_N_ELEMENTS(values); j++) {
if (_vte_ring_contains(ring, j)) {
value = _vte_ring_index(ring, long *, j);
} else {
value = NULL;
}
if (value) {
g_printerr("%s%ld->%ld",
(k > 0) ? ", " : "", j, *value);
k++;
}
}
g_printerr("\n");
g_printerr("[%ld] max %ld, delta %ld, length %ld = {",
i, ring->max, ring->delta, ring->length);
for (j = 0; j < size; j++) {
value = ring->array[j];
if (j > 0) {
g_printerr(", ");
}
if (value) {
g_printerr("%ld", *value);
}
}
g_printerr("}\n");
if (i == 3) {
g_printerr("Removing item at 4.\n");
_vte_ring_remove(ring, 4, TRUE);
bias--;
} else if (i == 10) {
g_printerr("Inserting item at 7.\n");
_vte_ring_insert(ring, 7, &lone);
bias--;
} else if (i == 20) {
g_printerr("Inserting item at 13.\n");
_vte_ring_insert(ring, 13, &lone);
bias--;
} else if (i == 30) {
g_printerr("Inserting item at 23.\n");
_vte_ring_insert_preserve(ring, 23, &lone);
bias--;
} else if (i < G_N_ELEMENTS(values)) {
g_printerr("Appending item.\n");
_vte_ring_append(ring, &values[i + bias]);
}
}
_vte_ring_free(ring, TRUE);
return 0;
}
#endif
|