Make GSettingsSchemaKey public
[platform/upstream/glib.git] / gio / glib-compile-resources.c
1 /*
2  * Copyright © 2011 Red Hat, Inc
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the licence, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  *
19  * Author: Alexander Larsson <alexl@redhat.com>
20  */
21
22 #include "config.h"
23
24 #include <glib.h>
25 #include <gstdio.h>
26 #include <gi18n.h>
27 #include <gioenums.h>
28
29 #include <string.h>
30 #include <stdio.h>
31 #include <locale.h>
32 #include <errno.h>
33 #ifdef G_OS_WIN32
34 #include <io.h>
35 #endif
36
37 #include <gio/gmemoryoutputstream.h>
38 #include <gio/gzlibcompressor.h>
39 #include <gio/gconverteroutputstream.h>
40
41 #ifdef HAVE_UNISTD_H
42 #include <unistd.h>
43 #endif
44
45 #include <glib.h>
46 #include "gvdb/gvdb-builder.h"
47
48 #include "gconstructor_as_data.h"
49
50 #ifdef G_OS_WIN32
51 #include "glib/glib-private.h"
52 #endif
53
54 typedef struct
55 {
56   char *filename;
57   char *content;
58   gsize content_size;
59   gsize size;
60   guint32 flags;
61 } FileData;
62
63 typedef struct
64 {
65   GHashTable *table; /* resource path -> FileData */
66
67   gboolean collect_data;
68
69   /* per gresource */
70   char *prefix;
71
72   /* per file */
73   char *alias;
74   gboolean compressed;
75   char *preproc_options;
76
77   GString *string;  /* non-NULL when accepting text */
78 } ParseState;
79
80 static gchar **sourcedirs = NULL;
81 static gchar *xmllint = NULL;
82 static gchar *gdk_pixbuf_pixdata = NULL;
83
84 static void
85 file_data_free (FileData *data)
86 {
87   g_free (data->filename);
88   g_free (data->content);
89   g_free (data);
90 }
91
92 static void
93 start_element (GMarkupParseContext  *context,
94                const gchar          *element_name,
95                const gchar         **attribute_names,
96                const gchar         **attribute_values,
97                gpointer              user_data,
98                GError              **error)
99 {
100   ParseState *state = user_data;
101   const GSList *element_stack;
102   const gchar *container;
103
104   element_stack = g_markup_parse_context_get_element_stack (context);
105   container = element_stack->next ? element_stack->next->data : NULL;
106
107 #define COLLECT(first, ...) \
108   g_markup_collect_attributes (element_name,                                 \
109                                attribute_names, attribute_values, error,     \
110                                first, __VA_ARGS__, G_MARKUP_COLLECT_INVALID)
111 #define OPTIONAL   G_MARKUP_COLLECT_OPTIONAL
112 #define STRDUP     G_MARKUP_COLLECT_STRDUP
113 #define STRING     G_MARKUP_COLLECT_STRING
114 #define BOOL       G_MARKUP_COLLECT_BOOLEAN
115 #define NO_ATTRS()  COLLECT (G_MARKUP_COLLECT_INVALID, NULL)
116
117   if (container == NULL)
118     {
119       if (strcmp (element_name, "gresources") == 0)
120         return;
121     }
122   else if (strcmp (container, "gresources") == 0)
123     {
124       if (strcmp (element_name, "gresource") == 0)
125         {
126           COLLECT (OPTIONAL | STRDUP,
127                    "prefix", &state->prefix);
128           return;
129         }
130     }
131   else if (strcmp (container, "gresource") == 0)
132     {
133       if (strcmp (element_name, "file") == 0)
134         {
135           COLLECT (OPTIONAL | STRDUP, "alias", &state->alias,
136                    OPTIONAL | BOOL, "compressed", &state->compressed,
137                    OPTIONAL | STRDUP, "preprocess", &state->preproc_options);
138           state->string = g_string_new ("");
139           return;
140         }
141     }
142
143   if (container)
144     g_set_error (error, G_MARKUP_ERROR, G_MARKUP_ERROR_UNKNOWN_ELEMENT,
145                  _("Element <%s> not allowed inside <%s>"),
146                  element_name, container);
147   else
148     g_set_error (error, G_MARKUP_ERROR, G_MARKUP_ERROR_UNKNOWN_ELEMENT,
149                  _("Element <%s> not allowed at toplevel"), element_name);
150
151 }
152
153 static GvdbItem *
154 get_parent (GHashTable *table,
155             gchar      *key,
156             gint        length)
157 {
158   GvdbItem *grandparent, *parent;
159
160   if (length == 1)
161     return NULL;
162
163   while (key[--length - 1] != '/');
164   key[length] = '\0';
165
166   parent = g_hash_table_lookup (table, key);
167
168   if (parent == NULL)
169     {
170       parent = gvdb_hash_table_insert (table, key);
171
172       grandparent = get_parent (table, key, length);
173
174       if (grandparent != NULL)
175         gvdb_item_set_parent (parent, grandparent);
176     }
177
178   return parent;
179 }
180
181 static gchar *
182 find_file (const gchar *filename)
183 {
184   guint i;
185   gchar *real_file;
186   gboolean exists;
187
188   if (g_path_is_absolute (filename))
189     return g_strdup (filename);
190
191   /* search all the sourcedirs for the correct files in order */
192   for (i = 0; sourcedirs[i] != NULL; i++)
193     {
194         real_file = g_build_filename (sourcedirs[i], filename, NULL);
195         exists = g_file_test (real_file, G_FILE_TEST_EXISTS);
196         if (exists)
197           return real_file;
198         g_free (real_file);
199     }
200     return NULL;
201 }
202
203 static void
204 end_element (GMarkupParseContext  *context,
205              const gchar          *element_name,
206              gpointer              user_data,
207              GError              **error)
208 {
209   ParseState *state = user_data;
210   GError *my_error = NULL;
211
212   if (strcmp (element_name, "gresource") == 0)
213     {
214       g_free (state->prefix);
215       state->prefix = NULL;
216     }
217
218   else if (strcmp (element_name, "file") == 0)
219     {
220       gchar *file, *real_file;
221       gchar *key;
222       FileData *data;
223       char *tmp_file = NULL;
224       char *tmp_file2 = NULL;
225
226       file = state->string->str;
227       key = file;
228       if (state->alias)
229         key = state->alias;
230
231       if (state->prefix)
232         key = g_build_path ("/", "/", state->prefix, key, NULL);
233       else
234         key = g_build_path ("/", "/", key, NULL);
235
236       if (g_hash_table_lookup (state->table, key) != NULL)
237         {
238           g_set_error (error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT,
239                        _("File %s appears multiple times in the resource"),
240                        key);
241           return;
242         }
243
244       data = g_new0 (FileData, 1);
245
246       if (sourcedirs != NULL)
247         {
248           real_file = find_file (file);
249           if (real_file == NULL)
250             {
251                 g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
252                              _("Failed to locate '%s' in any source directory"), file);
253                 return;
254             }
255         }
256       else
257         {
258           gboolean exists;
259           exists = g_file_test (file, G_FILE_TEST_EXISTS);
260           if (!exists)
261             {
262               g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
263                            _("Failed to locate '%s' in current directory"), file);
264               return;
265             }
266           real_file = g_strdup (file);
267         }
268
269       data->filename = g_strdup (real_file);
270       if (!state->collect_data)
271         goto done;
272
273       if (state->preproc_options)
274         {
275           gchar **options;
276           guint i;
277           gboolean xml_stripblanks = FALSE;
278           gboolean to_pixdata = FALSE;
279
280           options = g_strsplit (state->preproc_options, ",", -1);
281
282           for (i = 0; options[i]; i++)
283             {
284               if (!strcmp (options[i], "xml-stripblanks"))
285                 xml_stripblanks = TRUE;
286               else if (!strcmp (options[i], "to-pixdata"))
287                 to_pixdata = TRUE;
288               else
289                 {
290                   g_set_error (error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT,
291                                _("Unknown processing option \"%s\""), options[i]);
292                   g_strfreev (options);
293                   goto cleanup;
294                 }
295             }
296           g_strfreev (options);
297
298           if (xml_stripblanks && xmllint != NULL)
299             {
300               int fd;
301               GSubprocess *proc;
302
303               tmp_file = g_strdup ("resource-XXXXXXXX");
304               if ((fd = g_mkstemp (tmp_file)) == -1)
305                 {
306                   int errsv = errno;
307
308                   g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv),
309                                _("Failed to create temp file: %s"),
310                               g_strerror (errsv));
311                   g_free (tmp_file);
312                   tmp_file = NULL;
313                   goto cleanup;
314                 }
315               close (fd);
316
317               proc = g_subprocess_new (G_SUBPROCESS_FLAGS_STDOUT_SILENCE, error,
318                                        xmllint, "--nonet", "--noblanks", "--output", tmp_file, real_file, NULL);
319               g_free (real_file);
320               real_file = NULL;
321
322               if (!proc)
323                 goto cleanup;
324
325               if (!g_subprocess_wait_check (proc, NULL, error))
326                 {
327                   g_object_unref (proc);
328                   goto cleanup;
329                 }
330
331               g_object_unref (proc);
332
333               real_file = g_strdup (tmp_file);
334             }
335
336           if (to_pixdata)
337             {
338               int fd;
339               GSubprocess *proc;
340
341               if (gdk_pixbuf_pixdata == NULL)
342                 {
343                   g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
344                                        "to-pixbuf preprocessing requested but GDK_PIXBUF_PIXDATA "
345                                        "not set and gdk-pixbuf-pixdata not found in path");
346                   goto cleanup;
347                 }
348
349               tmp_file2 = g_strdup ("resource-XXXXXXXX");
350               if ((fd = g_mkstemp (tmp_file2)) == -1)
351                 {
352                   int errsv = errno;
353
354                   g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv),
355                                _("Failed to create temp file: %s"),
356                                g_strerror (errsv));
357                   g_free (tmp_file2);
358                   tmp_file2 = NULL;
359                   goto cleanup;
360                 }
361               close (fd);
362
363               proc = g_subprocess_new (G_SUBPROCESS_FLAGS_STDOUT_SILENCE, error,
364                                        gdk_pixbuf_pixdata, real_file, tmp_file2, NULL);
365               g_free (real_file);
366               real_file = NULL;
367
368               if (!g_subprocess_wait_check (proc, NULL, error))
369                 {
370                   g_object_unref (proc);
371                   goto cleanup;
372                 }
373
374               g_object_unref (proc);
375
376               real_file = g_strdup (tmp_file2);
377             }
378         }
379
380       if (!g_file_get_contents (real_file, &data->content, &data->size, &my_error))
381         {
382           g_set_error (error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT,
383                        _("Error reading file %s: %s"),
384                        real_file, my_error->message);
385           g_clear_error (&my_error);
386           goto cleanup;
387         }
388       /* Include zero termination in content_size for uncompressed files (but not in size) */
389       data->content_size = data->size + 1;
390
391       if (state->compressed)
392         {
393           GOutputStream *out = g_memory_output_stream_new (NULL, 0, g_realloc, g_free);
394           GZlibCompressor *compressor =
395             g_zlib_compressor_new (G_ZLIB_COMPRESSOR_FORMAT_ZLIB, 9);
396           GOutputStream *out2 = g_converter_output_stream_new (out, G_CONVERTER (compressor));
397
398           if (!g_output_stream_write_all (out2, data->content, data->size,
399                                           NULL, NULL, NULL) ||
400               !g_output_stream_close (out2, NULL, NULL))
401             {
402               g_set_error (error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT,
403                            _("Error compressing file %s"),
404                            real_file);
405               goto cleanup;
406             }
407
408           g_free (data->content);
409           data->content_size = g_memory_output_stream_get_size (G_MEMORY_OUTPUT_STREAM (out));
410           data->content = g_memory_output_stream_steal_data (G_MEMORY_OUTPUT_STREAM (out));
411
412           g_object_unref (compressor);
413           g_object_unref (out);
414           g_object_unref (out2);
415
416           data->flags |= G_RESOURCE_FLAGS_COMPRESSED;
417         }
418
419     done:
420
421       g_hash_table_insert (state->table, key, data);
422
423     cleanup:
424       /* Cleanup */
425
426       g_free (state->alias);
427       state->alias = NULL;
428       g_string_free (state->string, TRUE);
429       state->string = NULL;
430       g_free (state->preproc_options);
431       state->preproc_options = NULL;
432
433       g_free (real_file);
434
435       if (tmp_file)
436         {
437           unlink (tmp_file);
438           g_free (tmp_file);
439         }
440
441       if (tmp_file2)
442         {
443           unlink (tmp_file2);
444           g_free (tmp_file2);
445         }
446     }
447 }
448
449 static void
450 text (GMarkupParseContext  *context,
451       const gchar          *text,
452       gsize                 text_len,
453       gpointer              user_data,
454       GError              **error)
455 {
456   ParseState *state = user_data;
457   gsize i;
458
459   for (i = 0; i < text_len; i++)
460     if (!g_ascii_isspace (text[i]))
461       {
462         if (state->string)
463           g_string_append_len (state->string, text, text_len);
464
465         else
466           g_set_error (error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT,
467                        _("text may not appear inside <%s>"),
468                        g_markup_parse_context_get_element (context));
469
470         break;
471       }
472 }
473
474 static GHashTable *
475 parse_resource_file (const gchar *filename,
476                      gboolean collect_data)
477 {
478   GMarkupParser parser = { start_element, end_element, text };
479   ParseState state = { 0, };
480   GMarkupParseContext *context;
481   GError *error = NULL;
482   gchar *contents;
483   GHashTable *table = NULL;
484   gsize size;
485
486   if (!g_file_get_contents (filename, &contents, &size, &error))
487     {
488       g_printerr ("%s\n", error->message);
489       g_clear_error (&error);
490       return NULL;
491     }
492
493   state.table = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, (GDestroyNotify)file_data_free);
494   state.collect_data = collect_data;
495
496   context = g_markup_parse_context_new (&parser,
497                                         G_MARKUP_TREAT_CDATA_AS_TEXT |
498                                         G_MARKUP_PREFIX_ERROR_POSITION,
499                                         &state, NULL);
500
501   if (!g_markup_parse_context_parse (context, contents, size, &error) ||
502       !g_markup_parse_context_end_parse (context, &error))
503     {
504       g_printerr ("%s: %s.\n", filename, error->message);
505       g_clear_error (&error);
506     }
507   else if (collect_data)
508     {
509       GHashTableIter iter;
510       const char *key;
511       char *mykey;
512       gsize key_len;
513       FileData *data;
514       GVariant *v_data;
515       GVariantBuilder builder;
516       GvdbItem *item;
517
518       table = gvdb_hash_table_new (NULL, NULL);
519
520       g_hash_table_iter_init (&iter, state.table);
521       while (g_hash_table_iter_next (&iter, (gpointer *)&key, (gpointer *)&data))
522         {
523           key_len = strlen (key);
524           mykey = g_strdup (key);
525
526           item = gvdb_hash_table_insert (table, key);
527           gvdb_item_set_parent (item,
528                                 get_parent (table, mykey, key_len));
529
530           g_free (mykey);
531
532           g_variant_builder_init (&builder, G_VARIANT_TYPE ("(uuay)"));
533
534           g_variant_builder_add (&builder, "u", data->size); /* Size */
535           g_variant_builder_add (&builder, "u", data->flags); /* Flags */
536
537           v_data = g_variant_new_from_data (G_VARIANT_TYPE("ay"),
538                                             data->content, data->content_size, TRUE,
539                                             g_free, data->content);
540           g_variant_builder_add_value (&builder, v_data);
541           data->content = NULL; /* Take ownership */
542
543           gvdb_item_set_value (item,
544                                g_variant_builder_end (&builder));
545         }
546     }
547   else
548     {
549       table = g_hash_table_ref (state.table);
550     }
551
552   g_hash_table_unref (state.table);
553   g_markup_parse_context_free (context);
554   g_free (contents);
555
556   return table;
557 }
558
559 static gboolean
560 write_to_file (GHashTable   *table,
561                const gchar  *filename,
562                GError      **error)
563 {
564   gboolean success;
565
566   success = gvdb_table_write_contents (table, filename,
567                                        G_BYTE_ORDER != G_LITTLE_ENDIAN,
568                                        error);
569
570   return success;
571 }
572
573 int
574 main (int argc, char **argv)
575 {
576   GError *error;
577   GHashTable *table;
578   gchar *srcfile;
579   gchar *target = NULL;
580   gchar *binary_target = NULL;
581   gboolean generate_automatic = FALSE;
582   gboolean generate_source = FALSE;
583   gboolean generate_header = FALSE;
584   gboolean manual_register = FALSE;
585   gboolean internal = FALSE;
586   gboolean generate_dependencies = FALSE;
587   char *c_name = NULL;
588   char *c_name_no_underscores;
589   const char *linkage = "extern";
590   GOptionContext *context;
591   GOptionEntry entries[] = {
592     { "target", 0, 0, G_OPTION_ARG_FILENAME, &target, N_("name of the output file"), N_("FILE") },
593     { "sourcedir", 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &sourcedirs, N_("The directories where files are to be read from (default to current directory)"), N_("DIRECTORY") },
594     { "generate", 0, 0, G_OPTION_ARG_NONE, &generate_automatic, N_("Generate output in the format selected for by the target filename extension"), NULL },
595     { "generate-header", 0, 0, G_OPTION_ARG_NONE, &generate_header, N_("Generate source header"), NULL },
596     { "generate-source", 0, 0, G_OPTION_ARG_NONE, &generate_source, N_("Generate sourcecode used to link in the resource file into your code"), NULL },
597     { "generate-dependencies", 0, 0, G_OPTION_ARG_NONE, &generate_dependencies, N_("Generate dependency list"), NULL },
598     { "manual-register", 0, 0, G_OPTION_ARG_NONE, &manual_register, N_("Don't automatically create and register resource"), NULL },
599     { "internal", 0, 0, G_OPTION_ARG_NONE, &internal, N_("Don't export functions; declare them G_GNUC_INTERNAL"), NULL },
600     { "c-name", 0, 0, G_OPTION_ARG_STRING, &c_name, N_("C identifier name used for the generated source code"), NULL },
601     { NULL }
602   };
603
604 #ifdef G_OS_WIN32
605   gchar *tmp;
606 #endif
607
608   setlocale (LC_ALL, "");
609   textdomain (GETTEXT_PACKAGE);
610
611 #ifdef G_OS_WIN32
612   tmp = _glib_get_locale_dir ();
613   bindtextdomain (GETTEXT_PACKAGE, tmp);
614   g_free (tmp);
615 #else
616   bindtextdomain (GETTEXT_PACKAGE, GLIB_LOCALE_DIR);
617 #endif
618
619 #ifdef HAVE_BIND_TEXTDOMAIN_CODESET
620   bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
621 #endif
622
623   context = g_option_context_new (N_("FILE"));
624   g_option_context_set_translation_domain (context, GETTEXT_PACKAGE);
625   g_option_context_set_summary (context,
626     N_("Compile a resource specification into a resource file.\n"
627        "Resource specification files have the extension .gresource.xml,\n"
628        "and the resource file have the extension called .gresource."));
629   g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
630
631   error = NULL;
632   if (!g_option_context_parse (context, &argc, &argv, &error))
633     {
634       g_printerr ("%s\n", error->message);
635       return 1;
636     }
637
638   g_option_context_free (context);
639
640   if (argc != 2)
641     {
642       g_printerr (_("You should give exactly one file name\n"));
643       return 1;
644     }
645
646   if (internal)
647     linkage = "G_GNUC_INTERNAL";
648
649   srcfile = argv[1];
650
651   xmllint = g_strdup (g_getenv ("XMLLINT"));
652   if (xmllint == NULL)
653     xmllint = g_find_program_in_path ("xmllint");
654   if (xmllint == NULL)
655     g_printerr ("XMLLINT not set and xmllint not found in path; skipping xml preprocessing.\n");
656
657   gdk_pixbuf_pixdata = g_strdup (g_getenv ("GDK_PIXBUF_PIXDATA"));
658   if (gdk_pixbuf_pixdata == NULL)
659     gdk_pixbuf_pixdata = g_find_program_in_path ("gdk-pixbuf-pixdata");
660
661   if (target == NULL)
662     {
663       char *dirname = g_path_get_dirname (srcfile);
664       char *base = g_path_get_basename (srcfile);
665       char *target_basename;
666       if (g_str_has_suffix (base, ".xml"))
667         base[strlen(base) - strlen (".xml")] = 0;
668
669       if (generate_source)
670         {
671           if (g_str_has_suffix (base, ".gresource"))
672             base[strlen(base) - strlen (".gresource")] = 0;
673           target_basename = g_strconcat (base, ".c", NULL);
674         }
675       else
676         {
677           if (g_str_has_suffix (base, ".gresource"))
678             target_basename = g_strdup (base);
679           else
680             target_basename = g_strconcat (base, ".gresource", NULL);
681         }
682
683       target = g_build_filename (dirname, target_basename, NULL);
684       g_free (target_basename);
685       g_free (dirname);
686       g_free (base);
687     }
688   else if (generate_automatic)
689     {
690       if (g_str_has_suffix (target, ".c"))
691         generate_source = TRUE;
692       else if (g_str_has_suffix (target, ".h"))
693         generate_header = TRUE;
694       else if (g_str_has_suffix (target, ".gresource"))
695         ;
696     }
697
698   if ((table = parse_resource_file (srcfile, !generate_dependencies)) == NULL)
699     {
700       g_free (target);
701       return 1;
702     }
703
704   if (generate_dependencies)
705     {
706       GHashTableIter iter;
707       gpointer key, data;
708       FileData *file_data;
709
710       g_hash_table_iter_init (&iter, table);
711       while (g_hash_table_iter_next (&iter, &key, &data))
712         {
713           file_data = data;
714           g_print ("%s\n",file_data->filename);
715         }
716     }
717   else if (generate_source || generate_header)
718     {
719       if (generate_source)
720         {
721           int fd = g_file_open_tmp (NULL, &binary_target, NULL);
722           if (fd == -1)
723             {
724               g_printerr ("Can't open temp file\n");
725               return 1;
726             }
727           close (fd);
728         }
729
730       if (c_name == NULL)
731         {
732           char *base = g_path_get_basename (srcfile);
733           GString *s;
734           char *dot;
735           int i;
736
737           /* Remove extensions */
738           dot = strchr (base, '.');
739           if (dot)
740             *dot = 0;
741
742           s = g_string_new ("");
743
744           for (i = 0; base[i] != 0; i++)
745             {
746               const char *first = G_CSET_A_2_Z G_CSET_a_2_z "_";
747               const char *rest = G_CSET_A_2_Z G_CSET_a_2_z G_CSET_DIGITS "_";
748               if (strchr ((i == 0) ? first : rest, base[i]) != NULL)
749                 g_string_append_c (s, base[i]);
750               else if (base[i] == '-')
751                 g_string_append_c (s, '_');
752
753             }
754
755           c_name = g_string_free (s, FALSE);
756         }
757     }
758   else
759     binary_target = g_strdup (target);
760
761   c_name_no_underscores = c_name;
762   while (c_name_no_underscores && *c_name_no_underscores == '_')
763     c_name_no_underscores++;
764
765   if (binary_target != NULL &&
766       !write_to_file (table, binary_target, &error))
767     {
768       g_printerr ("%s\n", error->message);
769       g_free (target);
770       return 1;
771     }
772
773   if (generate_header)
774     {
775       FILE *file;
776
777       file = fopen (target, "w");
778       if (file == NULL)
779         {
780           g_printerr ("can't write to file %s", target);
781           return 1;
782         }
783
784       fprintf (file,
785                "#ifndef __RESOURCE_%s_H__\n"
786                "#define __RESOURCE_%s_H__\n"
787                "\n"
788                "#include <gio/gio.h>\n"
789                "\n"
790                "%s GResource *%s_get_resource (void);\n",
791                c_name, c_name, linkage, c_name);
792
793       if (manual_register)
794         fprintf (file,
795                  "\n"
796                  "%s void %s_register_resource (void);\n"
797                  "%s void %s_unregister_resource (void);\n"
798                  "\n",
799                  linkage, c_name, linkage, c_name);
800
801       fprintf (file,
802                "#endif\n");
803
804       fclose (file);
805     }
806   else if (generate_source)
807     {
808       FILE *file;
809       guint8 *data;
810       gsize data_size;
811       gsize i;
812
813       if (!g_file_get_contents (binary_target, (char **)&data,
814                                 &data_size, NULL))
815         {
816           g_printerr ("can't read back temporary file");
817           return 1;
818         }
819       g_unlink (binary_target);
820
821       file = fopen (target, "w");
822       if (file == NULL)
823         {
824           g_printerr ("can't write to file %s", target);
825           return 1;
826         }
827
828       fprintf (file,
829                "#include <gio/gio.h>\n"
830                "\n"
831                "#if defined (__ELF__) && ( __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6))\n"
832                "# define SECTION __attribute__ ((section (\".gresource.%s\"), aligned (8)))\n"
833                "#else\n"
834                "# define SECTION\n"
835                "#endif\n"
836                "\n"
837                "static const SECTION union { const guint8 data[%"G_GSIZE_FORMAT"]; const double alignment; void * const ptr;}  %s_resource_data = { {\n",
838                c_name_no_underscores, data_size, c_name);
839
840       for (i = 0; i < data_size; i++) {
841         if (i % 8 == 0)
842           fprintf (file, "  ");
843         fprintf (file, "0x%2.2x", (int)data[i]);
844         if (i != data_size - 1)
845           fprintf (file, ", ");
846         if ((i % 8 == 7) || (i == data_size - 1))
847           fprintf (file, "\n");
848       }
849
850       fprintf (file, "} };\n");
851
852       fprintf (file,
853                "\n"
854                "static GStaticResource static_resource = { %s_resource_data.data, sizeof (%s_resource_data.data), NULL, NULL, NULL };\n"
855                "%s GResource *%s_get_resource (void);\n"
856                "GResource *%s_get_resource (void)\n"
857                "{\n"
858                "  return g_static_resource_get_resource (&static_resource);\n"
859                "}\n",
860                c_name, c_name, linkage, c_name, c_name);
861
862
863       if (manual_register)
864         {
865           fprintf (file,
866                    "\n"
867                    "%s void %s_unregister_resource (void);\n"
868                    "void %s_unregister_resource (void)\n"
869                    "{\n"
870                    "  g_static_resource_fini (&static_resource);\n"
871                    "}\n"
872                    "\n"
873                    "%s void %s_register_resource (void);\n"
874                    "void %s_register_resource (void)\n"
875                    "{\n"
876                    "  g_static_resource_init (&static_resource);\n"
877                    "}\n",
878                    linkage, c_name, c_name, linkage, c_name, c_name);
879         }
880       else
881         {
882           fprintf (file, "%s", gconstructor_code);
883           fprintf (file,
884                    "\n"
885                    "#ifdef G_HAS_CONSTRUCTORS\n"
886                    "\n"
887                    "#ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA\n"
888                    "#pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(resource_constructor)\n"
889                    "#endif\n"
890                    "G_DEFINE_CONSTRUCTOR(resource_constructor)\n"
891                    "#ifdef G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA\n"
892                    "#pragma G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(resource_destructor)\n"
893                    "#endif\n"
894                    "G_DEFINE_DESTRUCTOR(resource_destructor)\n"
895                    "\n"
896                    "#else\n"
897                    "#warning \"Constructor not supported on this compiler, linking in resources will not work\"\n"
898                    "#endif\n"
899                    "\n"
900                    "static void resource_constructor (void)\n"
901                    "{\n"
902                    "  g_static_resource_init (&static_resource);\n"
903                    "}\n"
904                    "\n"
905                    "static void resource_destructor (void)\n"
906                    "{\n"
907                    "  g_static_resource_fini (&static_resource);\n"
908                    "}\n");
909         }
910
911       fclose (file);
912
913       g_free (data);
914     }
915
916   g_free (binary_target);
917   g_free (target);
918   g_hash_table_destroy (table);
919   g_free (xmllint);
920
921   return 0;
922 }