GVariant: add support for single precision floats
[platform/upstream/glib.git] / gio / fen / fen-dump.c
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* vim:set expandtab ts=4 shiftwidth=4: */
3 /* 
4  * Copyright (c) 2008, 2010 Oracle and/or its affiliates, Inc. All rights
5  * reserved.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General
18  * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
19  *
20  * Authors: Lin Ma <lin.ma@sun.com>
21  */
22
23 #include "config.h"
24 #include <glib.h>
25 #include <glib/gprintf.h>
26 #include "fen-node.h"
27 #include "fen-dump.h"
28
29 G_LOCK_EXTERN (fen_lock);
30
31 /*-------------------- node ------------------*/
32 static void
33 dump_node (node_t* node, gpointer data)
34 {
35     g_printf ("n:0x%p ds:0x%p s:0x%p %s\n", node, node->dir_subs, node->subs, NODE_NAME(node));
36 }
37
38 static void
39 dump_tree (node_t* node)
40 {
41     if (G_TRYLOCK (fen_lock)) {
42         node_traverse(NULL, dump_node, NULL);
43         G_UNLOCK (fen_lock);
44     }
45 }
46
47 /* ------------------ fdata port hash --------------------*/
48 void
49 dump_hash_cb (gpointer key,
50   gpointer value,
51   gpointer user_data)
52 {
53     g_printf ("k:0x%p v:0x%p >\n", key, value);
54 }
55
56 gboolean
57 dump_hash (GHashTable* hash, gpointer user_data)
58 {
59     if (G_TRYLOCK (fen_lock)) {
60         if (g_hash_table_size (hash) > 0) {
61             g_hash_table_foreach (hash, dump_hash_cb, user_data);
62         }
63         G_UNLOCK (fen_lock);
64     }
65     return TRUE;
66 }
67
68 /* ------------------ event --------------------*/
69 void
70 dump_event (node_event_t* ev, gpointer user_data)
71 {
72     node_t* node = ev->user_data;
73     g_printf ("ne:0x%p e:%p n:0x%p ds:0x%p s:0x%p s\n", ev, ev->e, node, node->dir_subs, node->subs, NODE_NAME(node));
74 }