File: data_buffer.c

package info (click to toggle)
anjuta 2%3A2.32.0.0-5
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 61,524 kB
  • ctags: 29,402
  • sloc: ansic: 207,516; xml: 31,169; cpp: 11,403; sh: 10,749; perl: 7,107; makefile: 3,373; yacc: 1,018; lex: 126; sql: 97; python: 91; java: 6
file content (566 lines) | stat: -rw-r--r-- 12,641 bytes parent folder | download | duplicates (5)
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
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
/*
    data_buffer.c
    Copyright (C) 2006 Sebastien Granjoux

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU 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 General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/

#include "data_buffer.h"

#include "anjuta-marshal.h"

/*#define DEBUG*/
#include <libanjuta/anjuta-debug.h>

#include <string.h>
#include <glib/gprintf.h>

enum
{
	DMA_DATA_BUFFER_PAGE_SIZE = 512,
	DMA_DATA_BUFFER_LAST_LEVEL_SIZE = 8,
	DMA_DATA_BUFFER_LEVEL_SIZE = 16,
	DMA_DATA_BUFFER_LEVEL = 6
};

enum
{
	DMA_DATA_UNDEFINED = 0,
	DMA_DATA_MODIFIED = 1,
	DMA_DATA_SAME = 2
};

typedef struct _DmaDataBufferPage DmaDataBufferPage;
typedef struct _DmaDataBufferNode DmaDataBufferNode;
typedef struct _DmaDataBufferLastNode DmaDataBufferLastNode;

struct _DmaDataBufferPage
{
	gchar data[DMA_DATA_BUFFER_PAGE_SIZE];
	gchar tag[DMA_DATA_BUFFER_PAGE_SIZE];
	guint validation;
};

struct _DmaDataBufferNode
{
	DmaDataBufferNode *child[DMA_DATA_BUFFER_LEVEL_SIZE];
};

struct _DmaDataBufferLastNode
{
	DmaDataBufferPage *child[DMA_DATA_BUFFER_LAST_LEVEL_SIZE];
};

struct _DmaDataBuffer
{
	GObject parent;
	
	gulong lower;
	gulong upper;
	
	DmaDataBufferReadFunc read;
	DmaDataBufferWriteFunc write;
	gpointer user_data;
	
	guint validation;
	DmaDataBufferNode *top;
};

struct _DmaDataBufferClass
{
	GObjectClass parent;
	
	void (*changed_notify) (DmaDataBuffer *buffer, gulong lower, gulong upper);	
};

static GObjectClass *parent_class = NULL;

typedef gchar * (*DmaDisplayDataFunc) (gchar *string, const char *data, const char *tag);

enum
{
	CHANGED_NOTIFY,
	LAST_SIGNAL
};

static guint signals[LAST_SIGNAL] = {0};


/* Helper functions
 *---------------------------------------------------------------------------*/

static gchar *
display_in_octal (gchar *string, const gchar *data, const gchar *tag)
{
	if ((data == NULL) || (*tag == DMA_DATA_UNDEFINED))
	{
		memcpy(string, "??? ", 4);
	}
	else
	{
		g_sprintf (string, "%03o ", ((unsigned)*data) & 0xFFU);
	}
	
	return string + 4;
}

static gchar *
display_in_decimal (gchar *string, const gchar *data, const gchar *tag)
{
	if ((data == NULL) || (*tag == DMA_DATA_UNDEFINED))
	{
		memcpy(string, "??? ", 4);
	}
	else
	{
		g_sprintf (string, "%3u ", ((unsigned)*data) & 0xFFU);
	}
	
	return string + 4;
}

static gchar *
display_in_hexadecimal (gchar *string, const gchar *data, const gchar *tag)
{
	if ((data == NULL) || (*tag == DMA_DATA_UNDEFINED))
	{
		memcpy(string, "?? ", 3);
	}
	else
	{
		g_sprintf (string, "%02X ", ((unsigned)*data) & 0xFFU);
	}
	
	return string + 3;
}

static gchar *
display_in_ascii (gchar *string, const gchar *data, const gchar *tag)
{
	if ((data == NULL) || (*tag == DMA_DATA_UNDEFINED))
	{
		*string = '?';
	}
	else if (g_ascii_isprint (*data))
	{
		*string = *data;
	}
	else
	{
		*string = '.';
	}
	
	return string + 1;
}

/* DmaBufferNode functions
 *---------------------------------------------------------------------------*/

static DmaDataBufferNode** 
dma_data_buffer_find_node (DmaDataBuffer *buffer, gulong address)
{
	DmaDataBufferNode **node;
	gint i;
	
	node = &buffer->top;
	address /= DMA_DATA_BUFFER_PAGE_SIZE;
	for (i = DMA_DATA_BUFFER_LEVEL - 1; i >= 0; --i)
	{
		if (*node == NULL)
		{
			if (i == 0)
			{
				*node = (DmaDataBufferNode *)g_new0 (DmaDataBufferLastNode, 1);
			}
			else
			{
				*node = g_new0 (DmaDataBufferNode, 1);
			}
		}
		node = &((*node)->child[address % (i == 0 ? DMA_DATA_BUFFER_LAST_LEVEL_SIZE : DMA_DATA_BUFFER_LEVEL_SIZE)]);
		address /= DMA_DATA_BUFFER_LEVEL_SIZE;
	}

	return node;
}

#if 0
static DmaDataBufferPage* 
dma_data_buffer_get_page (DmaDataBuffer *buffer, gulong address)
{
	DmaDataBufferNode **node;

	node = dma_data_buffer_find_node (buffer, address);

	return (DmaDataBufferPage *)*node;
}
#endif

static DmaDataBufferPage* 
dma_data_buffer_add_page (DmaDataBuffer *buffer, gulong address)
{
	DmaDataBufferNode **node;
	DmaDataBufferPage *page;

	node = dma_data_buffer_find_node (buffer, address);
	
	if (*node == NULL)
	{
		*node = (DmaDataBufferNode *)g_new0 (DmaDataBufferPage, 1);
		page = (DmaDataBufferPage *)*node;
		page->validation = buffer->validation - 1;
	}
	else
	{
		page = (DmaDataBufferPage *)*node;
	}
	
	return page;
}

static DmaDataBufferPage* 
dma_data_buffer_read_page (DmaDataBuffer *buffer, gulong address)
{
	DmaDataBufferPage *page;

	page = dma_data_buffer_add_page (buffer, address);

	if ((page == NULL) || (page->validation != buffer->validation))
	{
		if (page != NULL) page->validation = buffer->validation;
		/* Data need to be refresh */
		if (buffer->read != NULL);
			buffer->read (address - (address % DMA_DATA_BUFFER_PAGE_SIZE), DMA_DATA_BUFFER_PAGE_SIZE, buffer->user_data);
		
		return page;
	}
	
	
	return page;
}

static void
dma_data_buffer_free_node (DmaDataBufferNode *node, gint level)
{
	gint i;

	for (i = (level == 0 ? DMA_DATA_BUFFER_LAST_LEVEL_SIZE : DMA_DATA_BUFFER_LEVEL_SIZE) - 1; i >= 0; --i)
	{
		if (node->child[i] != NULL)
		{
			if (level != 0)
			{
				dma_data_buffer_free_node (node->child[i], level - 1);
			}
			g_free (node->child[i]);
		}
	}
}

/* Private functions
 *---------------------------------------------------------------------------*/


static void
dma_data_buffer_changed_notify (DmaDataBuffer *buffer, gulong lower, gulong upper)
{
}

/* Public functions
 *---------------------------------------------------------------------------*/

void
dma_data_buffer_remove_all_page (DmaDataBuffer *buffer)
{
	if (buffer->top != NULL)
	{
		dma_data_buffer_free_node (buffer->top, DMA_DATA_BUFFER_LEVEL - 1);
		g_free (buffer->top);
		buffer->top = NULL;
	}
}

gulong
dma_data_buffer_get_lower (const DmaDataBuffer *buffer)
{
	return buffer->lower;
}

gulong
dma_data_buffer_get_upper (const DmaDataBuffer *buffer)
{
	return buffer->upper;
}

gchar *
dma_data_buffer_get_address (DmaDataBuffer *buffer, gulong lower, guint length, guint step, guint size)
{
	gchar *data;
	gchar *ptr;
	guint line;
	
	line = (length + step - 1) / step;
	
	data = g_strnfill (line * (size + 1), ' ');
	for (ptr = data; line != 0; --line)
	{
		g_sprintf (ptr, "%0*lx\n", size, lower);
		lower += step;
		ptr += size + 1;
	}
	*(ptr - 1) = '\0';
	
	return data;
}
		
gchar *
dma_data_buffer_get_data (DmaDataBuffer *buffer, gulong lower, guint length, guint step, gint base)
{
	static const DmaDisplayDataFunc format_table[] = {display_in_octal,
	                                          display_in_decimal,
                                              display_in_hexadecimal,
                                              display_in_ascii};
	gchar *text;
	gchar *ptr;
	guint line;
	guint col;
	DmaDisplayDataFunc display;
	guint inc;
    gchar dummy[16];
    gchar *data = NULL;
	gchar *tag = NULL;
	guint len;

	line = (length + step - 1) / step;
											  
	switch (base & DMA_DATA_BASE)
	{
	case DMA_OCTAL_BASE:
	case DMA_DECIMAL_BASE:
	case DMA_HEXADECIMAL_BASE:
	case DMA_ASCII_BASE:
		display = format_table[base & DMA_DATA_BASE];
	    break;
    default:
		display = format_table[DMA_HEXADECIMAL_BASE];
	    break;
    }
	
	/* Dummy call of display function to know the increment */
	ptr = display (dummy, NULL, NULL);
	inc = ptr - dummy;
	
	text = g_strnfill (line * (step * inc + 1), ' ');
	len = 0;
	for (ptr = text; line != 0; --line)
	{
		for (col = step; col != 0; --col)
		{
			if (len == 0)
			{
				DmaDataBufferPage *node;
				/* Get new data */
				node = dma_data_buffer_read_page (buffer, lower);
				if (node == NULL)
				{
					data = NULL;
					tag = NULL;
				}
				else
				{
					data = &(node->data[lower % DMA_DATA_BUFFER_PAGE_SIZE]);
					tag = &(node->tag[lower % DMA_DATA_BUFFER_PAGE_SIZE]);
				}
				len = DMA_DATA_BUFFER_PAGE_SIZE - (lower % DMA_DATA_BUFFER_PAGE_SIZE);
			}
			ptr = display (ptr, data, tag);
			if (data != NULL)
			{
				data++;
				tag++;
			}
			lower++;
			len--;
		}
		if (inc != 1) --ptr; /* Remove last space */
		*ptr++ = '\n';
	}
	*(ptr - 1) = '\0'; /* Remove last carriage return */
	
	return text;
}

void
dma_data_buffer_invalidate (DmaDataBuffer *buffer)
{
	buffer->validation++;
}

void
dma_data_buffer_set_data (DmaDataBuffer *buffer, gulong address, gulong length, const gchar *data)
{
	gulong upper;
	gulong lower;
	
	if (length == 0) return;
	
	upper = address + length -1UL;
	lower = address;
	
	while (length)
	{
		DmaDataBufferPage *page;
		guint len;
		
		page = dma_data_buffer_add_page (buffer, address);
		len = DMA_DATA_BUFFER_PAGE_SIZE - (address % DMA_DATA_BUFFER_PAGE_SIZE);
		if (len > length) len = length;
		memcpy (&page->data[address % DMA_DATA_BUFFER_PAGE_SIZE], data, len);
		memset (&page->tag[address % DMA_DATA_BUFFER_PAGE_SIZE], DMA_DATA_MODIFIED, len);
		page->validation = buffer->validation;
		
		length -= len;
		address += len;
	}
	g_signal_emit (buffer, signals[CHANGED_NOTIFY], 0, lower, upper);
}

/* GObject functions
 *---------------------------------------------------------------------------*/

/* Used in dispose and finalize */

/* dispose is the first destruction step. It is used to unref object created
 * with instance_init in order to break reference counting cycles. This
 * function could be called several times. All function should still work
 * after this call. It has to called its parents.*/

static void
dma_data_buffer_dispose (GObject *object)
{
	/*DmaDataBuffer *this = DMA_DATA_BUFFER (object);*/
	
	(* parent_class->dispose) (object);
}

/* finalize is the last destruction step. It must free all memory allocated
 * with instance_init. It is called only one time just before releasing all
 * memory */

static void
dma_data_buffer_finalize (GObject *object)
{
	DmaDataBuffer *buffer = DMA_DATA_BUFFER (object);

	dma_data_buffer_remove_all_page (buffer);
	
	(* parent_class->finalize) (object);
}

/* instance_init is the constructor. All functions should work after this
 * call. */

static void
dma_data_buffer_instance_init (DmaDataBuffer *this)
{
	this->lower = 0;
	this->upper = 0;
	this->top = NULL;
}

/* class_init intialize the class itself not the instance */

static void
dma_data_buffer_class_init (DmaDataBufferClass * klass)
{
	GObjectClass *object_class;

	g_return_if_fail (klass != NULL);
	
	parent_class = G_OBJECT_CLASS (g_type_class_peek_parent (klass));
	
	object_class = G_OBJECT_CLASS (klass);
	object_class->dispose = dma_data_buffer_dispose;
	object_class->finalize = dma_data_buffer_finalize;

	klass->changed_notify = dma_data_buffer_changed_notify;
	
	signals[CHANGED_NOTIFY] = g_signal_new ("changed_notify",
									 G_OBJECT_CLASS_TYPE (object_class),
									 G_SIGNAL_RUN_LAST,
									 G_STRUCT_OFFSET (DmaDataBufferClass, changed_notify),
									 NULL, NULL,
									 anjuta_marshal_VOID__ULONG_ULONG,
									 G_TYPE_NONE,
									 2,
									 G_TYPE_ULONG,
									 G_TYPE_ULONG);	
}

GType
dma_data_buffer_get_type (void)
{
	static GType type = 0;

	if (!type)
	{
		static const GTypeInfo type_info = 
		{
			sizeof (DmaDataBufferClass),
			(GBaseInitFunc) NULL,
			(GBaseFinalizeFunc) NULL,
			(GClassInitFunc) dma_data_buffer_class_init,
			(GClassFinalizeFunc) NULL,
			NULL,           /* class_data */
			sizeof (DmaDataBuffer),
			0,              /* n_preallocs */
			(GInstanceInitFunc) dma_data_buffer_instance_init,
			NULL            /* value_table */
		};

		type = g_type_register_static (G_TYPE_OBJECT,
		                            "DmaDataBuffer", &type_info, 0);
	}
	
	return type;
}

/* Creation and Destruction
 *---------------------------------------------------------------------------*/

DmaDataBuffer*
dma_data_buffer_new (gulong lower, gulong upper, DmaDataBufferReadFunc read, DmaDataBufferWriteFunc write, gpointer user_data)
{
	DmaDataBuffer *buffer;

	buffer = g_object_new (DMA_DATA_BUFFER_TYPE, NULL);
	g_assert (buffer != NULL);

	buffer->lower = lower;
	buffer->upper = upper;
	buffer->read = read;
	buffer->write = write;
	buffer->user_data = user_data;
	
	return buffer;
}
	
void
dma_data_buffer_free (DmaDataBuffer *buffer)
{
	g_object_unref (buffer);
}