mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 23:46:17 +01:00
gi-dump-types: New uninstalled debugging program
Usage: ./_build/gi-dump-types g_object_get_type
This commit is contained in:
parent
6f0cf9a0aa
commit
61c8a0dda2
2
gdump.c
2
gdump.c
@ -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
34
gi-dump-types.c
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user