sl@0
|
1 |
/* GObject - GLib Type, Object, Parameter and Signal Library
|
sl@0
|
2 |
* Copyright (C) 1998-1999, 2000-2001 Tim Janik and Red Hat, Inc.
|
sl@0
|
3 |
* Portions copyright (c) 2009 Nokia Corporation. All rights reserved.
|
sl@0
|
4 |
* This library is free software; you can redistribute it and/or
|
sl@0
|
5 |
* modify it under the terms of the GNU Lesser General Public
|
sl@0
|
6 |
* License as published by the Free Software Foundation; either
|
sl@0
|
7 |
* version 2 of the License, or (at your option) any later version.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is distributed in the hope that it will be useful,
|
sl@0
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
sl@0
|
12 |
* Lesser General Public License for more details.
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* You should have received a copy of the GNU Lesser General
|
sl@0
|
15 |
* Public License along with this library; if not, write to the
|
sl@0
|
16 |
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
sl@0
|
17 |
* Boston, MA 02111-1307, USA.
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
#include "config.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <stdlib.h>
|
sl@0
|
23 |
#include <string.h>
|
sl@0
|
24 |
#ifdef HAVE_UNISTD_H
|
sl@0
|
25 |
#include <unistd.h>
|
sl@0
|
26 |
#endif
|
sl@0
|
27 |
#include <sys/stat.h>
|
sl@0
|
28 |
#include <fcntl.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
#include <glib-object.h>
|
sl@0
|
31 |
#include <glib/gprintf.h>
|
sl@0
|
32 |
#ifdef __SYMBIAN32__
|
sl@0
|
33 |
#include "mrt2_glib2_test.h"
|
sl@0
|
34 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
35 |
|
sl@0
|
36 |
static gchar *indent_inc = NULL;
|
sl@0
|
37 |
static guint spacing = 1;
|
sl@0
|
38 |
static FILE *f_out = NULL;
|
sl@0
|
39 |
static GType root = 0;
|
sl@0
|
40 |
static gboolean recursion = TRUE;
|
sl@0
|
41 |
|
sl@0
|
42 |
#if 0
|
sl@0
|
43 |
# define O_SPACE "\\as"
|
sl@0
|
44 |
# define O_ESPACE " "
|
sl@0
|
45 |
# define O_BRANCH "\\aE"
|
sl@0
|
46 |
# define O_VLINE "\\al"
|
sl@0
|
47 |
# define O_LLEAF "\\aL"
|
sl@0
|
48 |
# define O_KEY_FILL "_"
|
sl@0
|
49 |
#else
|
sl@0
|
50 |
# define O_SPACE " "
|
sl@0
|
51 |
# define O_ESPACE ""
|
sl@0
|
52 |
# define O_BRANCH "+"
|
sl@0
|
53 |
# define O_VLINE "|"
|
sl@0
|
54 |
# define O_LLEAF "`"
|
sl@0
|
55 |
# define O_KEY_FILL "_"
|
sl@0
|
56 |
#endif
|
sl@0
|
57 |
|
sl@0
|
58 |
static void
|
sl@0
|
59 |
show_nodes (GType type,
|
sl@0
|
60 |
GType sibling,
|
sl@0
|
61 |
const gchar *indent)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
GType *children;
|
sl@0
|
64 |
guint i;
|
sl@0
|
65 |
|
sl@0
|
66 |
if (!type)
|
sl@0
|
67 |
return;
|
sl@0
|
68 |
|
sl@0
|
69 |
children = g_type_children (type, NULL);
|
sl@0
|
70 |
|
sl@0
|
71 |
if (type != root)
|
sl@0
|
72 |
for (i = 0; i < spacing; i++)
|
sl@0
|
73 |
g_fprintf (f_out, "%s%s\n", indent, O_VLINE);
|
sl@0
|
74 |
|
sl@0
|
75 |
g_fprintf (f_out, "%s%s%s%s",
|
sl@0
|
76 |
indent,
|
sl@0
|
77 |
sibling ? O_BRANCH : (type != root ? O_LLEAF : O_SPACE),
|
sl@0
|
78 |
O_ESPACE,
|
sl@0
|
79 |
g_type_name (type));
|
sl@0
|
80 |
|
sl@0
|
81 |
for (i = strlen (g_type_name (type)); i <= strlen (indent_inc); i++)
|
sl@0
|
82 |
fputs (O_KEY_FILL, f_out);
|
sl@0
|
83 |
|
sl@0
|
84 |
fputc ('\n', f_out);
|
sl@0
|
85 |
|
sl@0
|
86 |
if (children && recursion)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
gchar *new_indent;
|
sl@0
|
89 |
GType *child;
|
sl@0
|
90 |
|
sl@0
|
91 |
if (sibling)
|
sl@0
|
92 |
new_indent = g_strconcat (indent, O_VLINE, indent_inc, NULL);
|
sl@0
|
93 |
else
|
sl@0
|
94 |
new_indent = g_strconcat (indent, O_SPACE, indent_inc, NULL);
|
sl@0
|
95 |
|
sl@0
|
96 |
for (child = children; *child; child++)
|
sl@0
|
97 |
show_nodes (child[0], child[1], new_indent);
|
sl@0
|
98 |
|
sl@0
|
99 |
g_free (new_indent);
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
g_free (children);
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
static gint
|
sl@0
|
106 |
help (gchar *arg)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
g_fprintf (stderr, "usage: gobject-query <qualifier> [-r <type>] [-{i|b} \"\"] [-s #] [-{h|x|y}]\n");
|
sl@0
|
109 |
g_fprintf (stderr, " -r specifiy root type\n");
|
sl@0
|
110 |
g_fprintf (stderr, " -n don't descend type tree\n");
|
sl@0
|
111 |
g_fprintf (stderr, " -h guess what ;)\n");
|
sl@0
|
112 |
g_fprintf (stderr, " -b specify indent string\n");
|
sl@0
|
113 |
g_fprintf (stderr, " -i specify incremental indent string\n");
|
sl@0
|
114 |
g_fprintf (stderr, " -s specify line spacing\n");
|
sl@0
|
115 |
g_fprintf (stderr, "qualifiers:\n");
|
sl@0
|
116 |
g_fprintf (stderr, " froots iterate over fundamental roots\n");
|
sl@0
|
117 |
g_fprintf (stderr, " tree print type tree\n");
|
sl@0
|
118 |
|
sl@0
|
119 |
return arg != NULL;
|
sl@0
|
120 |
}
|
sl@0
|
121 |
|
sl@0
|
122 |
int
|
sl@0
|
123 |
main (gint argc,
|
sl@0
|
124 |
gchar *argv[])
|
sl@0
|
125 |
{
|
sl@0
|
126 |
GLogLevelFlags fatal_mask;
|
sl@0
|
127 |
gboolean gen_froots = 0;
|
sl@0
|
128 |
gboolean gen_tree = 0;
|
sl@0
|
129 |
gint i;
|
sl@0
|
130 |
gchar *iindent = "";
|
sl@0
|
131 |
#ifdef __SYMBIAN32__
|
sl@0
|
132 |
g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
|
sl@0
|
133 |
g_set_print_handler(mrtPrintHandler);
|
sl@0
|
134 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
135 |
f_out = stdout;
|
sl@0
|
136 |
|
sl@0
|
137 |
fatal_mask = g_log_set_always_fatal (G_LOG_FATAL_MASK);
|
sl@0
|
138 |
fatal_mask |= G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL;
|
sl@0
|
139 |
g_log_set_always_fatal (fatal_mask);
|
sl@0
|
140 |
|
sl@0
|
141 |
root = G_TYPE_OBJECT;
|
sl@0
|
142 |
|
sl@0
|
143 |
g_type_init ();
|
sl@0
|
144 |
|
sl@0
|
145 |
for (i = 1; i < argc; i++)
|
sl@0
|
146 |
{
|
sl@0
|
147 |
if (strcmp ("-s", argv[i]) == 0)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
i++;
|
sl@0
|
150 |
if (i < argc)
|
sl@0
|
151 |
spacing = atoi (argv[i]);
|
sl@0
|
152 |
}
|
sl@0
|
153 |
else if (strcmp ("-i", argv[i]) == 0)
|
sl@0
|
154 |
{
|
sl@0
|
155 |
i++;
|
sl@0
|
156 |
if (i < argc)
|
sl@0
|
157 |
{
|
sl@0
|
158 |
char *p;
|
sl@0
|
159 |
guint n;
|
sl@0
|
160 |
|
sl@0
|
161 |
p = argv[i];
|
sl@0
|
162 |
while (*p)
|
sl@0
|
163 |
p++;
|
sl@0
|
164 |
n = p - argv[i];
|
sl@0
|
165 |
indent_inc = g_new (gchar, n * strlen (O_SPACE) + 1);
|
sl@0
|
166 |
*indent_inc = 0;
|
sl@0
|
167 |
while (n)
|
sl@0
|
168 |
{
|
sl@0
|
169 |
n--;
|
sl@0
|
170 |
strcpy (indent_inc, O_SPACE);
|
sl@0
|
171 |
}
|
sl@0
|
172 |
}
|
sl@0
|
173 |
}
|
sl@0
|
174 |
else if (strcmp ("-b", argv[i]) == 0)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
i++;
|
sl@0
|
177 |
if (i < argc)
|
sl@0
|
178 |
iindent = argv[i];
|
sl@0
|
179 |
}
|
sl@0
|
180 |
else if (strcmp ("-r", argv[i]) == 0)
|
sl@0
|
181 |
{
|
sl@0
|
182 |
i++;
|
sl@0
|
183 |
if (i < argc)
|
sl@0
|
184 |
root = g_type_from_name (argv[i]);
|
sl@0
|
185 |
}
|
sl@0
|
186 |
else if (strcmp ("-n", argv[i]) == 0)
|
sl@0
|
187 |
{
|
sl@0
|
188 |
recursion = FALSE;
|
sl@0
|
189 |
}
|
sl@0
|
190 |
else if (strcmp ("froots", argv[i]) == 0)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
gen_froots = 1;
|
sl@0
|
193 |
}
|
sl@0
|
194 |
else if (strcmp ("tree", argv[i]) == 0)
|
sl@0
|
195 |
{
|
sl@0
|
196 |
gen_tree = 1;
|
sl@0
|
197 |
}
|
sl@0
|
198 |
else if (strcmp ("-h", argv[i]) == 0)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
return help (NULL);
|
sl@0
|
201 |
}
|
sl@0
|
202 |
else if (strcmp ("--help", argv[i]) == 0)
|
sl@0
|
203 |
{
|
sl@0
|
204 |
return help (NULL);
|
sl@0
|
205 |
}
|
sl@0
|
206 |
else
|
sl@0
|
207 |
return help (argv[i]);
|
sl@0
|
208 |
}
|
sl@0
|
209 |
|
sl@0
|
210 |
if (!gen_froots && !gen_tree)
|
sl@0
|
211 |
return help (argv[i-1]);
|
sl@0
|
212 |
|
sl@0
|
213 |
if (!indent_inc)
|
sl@0
|
214 |
{
|
sl@0
|
215 |
indent_inc = g_new (gchar, strlen (O_SPACE) + 1);
|
sl@0
|
216 |
*indent_inc = 0;
|
sl@0
|
217 |
strcpy (indent_inc, O_SPACE);
|
sl@0
|
218 |
}
|
sl@0
|
219 |
|
sl@0
|
220 |
if (gen_tree)
|
sl@0
|
221 |
show_nodes (root, 0, iindent);
|
sl@0
|
222 |
if (gen_froots)
|
sl@0
|
223 |
{
|
sl@0
|
224 |
root = ~0;
|
sl@0
|
225 |
for (i = 0; i <= G_TYPE_FUNDAMENTAL_MAX; i += G_TYPE_MAKE_FUNDAMENTAL (1))
|
sl@0
|
226 |
{
|
sl@0
|
227 |
const gchar *name = g_type_name (i);
|
sl@0
|
228 |
|
sl@0
|
229 |
if (name)
|
sl@0
|
230 |
show_nodes (i, 0, iindent);
|
sl@0
|
231 |
}
|
sl@0
|
232 |
}
|
sl@0
|
233 |
#ifdef __SYMBIAN32__
|
sl@0
|
234 |
testResultXml("gobject-querry");
|
sl@0
|
235 |
#endif /* EMULATOR */
|
sl@0
|
236 |
return 0;
|
sl@0
|
237 |
}
|