cleanup
[babeltrace.git] / types / types.c
... / ...
CommitLineData
1/*
2 * types.c
3 *
4 * BabelTrace - Converter
5 *
6 * Types registry.
7 *
8 * Copyright 2010, 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 */
20
21#include <babeltrace/format.h>
22#include <glib.h>
23#include <errno.h>
24
25static
26struct type *
27 lookup_type_scope(GQuark type_name, struct declaration_scope *scope)
28{
29 return g_hash_table_lookup(scope->types,
30 (gconstpointer) (unsigned long) type_name);
31}
32
33struct type *lookup_type(GQuark type_name, struct declaration_scope *scope)
34{
35 struct type *type;
36
37 while (scope) {
38 type = lookup_type_scope(type_name, scope);
39 if (type)
40 return type;
41 scope = scope->parent_scope;
42 }
43 return NULL;
44}
45
46int register_type(struct type *type, struct declaration_scope *scope)
47{
48 if (!type->name)
49 return -EPERM;
50
51 /* Only lookup in local scope */
52 if (lookup_type_scope(type->name, scope))
53 return -EEXIST;
54
55 g_hash_table_insert(scope->types,
56 (gpointer) (unsigned long) type->name,
57 type);
58 type_ref(type);
59 return 0;
60}
61
62static
63struct declaration *
64 lookup_declaration_scope(GQuark field_name, struct declaration_scope *scope)
65{
66 return g_hash_table_lookup(scope->declarations,
67 (gconstpointer) (unsigned long) field_name);
68}
69
70struct declaration *
71 lookup_declaration(GQuark field_name, struct declaration_scope *scope)
72{
73 struct declaration *declaration;
74
75 while (scope) {
76 declaration = lookup_declaration_scope(field_name, scope);
77 if (declaration)
78 return declaration;
79 scope = scope->parent_scope;
80 }
81 return NULL;
82}
83
84int register_declaration(GQuark field_name, struct declaration *declaration,
85 struct declaration_scope *scope)
86{
87 if (!field_name)
88 return -EPERM;
89
90 /* Only lookup in local scope */
91 if (lookup_declaration_scope(field_name, scope))
92 return -EEXIST;
93
94 g_hash_table_insert(scope->declarations,
95 (gpointer) (unsigned long) field_name,
96 declaration);
97 declaration_ref(declaration);
98 return 0;
99}
100
101void type_ref(struct type *type)
102{
103 type->ref++;
104}
105
106void type_unref(struct type *type)
107{
108 if (!--type->ref)
109 type->type_free(type);
110}
111
112void declaration_ref(struct declaration *declaration)
113{
114 declaration->ref++;
115}
116
117void declaration_unref(struct declaration *declaration)
118{
119 if (!--declaration->ref)
120 declaration->type->declaration_free(declaration);
121}
122
123struct declaration_scope *
124 new_declaration_scope(struct declaration_scope *parent_scope)
125{
126 struct declaration_scope *scope = g_new(struct declaration_scope, 1);
127
128 scope->types = g_hash_table_new_full(g_direct_hash,
129 g_direct_equal, NULL,
130 (GDestroyNotify) type_unref);
131 scope->declarations = g_hash_table_new_full(g_direct_hash,
132 g_direct_equal, NULL,
133 (GDestroyNotify) declaration_unref);
134 scope->parent_scope = parent_scope;
135 return scope;
136}
137
138void free_declaration_scope(struct declaration_scope *scope)
139{
140 g_hash_table_destroy(scope->declarations);
141 g_hash_table_destroy(scope->types);
142 g_free(scope);
143}
This page took 0.022278 seconds and 4 git commands to generate.