aboutsummaryrefslogtreecommitdiff
path: root/liblogdiag/ld-category.c
blob: 71383a7567b7bba91df5bcbac425065a300486bd (plain)
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
/*
 * ld-category.c
 *
 * This file is a part of logdiag.
 * Copyright 2010, 2011, 2012 Přemysl Eric Janouch
 *
 * See the file LICENSE for licensing information.
 *
 */

#include "liblogdiag.h"
#include "config.h"


/**
 * SECTION:ld-category
 * @short_description: A category of symbols
 * @see_also: #LdSymbol, #LdLibrary
 *
 * #LdCategory represents a category of #LdSymbol objects.
 */

/*
 * LdCategoryPrivate:
 * @parent: the parent of this category.
 * @name: the name of this category.
 * @human_name: the localized human-readable name of this category.
 * @symbols: (element-type LdSymbol *): symbols in this category.
 * @subcategories: (element-type LdCategory *) children of this category.
 */
struct _LdCategoryPrivate
{
	LdCategory *parent;
	gchar *name;
	gchar *human_name;
	GSList *symbols;
	GSList *subcategories;
};

enum
{
	PROP_0,
	PROP_PARENT,
	PROP_NAME,
	PROP_HUMAN_NAME
};

static void ld_category_get_property (GObject *object, guint property_id,
	GValue *value, GParamSpec *pspec);
static void ld_category_set_property (GObject *object, guint property_id,
	const GValue *value, GParamSpec *pspec);
static void ld_category_finalize (GObject *gobject);

static void on_category_notify_name (LdCategory *category,
	GParamSpec *pspec, gpointer user_data);


G_DEFINE_TYPE (LdCategory, ld_category, G_TYPE_OBJECT)

static void
ld_category_class_init (LdCategoryClass *klass)
{
	GObjectClass *object_class;
	GParamSpec *pspec;

	object_class = G_OBJECT_CLASS (klass);
	object_class->get_property = ld_category_get_property;
	object_class->set_property = ld_category_set_property;
	object_class->finalize = ld_category_finalize;

/**
 * LdCategory:parent:
 *
 * The parent of this symbol category.
 */
	pspec = g_param_spec_string ("parent", "Parent",
		"The parent of this symbol category.",
		"", G_PARAM_READWRITE);
	g_object_class_install_property (object_class, PROP_PARENT, pspec);

/**
 * LdCategory:name:
 *
 * The name of this symbol category.
 */
	pspec = g_param_spec_string ("name", "Name",
		"The name of this symbol category.",
		"", G_PARAM_READWRITE);
	g_object_class_install_property (object_class, PROP_NAME, pspec);

/**
 * LdCategory:human-name:
 *
 * The localized human name of this symbol category.
 */
	pspec = g_param_spec_string ("human-name", "Human name",
		"The localized human name of this symbol category.",
		"", G_PARAM_READWRITE);
	g_object_class_install_property (object_class, PROP_HUMAN_NAME, pspec);

/**
 * LdCategory::symbols-changed:
 *
 * The list of symbols has changed.
 */
	klass->symbols_changed_signal = g_signal_new
		("symbols-changed", G_TYPE_FROM_CLASS (klass),
		G_SIGNAL_RUN_LAST, 0, NULL, NULL,
		g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);

/**
 * LdCategory::children-changed:
 *
 * The list of subcategory children has changed.
 */
	klass->children_changed_signal = g_signal_new
		("children-changed", G_TYPE_FROM_CLASS (klass),
		G_SIGNAL_RUN_LAST, 0, NULL, NULL,
		g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);

	g_type_class_add_private (klass, sizeof (LdCategoryPrivate));
}

static void
ld_category_init (LdCategory *self)
{
	self->priv = G_TYPE_INSTANCE_GET_PRIVATE
		(self, LD_TYPE_CATEGORY, LdCategoryPrivate);
}

static void
ld_category_get_property (GObject *object, guint property_id,
	GValue *value, GParamSpec *pspec)
{
	LdCategory *self;

	self = LD_CATEGORY (object);
	switch (property_id)
	{
	case PROP_NAME:
		g_value_set_string (value, ld_category_get_name (self));
		break;
	case PROP_HUMAN_NAME:
		g_value_set_string (value, ld_category_get_human_name (self));
		break;
	case PROP_PARENT:
		g_value_set_object (value, ld_category_get_parent (self));
		break;
	default:
		G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
	}
}

static void
ld_category_set_property (GObject *object, guint property_id,
	const GValue *value, GParamSpec *pspec)
{
	LdCategory *self;

	self = LD_CATEGORY (object);
	switch (property_id)
	{
	case PROP_NAME:
		ld_category_set_name (self, g_value_get_string (value));
		break;
	case PROP_HUMAN_NAME:
		ld_category_set_human_name (self, g_value_get_string (value));
		break;
	case PROP_PARENT:
		ld_category_set_parent (self, g_value_get_object (value));
		break;
	default:
		G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
	}
}

static void
uninstall_category_cb (LdCategory *category, LdCategory *self)
{
	g_signal_handlers_disconnect_by_func (category,
		on_category_notify_name, self);
	if (ld_category_get_parent (category) == self)
		ld_category_set_parent (category, NULL);
	g_object_unref (category);
}

static void
parent_weak_notify (gpointer data, GObject *object)
{
	LdCategory *self;

	/* In practice this should never happen, for it would mean that
	 * we have a parent that have us as its child.
	 */
	self = (LdCategory *) data;
	if (self->priv->parent)
	{
		self->priv->parent = NULL;
		g_object_notify (G_OBJECT (self), "parent");
	}
}

static void
ld_category_finalize (GObject *gobject)
{
	LdCategory *self;

	self = LD_CATEGORY (gobject);

	if (self->priv->parent)
		g_object_weak_unref
			(G_OBJECT (self->priv->parent), parent_weak_notify, self);

	if (self->priv->name)
		g_free (self->priv->name);
	if (self->priv->human_name)
		g_free (self->priv->human_name);

	g_slist_foreach (self->priv->symbols, (GFunc) g_object_unref, NULL);
	g_slist_free (self->priv->symbols);

	g_slist_foreach (self->priv->subcategories,
		(GFunc) uninstall_category_cb, self);
	g_slist_free (self->priv->subcategories);

	/* Chain up to the parent class. */
	G_OBJECT_CLASS (ld_category_parent_class)->finalize (gobject);
}


/**
 * ld_category_new:
 * @name: the name of the new category.
 * @human_name: the localized human name of the new category.
 *
 * Create an instance.
 */
LdCategory *
ld_category_new (const gchar *name, const gchar *human_name)
{
	LdCategory *cat;

	g_return_val_if_fail (name != NULL, NULL);
	g_return_val_if_fail (human_name != NULL, NULL);

	cat = g_object_new (LD_TYPE_CATEGORY, NULL);
	cat->priv->name = g_strdup (name);
	cat->priv->human_name = g_strdup (human_name);

	return cat;
}

/**
 * ld_category_set_name:
 * @self: an #LdCategory object.
 * @name: the new name for this category.
 */
void
ld_category_set_name (LdCategory *self, const gchar *name)
{
	g_return_if_fail (LD_IS_CATEGORY (self));
	g_return_if_fail (name != NULL);

	if (self->priv->name)
		g_free (self->priv->name);
	self->priv->name = g_strdup (name);

	g_object_notify (G_OBJECT (self), "name");
}

/**
 * ld_category_get_name:
 * @self: an #LdCategory object.
 *
 * Return the name of this category.
 */
const gchar *
ld_category_get_name (LdCategory *self)
{
	g_return_val_if_fail (LD_IS_CATEGORY (self), NULL);
	return self->priv->name;
}

/**
 * ld_category_set_human_name:
 * @self: an #LdCategory object.
 * @human_name: the new localized human name for this category.
 */
void
ld_category_set_human_name (LdCategory *self, const gchar *human_name)
{
	g_return_if_fail (LD_IS_CATEGORY (self));
	g_return_if_fail (human_name != NULL);

	if (self->priv->human_name)
		g_free (self->priv->human_name);
	self->priv->human_name = g_strdup (human_name);

	g_object_notify (G_OBJECT (self), "human-name");
}

/**
 * ld_category_get_human_name:
 * @self: an #LdCategory object.
 *
 * Return the localized human name of this category.
 */
const gchar *
ld_category_get_human_name (LdCategory *self)
{
	g_return_val_if_fail (LD_IS_CATEGORY (self), NULL);
	return self->priv->human_name;
}

/**
 * ld_category_insert_symbol:
 * @self: an #LdCategory object.
 * @symbol: the symbol to be inserted.
 * @pos: the position at which the symbol will be inserted.
 *       Negative values will append to the end of list.
 *
 * Insert a symbol into the category.
 *
 * Return value: %TRUE if successful (no name collisions).
 */
gboolean
ld_category_insert_symbol (LdCategory *self, LdSymbol *symbol, gint pos)
{
	const gchar *name;
	const GSList *iter;

	g_return_val_if_fail (LD_IS_CATEGORY (self), FALSE);
	g_return_val_if_fail (LD_IS_SYMBOL (symbol), FALSE);

	/* Check for name collisions. */
	name = ld_symbol_get_name (symbol);
	for (iter = self->priv->symbols; iter; iter = iter->next)
	{
		if (!strcmp (name, ld_symbol_get_name (iter->data)))
		{
			g_warning ("attempted to insert multiple `%s' symbols into"
				" category `%s'", name, ld_category_get_name (self));
			return FALSE;
		}
	}

	self->priv->symbols = g_slist_insert (self->priv->symbols, symbol, pos);
	g_object_ref (symbol);

	g_signal_emit (self,
		LD_CATEGORY_GET_CLASS (self)->symbols_changed_signal, 0);
	return TRUE;
}

/**
 * ld_category_remove_symbol:
 * @self: an #LdCategory object.
 * @symbol: the symbol to be removed.
 *
 * Removes a symbol from the category.
 */
void
ld_category_remove_symbol (LdCategory *self, LdSymbol *symbol)
{
	GSList *link;

	g_return_if_fail (LD_IS_CATEGORY (self));
	g_return_if_fail (LD_IS_SYMBOL (symbol));

	if ((link = g_slist_find (self->priv->symbols, symbol)))
	{
		self->priv->symbols = g_slist_delete_link (self->priv->symbols, link);
		g_object_unref (symbol);

		g_signal_emit (self,
			LD_CATEGORY_GET_CLASS (self)->symbols_changed_signal, 0);
	}
}

/**
 * ld_category_get_symbols:
 * @self: an #LdCategory object.
 *
 * Return value: (element-type LdSymbol *): a list of symbols.  Do not modify.
 */
const GSList *
ld_category_get_symbols (LdCategory *self)
{
	g_return_val_if_fail (LD_IS_CATEGORY (self), NULL);
	return self->priv->symbols;
}

/**
 * ld_category_set_parent:
 * @self: an #LdCategory object.
 * @parent: the new parent category.
 *
 * Set the parent of this category.
 */
void
ld_category_set_parent (LdCategory *self, LdCategory *parent)
{
	g_return_if_fail (LD_IS_CATEGORY (self));
	g_return_if_fail (parent == NULL || LD_IS_CATEGORY (parent));

	if (self->priv->parent)
		g_object_weak_unref
			(G_OBJECT (self->priv->parent), parent_weak_notify, self);

	self->priv->parent = parent;

	if (parent)
		g_object_weak_ref (G_OBJECT (parent), parent_weak_notify, self);

	g_object_notify (G_OBJECT (self), "parent");
}

/**
 * ld_category_get_parent:
 * @self: an #LdCategory object.
 *
 * Return value: the parent of this category.
 */
LdCategory *
ld_category_get_parent (LdCategory *self)
{
	g_return_val_if_fail (LD_IS_CATEGORY (self), NULL);
	return self->priv->parent;
}

/**
 * ld_category_get_path:
 * @self: an #LdCategory object.
 *
 * Return value: the path to this category within the library.
 */
gchar *
ld_category_get_path (LdCategory *self)
{
	LdCategory *iter;
	gchar *path = NULL, *new_path;

	g_return_val_if_fail (LD_IS_CATEGORY (self), NULL);

	for (iter = self; iter; iter = ld_category_get_parent (iter))
	{
		const gchar *name;

		/* Stop at the root category. */
		name = ld_category_get_name (iter);
		if (!strcmp (name, LD_LIBRARY_IDENTIFIER_SEPARATOR))
			break;

		new_path = g_build_path
			(LD_LIBRARY_IDENTIFIER_SEPARATOR, name, path, NULL);
		g_free (path);
		path = new_path;
	}

	return path;
}

static void
on_category_notify_name (LdCategory *category,
	GParamSpec *pspec, gpointer user_data)
{
	LdCategory *self;

	self = (LdCategory *) user_data;
	g_warning ("name of a library subcategory has changed");

	/* The easy way of handling it. */
	g_object_ref (category);
	ld_category_remove_child (self, category);
	ld_category_add_child (self, category);
	g_object_unref (category);
}

/**
 * ld_category_add_child:
 * @self: an #LdCategory object.
 * @category: the category to be inserted.
 *
 * Insert a subcategory into the category.
 *
 * Return value: %TRUE if successful (no name collisions).
 */
gboolean
ld_category_add_child (LdCategory *self, LdCategory *category)
{
	const gchar *name;
	GSList *iter;

	g_return_val_if_fail (LD_IS_CATEGORY (self), FALSE);
	g_return_val_if_fail (LD_IS_CATEGORY (category), FALSE);

	name = ld_category_get_name (category);
	for (iter = self->priv->subcategories; iter; iter = iter->next)
	{
		gint comp;

		comp = g_utf8_collate (name, ld_category_get_name (iter->data));
		if (!comp)
		{
			g_warning ("attempted to insert multiple `%s' subcategories into"
				" category `%s'", name, ld_category_get_name (self));
			return FALSE;
		}
		if (comp < 0)
			break;
	}

	g_signal_connect (category, "notify::name",
		G_CALLBACK (on_category_notify_name), self);
	self->priv->subcategories = g_slist_insert_before
		(self->priv->subcategories, iter, category);
	ld_category_set_parent (category, self);
	g_object_ref (category);

	g_signal_emit (self,
		LD_CATEGORY_GET_CLASS (self)->children_changed_signal, 0);
	return TRUE;
}

/**
 * ld_category_remove_child:
 * @self: an #LdCategory object.
 * @category: the category to be removed.
 *
 * Removes a subcategory from the category.
 */
void
ld_category_remove_child (LdCategory *self, LdCategory *category)
{
	GSList *link;

	g_return_if_fail (LD_IS_CATEGORY (self));
	g_return_if_fail (LD_IS_CATEGORY (category));

	if ((link = g_slist_find (self->priv->subcategories, category)))
	{
		self->priv->subcategories
			= g_slist_delete_link (self->priv->subcategories, link);
		uninstall_category_cb (category, self);

		g_signal_emit (self,
			LD_CATEGORY_GET_CLASS (self)->children_changed_signal, 0);
	}
}

/**
 * ld_category_get_children:
 * @self: an #LdCategory object.
 *
 * Return value: (element-type LdCategory *):
 *               a list of subcategories.  Do not modify.
 */
const GSList *
ld_category_get_children (LdCategory *self)
{
	g_return_val_if_fail (LD_IS_CATEGORY (self), NULL);
	return self->priv->subcategories;
}