First public contribution.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-gidl.c data structure describing an interface, to be generated from IDL
5 * Copyright (C) 2003, 2005 Red Hat, Inc.
6 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
7 * Licensed under the Academic Free License version 2.1
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include "dbus-gidl.h"
27 #ifndef DOXYGEN_SHOULD_SKIP_THIS
31 unsigned int refcount : 28;
32 unsigned int type : 4;
46 GHashTable *annotations;
47 /* Since we have BaseInfo now these could be one list */
56 GHashTable *annotations;
70 PropertyAccessFlags access;
77 ArgDirection direction;
78 GHashTable *annotations;
82 get_hash_key (gpointer key, gpointer value, gpointer data)
85 *list = g_slist_prepend (*list, key);
89 get_hash_keys (GHashTable *table)
93 g_hash_table_foreach (table, get_hash_key, &ret);
99 base_info_ref (BaseInfo *info)
101 g_return_val_if_fail (info != NULL, NULL);
102 g_return_val_if_fail (info->refcount > 0, NULL);
110 base_info_free (void *ptr)
121 base_info_unref (BaseInfo *info)
123 g_return_if_fail (info != NULL);
124 g_return_if_fail (info->refcount > 0);
126 /* This is sort of bizarre, BaseInfo was tacked on later */
131 node_info_unref ((NodeInfo*) info);
133 case INFO_TYPE_INTERFACE:
134 interface_info_unref ((InterfaceInfo*) info);
136 case INFO_TYPE_SIGNAL:
137 signal_info_unref ((SignalInfo*) info);
139 case INFO_TYPE_METHOD:
140 method_info_unref ((MethodInfo*) info);
142 case INFO_TYPE_PROPERTY:
143 property_info_unref ((PropertyInfo*) info);
146 arg_info_unref ((ArgInfo*) info);
152 base_info_get_type (BaseInfo *info)
158 base_info_get_name (BaseInfo *info)
164 base_info_set_name (BaseInfo *info,
170 info->name = g_strdup (name);
175 base_info_get_gtype (void)
179 GET_STATIC_VAR_FROM_TLS(out_type,dbus_gidl,GType )
180 #define our_type (*GET_DBUS_WSD_VAR_NAME(our_type,dbus_gidl,s)())
182 static GType our_type = 0;
187 our_type = g_boxed_type_register_static ("BaseInfo",
188 (GBoxedCopyFunc) base_info_ref,
189 (GBoxedFreeFunc) base_info_unref);
195 free_interface_list (GSList **interfaces_p)
201 interface_info_unref (tmp->data);
204 g_slist_free (*interfaces_p);
205 *interfaces_p = NULL;
209 free_node_list (GSList **nodes_p)
215 node_info_unref (tmp->data);
218 g_slist_free (*nodes_p);
223 free_method_list (GSList **methods_p)
229 method_info_unref (tmp->data);
232 g_slist_free (*methods_p);
237 free_signal_list (GSList **signals_p)
243 signal_info_unref (tmp->data);
246 g_slist_free (*signals_p);
251 free_property_list (GSList **props_p)
257 property_info_unref (tmp->data);
260 g_slist_free (*props_p);
265 node_info_new (const char *name)
269 /* name can be NULL */
271 info = g_new0 (NodeInfo, 1);
272 info->base.refcount = 1;
273 info->base.name = g_strdup (name);
274 info->base.type = INFO_TYPE_NODE;
280 node_info_ref (NodeInfo *info)
282 info->base.refcount += 1;
288 node_info_unref (NodeInfo *info)
290 info->base.refcount -= 1;
291 if (info->base.refcount == 0)
293 free_interface_list (&info->interfaces);
294 free_node_list (&info->nodes);
295 base_info_free (info);
300 node_info_get_name (NodeInfo *info)
302 return info->base.name;
306 node_info_get_interfaces (NodeInfo *info)
308 return info->interfaces;
312 node_info_add_interface (NodeInfo *info,
313 InterfaceInfo *interface)
315 interface_info_ref (interface);
316 info->interfaces = g_slist_append (info->interfaces, interface);
320 node_info_get_nodes (NodeInfo *info)
326 node_info_add_node (NodeInfo *info,
329 node_info_ref (node);
330 info->nodes = g_slist_append (info->nodes, node);
334 node_info_replace_node (NodeInfo *info,
340 node_info_ref (new_child); /* before unref old_child in case they are the same */
341 link = g_slist_find (info->nodes, old_child);
342 g_assert (link != NULL);
343 node_info_unref (old_child);
344 link->data = new_child;
348 interface_info_new (const char *name)
352 info = g_new0 (InterfaceInfo, 1);
353 info->base.refcount = 1;
354 info->base.name = g_strdup (name);
355 info->base.type = INFO_TYPE_INTERFACE;
356 info->annotations = g_hash_table_new_full (g_str_hash, g_str_equal,
357 (GDestroyNotify) g_free,
358 (GDestroyNotify) g_free);
364 interface_info_ref (InterfaceInfo *info)
366 info->base.refcount += 1;
372 interface_info_unref (InterfaceInfo *info)
374 info->base.refcount -= 1;
375 if (info->base.refcount == 0)
377 g_hash_table_destroy (info->annotations);
378 free_method_list (&info->methods);
379 free_signal_list (&info->signals);
380 free_property_list (&info->properties);
381 base_info_free (info);
386 interface_info_get_name (InterfaceInfo *info)
388 return info->base.name;
392 interface_info_get_annotations (InterfaceInfo *info)
394 return get_hash_keys (info->annotations);
398 interface_info_get_annotation (InterfaceInfo *info,
401 return g_hash_table_lookup (info->annotations, name);
405 interface_info_get_methods (InterfaceInfo *info)
407 return info->methods;
411 interface_info_get_signals (InterfaceInfo *info)
413 return info->signals;
417 interface_info_get_properties (InterfaceInfo *info)
419 return info->properties;
423 interface_info_add_annotation (InterfaceInfo *info,
427 g_hash_table_insert (info->annotations,
433 interface_info_add_method (InterfaceInfo *info,
436 method_info_ref (method);
437 info->methods = g_slist_append (info->methods, method);
441 interface_info_add_signal (InterfaceInfo *info,
444 signal_info_ref (signal);
445 info->signals = g_slist_append (info->signals, signal);
449 interface_info_add_property (InterfaceInfo *info,
450 PropertyInfo *property)
452 property_info_ref (property);
453 info->properties = g_slist_append (info->properties, property);
457 free_arg_list (GSList **args_p)
463 ArgInfo *ai = tmp->data;
464 g_assert (ai->base.type == INFO_TYPE_ARG);
465 arg_info_unref (tmp->data);
468 g_slist_free (*args_p);
473 method_info_new (const char *name)
477 info = g_new0 (MethodInfo, 1);
478 info->base.refcount = 1;
479 info->base.name = g_strdup (name);
480 info->base.type = INFO_TYPE_METHOD;
481 info->annotations = g_hash_table_new_full (g_str_hash, g_str_equal,
482 (GDestroyNotify) g_free,
483 (GDestroyNotify) g_free);
489 method_info_ref (MethodInfo *info)
491 info->base.refcount += 1;
497 method_info_unref (MethodInfo *info)
499 info->base.refcount -= 1;
500 if (info->base.refcount == 0)
502 g_hash_table_destroy (info->annotations);
503 free_arg_list (&info->args);
504 base_info_free (info);
509 method_info_get_name (MethodInfo *info)
511 return info->base.name;
515 method_info_get_annotations (MethodInfo *info)
517 return get_hash_keys (info->annotations);
521 method_info_get_annotation (MethodInfo *info,
524 return g_hash_table_lookup (info->annotations, name);
528 method_info_get_args (MethodInfo *info)
534 method_info_get_n_args (MethodInfo *info)
536 return g_slist_length (info->args);
540 args_sort_by_direction (const void *a,
543 const ArgInfo *arg_a = a;
544 const ArgInfo *arg_b = b;
546 if (arg_a->direction == arg_b->direction)
548 else if (arg_a->direction == ARG_IN)
549 return -1; /* in is less than out */
555 method_info_add_annotation (MethodInfo *info,
559 g_hash_table_insert (info->annotations,
565 method_info_add_arg (MethodInfo *info,
569 info->args = g_slist_append (info->args, arg);
571 /* Keep "in" args sorted before "out" and otherwise maintain
572 * stable order (g_slist_sort is stable, at least in sufficiently
575 info->args = g_slist_sort (info->args, args_sort_by_direction);
579 signal_info_new (const char *name)
583 info = g_new0 (SignalInfo, 1);
584 info->base.refcount = 1;
585 info->base.name = g_strdup (name);
586 info->base.type = INFO_TYPE_SIGNAL;
592 signal_info_ref (SignalInfo *info)
594 info->base.refcount += 1;
600 signal_info_unref (SignalInfo *info)
602 info->base.refcount -= 1;
603 if (info->base.refcount == 0)
605 free_arg_list (&info->args);
606 base_info_free (info);
611 signal_info_get_name (SignalInfo *info)
613 return info->base.name;
617 signal_info_get_args (SignalInfo *info)
623 signal_info_get_n_args (SignalInfo *info)
625 return g_slist_length (info->args);
629 signal_info_add_arg (SignalInfo *info,
632 g_assert (arg->direction == ARG_OUT);
635 info->args = g_slist_append (info->args, arg);
637 /* signal args don't need sorting since only "out" is allowed */
641 property_info_new (const char *name,
643 PropertyAccessFlags access)
647 info = g_new0 (PropertyInfo, 1);
648 info->base.refcount = 1;
649 info->base.name = g_strdup (name);
650 info->base.type = INFO_TYPE_PROPERTY;
652 info->type = g_strdup (type);
653 info->access = access;
659 property_info_ref (PropertyInfo *info)
661 info->base.refcount += 1;
667 property_info_unref (PropertyInfo *info)
669 info->base.refcount -= 1;
670 if (info->base.refcount == 0)
673 base_info_free (info);
678 property_info_get_name (PropertyInfo *info)
680 return info->base.name;
684 property_info_get_type (PropertyInfo *info)
690 property_info_get_access (PropertyInfo *info)
696 arg_info_new (const char *name,
697 ArgDirection direction,
702 info = g_new0 (ArgInfo, 1);
703 info->base.refcount = 1;
704 info->base.type = INFO_TYPE_ARG;
706 /* name can be NULL */
707 info->base.name = g_strdup (name);
708 info->direction = direction;
709 info->type = g_strdup (type);
710 info->annotations = g_hash_table_new_full (g_str_hash, g_str_equal,
711 (GDestroyNotify) g_free,
712 (GDestroyNotify) g_free);
718 arg_info_ref (ArgInfo *info)
720 info->base.refcount += 1;
726 arg_info_unref (ArgInfo *info)
728 info->base.refcount -= 1;
729 if (info->base.refcount == 0)
731 g_hash_table_destroy (info->annotations);
733 base_info_free (info);
738 arg_info_get_name (ArgInfo *info)
740 return info->base.name;
744 arg_info_get_type (ArgInfo *info)
750 arg_info_get_direction (ArgInfo *info)
752 return info->direction;
756 arg_info_get_annotations (ArgInfo *info)
758 return get_hash_keys (info->annotations);
762 arg_info_get_annotation (ArgInfo *info,
763 const char *annotation)
765 return g_hash_table_lookup (info->annotations, annotation);
769 arg_info_add_annotation (ArgInfo *info,
773 g_hash_table_insert (info->annotations,
779 #ifdef DBUS_BUILD_TESTS
783 * Unit test for GLib IDL internals
784 * Returns: #TRUE on success.
787 _dbus_gidl_test (void)
793 #endif /* DBUS_BUILD_TESTS */
795 #endif /* DOXYGEN_SHOULD_SKIP_THIS */