gi-dump-types: New uninstalled debugging program

Usage: ./_build/gi-dump-types g_object_get_type
This commit is contained in:
Colin Walters 2011-09-03 12:34:29 -04:00
parent 6f0cf9a0aa
commit 61c8a0dda2
2 changed files with 36 additions and 0 deletions

View File

@ -431,6 +431,8 @@ dump_error_quark (GQuark quark, const char *symbol, GOutputStream *out)
*/
#ifndef G_IREPOSITORY_COMPILATION
static gboolean
dump_irepository (const char *arg, GError **error) G_GNUC_UNUSED;
static gboolean
dump_irepository (const char *arg, GError **error)
#else
gboolean

34
gi-dump-types.c Normal file
View File

@ -0,0 +1,34 @@
#include "gdump.c"
#include <gio/gunixoutputstream.h>
int
main (int argc,
char **argv)
{
int i;
GOutputStream *stdout;
GModule *self;
g_type_init ();
stdout = g_unix_output_stream_new (1, FALSE);
self = g_module_open (NULL, 0);
for (i = 1; i < argc; i++)
{
GError *error = NULL;
GType type;
type = invoke_get_type (self, argv[i], &error);
if (!type)
{
g_printerr ("%s\n", error->message);
g_clear_error (&error);
}
else
dump_type (type, argv[i], stdout);
}
return 0;
}