2 * Copyright © 2011 Red Hat, Inc
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.1 of the License, or (at your option) any later version.
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.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
17 * Author: Alexander Larsson <alexl@redhat.com>
38 #include <gio/gmemoryoutputstream.h>
39 #include <gio/gzlibcompressor.h>
40 #include <gio/gconverteroutputstream.h>
43 #include "gvdb/gvdb-builder.h"
45 #include "gconstructor_as_data.h"
48 #include "glib/glib-private.h"
62 GHashTable
*table
; /* resource path -> FileData */
64 gboolean collect_data
;
72 char *preproc_options
;
74 GString
*string
; /* non-NULL when accepting text */
77 static gchar
**sourcedirs
= NULL
;
78 static gchar
*xmllint
= NULL
;
79 static gchar
*jsonformat
= NULL
;
80 static gchar
*gdk_pixbuf_pixdata
= NULL
;
83 file_data_free (FileData
*data
)
85 g_free (data
->filename
);
86 g_free (data
->content
);
91 start_element (GMarkupParseContext
*context
,
92 const gchar
*element_name
,
93 const gchar
**attribute_names
,
94 const gchar
**attribute_values
,
98 ParseState
*state
= user_data
;
99 const GSList
*element_stack
;
100 const gchar
*container
;
102 element_stack
= g_markup_parse_context_get_element_stack (context
);
103 container
= element_stack
->next
? element_stack
->next
->data
: NULL
;
105 #define COLLECT(first, ...) \
106 g_markup_collect_attributes (element_name, \
107 attribute_names, attribute_values, error, \
108 first, __VA_ARGS__, G_MARKUP_COLLECT_INVALID)
109 #define OPTIONAL G_MARKUP_COLLECT_OPTIONAL
110 #define STRDUP G_MARKUP_COLLECT_STRDUP
111 #define STRING G_MARKUP_COLLECT_STRING
112 #define BOOL G_MARKUP_COLLECT_BOOLEAN
113 #define NO_ATTRS() COLLECT (G_MARKUP_COLLECT_INVALID, NULL)
115 if (container
== NULL
)
117 if (strcmp (element_name
, "gresources") == 0)
120 else if (strcmp (container
, "gresources") == 0)
122 if (strcmp (element_name
, "gresource") == 0)
124 COLLECT (OPTIONAL
| STRDUP
,
125 "prefix", &state
->prefix
);
129 else if (strcmp (container
, "gresource") == 0)
131 if (strcmp (element_name
, "file") == 0)
133 COLLECT (OPTIONAL
| STRDUP
, "alias", &state
->alias
,
134 OPTIONAL
| BOOL
, "compressed", &state
->compressed
,
135 OPTIONAL
| STRDUP
, "preprocess", &state
->preproc_options
);
136 state
->string
= g_string_new ("");
142 g_set_error (error
, G_MARKUP_ERROR
, G_MARKUP_ERROR_UNKNOWN_ELEMENT
,
143 _("Element <%s> not allowed inside <%s>"),
144 element_name
, container
);
146 g_set_error (error
, G_MARKUP_ERROR
, G_MARKUP_ERROR_UNKNOWN_ELEMENT
,
147 _("Element <%s> not allowed at toplevel"), element_name
);
152 get_parent (GHashTable
*table
,
156 GvdbItem
*grandparent
, *parent
;
161 while (key
[--length
- 1] != '/');
164 parent
= g_hash_table_lookup (table
, key
);
168 parent
= gvdb_hash_table_insert (table
, key
);
170 grandparent
= get_parent (table
, key
, length
);
172 if (grandparent
!= NULL
)
173 gvdb_item_set_parent (parent
, grandparent
);
180 find_file (const gchar
*filename
)
186 if (g_path_is_absolute (filename
))
187 return g_strdup (filename
);
189 /* search all the sourcedirs for the correct files in order */
190 for (i
= 0; sourcedirs
[i
] != NULL
; i
++)
192 real_file
= g_build_path ("/", sourcedirs
[i
], filename
, NULL
);
193 exists
= g_file_test (real_file
, G_FILE_TEST_EXISTS
);
202 end_element (GMarkupParseContext
*context
,
203 const gchar
*element_name
,
207 ParseState
*state
= user_data
;
208 GError
*my_error
= NULL
;
210 if (strcmp (element_name
, "gresource") == 0)
212 g_free (state
->prefix
);
213 state
->prefix
= NULL
;
216 else if (strcmp (element_name
, "file") == 0)
219 gchar
*real_file
= NULL
;
221 FileData
*data
= NULL
;
222 char *tmp_file
= NULL
;
224 file
= state
->string
->str
;
230 key
= g_build_path ("/", "/", state
->prefix
, key
, NULL
);
232 key
= g_build_path ("/", "/", key
, NULL
);
234 if (g_hash_table_lookup (state
->table
, key
) != NULL
)
236 g_set_error (error
, G_MARKUP_ERROR
, G_MARKUP_ERROR_INVALID_CONTENT
,
237 _("File %s appears multiple times in the resource"),
242 if (sourcedirs
!= NULL
)
244 real_file
= find_file (file
);
245 if (real_file
== NULL
&& state
->collect_data
)
247 g_set_error (error
, G_IO_ERROR
, G_IO_ERROR_FAILED
,
248 _("Failed to locate “%s” in any source directory"), file
);
255 exists
= g_file_test (file
, G_FILE_TEST_EXISTS
);
256 if (!exists
&& state
->collect_data
)
258 g_set_error (error
, G_IO_ERROR
, G_IO_ERROR_FAILED
,
259 _("Failed to locate “%s” in current directory"), file
);
264 if (real_file
== NULL
)
265 real_file
= g_strdup (file
);
267 data
= g_new0 (FileData
, 1);
268 data
->filename
= g_strdup (real_file
);
269 if (!state
->collect_data
)
272 if (state
->preproc_options
)
276 gboolean xml_stripblanks
= FALSE
;
277 gboolean json_stripblanks
= FALSE
;
278 gboolean to_pixdata
= FALSE
;
280 options
= g_strsplit (state
->preproc_options
, ",", -1);
282 for (i
= 0; options
[i
]; i
++)
284 if (!strcmp (options
[i
], "xml-stripblanks"))
285 xml_stripblanks
= TRUE
;
286 else if (!strcmp (options
[i
], "to-pixdata"))
288 else if (!strcmp (options
[i
], "json-stripblanks"))
289 json_stripblanks
= TRUE
;
292 g_set_error (error
, G_MARKUP_ERROR
, G_MARKUP_ERROR_INVALID_CONTENT
,
293 _("Unknown processing option “%s”"), options
[i
]);
294 g_strfreev (options
);
298 g_strfreev (options
);
302 /* This is not fatal: pretty-printed XML is still valid XML */
305 static gboolean xmllint_warned
= FALSE
;
309 /* Translators: the first %s is a gresource XML attribute,
310 * the second %s is an environment variable, and the third
311 * %s is a command line tool
313 char *warn
= g_strdup_printf (_("%s preprocessing requested, but %s is not set, and %s is not in PATH"),
317 g_printerr ("%s\n", warn
);
321 xmllint_warned
= TRUE
;
329 fd
= g_file_open_tmp ("resource-XXXXXXXX", &tmp_file
, error
);
335 proc
= g_subprocess_new (G_SUBPROCESS_FLAGS_STDOUT_SILENCE
, error
,
336 xmllint
, "--nonet", "--noblanks", "--output", tmp_file
, real_file
, NULL
);
343 if (!g_subprocess_wait_check (proc
, NULL
, error
))
345 g_object_unref (proc
);
349 g_object_unref (proc
);
351 real_file
= g_strdup (tmp_file
);
355 if (json_stripblanks
)
357 /* As above, this is not fatal: pretty-printed JSON is still
360 if (jsonformat
== NULL
)
362 static gboolean jsonformat_warned
= FALSE
;
364 if (!jsonformat_warned
)
366 /* Translators: the first %s is a gresource XML attribute,
367 * the second %s is an environment variable, and the third
368 * %s is a command line tool
370 char *warn
= g_strdup_printf (_("%s preprocessing requested, but %s is not set, and %s is not in PATH"),
374 g_printerr ("%s\n", warn
);
378 jsonformat_warned
= TRUE
;
386 fd
= g_file_open_tmp ("resource-XXXXXXXX", &tmp_file
, error
);
392 proc
= g_subprocess_new (G_SUBPROCESS_FLAGS_STDOUT_SILENCE
, error
,
393 jsonformat
, "--output", tmp_file
, real_file
, NULL
);
400 if (!g_subprocess_wait_check (proc
, NULL
, error
))
402 g_object_unref (proc
);
406 g_object_unref (proc
);
408 real_file
= g_strdup (tmp_file
);
417 /* This is a fatal error: if to-pixdata is used it means that
418 * the code loading the GResource expects a specific data format
420 if (gdk_pixbuf_pixdata
== NULL
)
422 /* Translators: the first %s is a gresource XML attribute,
423 * the second %s is an environment variable, and the third
424 * %s is a command line tool
426 g_set_error (error
, G_IO_ERROR
, G_IO_ERROR_FAILED
,
427 _("%s preprocessing requested, but %s is not set, and %s is not in PATH"),
429 "GDK_PIXBUF_PIXDATA",
430 "gdk-pixbuf-pixdata");
434 fd
= g_file_open_tmp ("resource-XXXXXXXX", &tmp_file
, error
);
440 proc
= g_subprocess_new (G_SUBPROCESS_FLAGS_STDOUT_SILENCE
, error
,
441 gdk_pixbuf_pixdata
, real_file
, tmp_file
, NULL
);
445 if (!g_subprocess_wait_check (proc
, NULL
, error
))
447 g_object_unref (proc
);
451 g_object_unref (proc
);
453 real_file
= g_strdup (tmp_file
);
457 if (!g_file_get_contents (real_file
, &data
->content
, &data
->size
, &my_error
))
459 g_set_error (error
, G_MARKUP_ERROR
, G_MARKUP_ERROR_INVALID_CONTENT
,
460 _("Error reading file %s: %s"),
461 real_file
, my_error
->message
);
462 g_clear_error (&my_error
);
465 /* Include zero termination in content_size for uncompressed files (but not in size) */
466 data
->content_size
= data
->size
+ 1;
468 if (state
->compressed
)
470 GOutputStream
*out
= g_memory_output_stream_new (NULL
, 0, g_realloc
, g_free
);
471 GZlibCompressor
*compressor
=
472 g_zlib_compressor_new (G_ZLIB_COMPRESSOR_FORMAT_ZLIB
, 9);
473 GOutputStream
*out2
= g_converter_output_stream_new (out
, G_CONVERTER (compressor
));
475 if (!g_output_stream_write_all (out2
, data
->content
, data
->size
,
477 !g_output_stream_close (out2
, NULL
, NULL
))
479 g_set_error (error
, G_MARKUP_ERROR
, G_MARKUP_ERROR_INVALID_CONTENT
,
480 _("Error compressing file %s"),
485 g_free (data
->content
);
486 data
->content_size
= g_memory_output_stream_get_size (G_MEMORY_OUTPUT_STREAM (out
));
487 data
->content
= g_memory_output_stream_steal_data (G_MEMORY_OUTPUT_STREAM (out
));
489 g_object_unref (compressor
);
490 g_object_unref (out
);
491 g_object_unref (out2
);
493 data
->flags
|= G_RESOURCE_FLAGS_COMPRESSED
;
497 g_hash_table_insert (state
->table
, key
, data
);
503 g_free (state
->alias
);
505 g_string_free (state
->string
, TRUE
);
506 state
->string
= NULL
;
507 g_free (state
->preproc_options
);
508 state
->preproc_options
= NULL
;
519 file_data_free (data
);
524 text (GMarkupParseContext
*context
,
530 ParseState
*state
= user_data
;
533 for (i
= 0; i
< text_len
; i
++)
534 if (!g_ascii_isspace (text
[i
]))
537 g_string_append_len (state
->string
, text
, text_len
);
540 g_set_error (error
, G_MARKUP_ERROR
, G_MARKUP_ERROR_INVALID_CONTENT
,
541 _("text may not appear inside <%s>"),
542 g_markup_parse_context_get_element (context
));
549 parse_resource_file (const gchar
*filename
,
550 gboolean collect_data
,
553 GMarkupParser parser
= { start_element
, end_element
, text
};
554 ParseState state
= { 0, };
555 GMarkupParseContext
*context
;
556 GError
*error
= NULL
;
558 GHashTable
*table
= NULL
;
561 if (!g_file_get_contents (filename
, &contents
, &size
, &error
))
563 g_printerr ("%s\n", error
->message
);
564 g_clear_error (&error
);
568 state
.collect_data
= collect_data
;
569 state
.table
= g_hash_table_ref (files
);
571 context
= g_markup_parse_context_new (&parser
,
572 G_MARKUP_TREAT_CDATA_AS_TEXT
|
573 G_MARKUP_PREFIX_ERROR_POSITION
,
576 if (!g_markup_parse_context_parse (context
, contents
, size
, &error
) ||
577 !g_markup_parse_context_end_parse (context
, &error
))
579 g_printerr ("%s: %s.\n", filename
, error
->message
);
580 g_clear_error (&error
);
590 GVariantBuilder builder
;
593 table
= gvdb_hash_table_new (NULL
, NULL
);
595 g_hash_table_iter_init (&iter
, state
.table
);
596 while (g_hash_table_iter_next (&iter
, (gpointer
*)&key
, (gpointer
*)&data
))
598 key_len
= strlen (key
);
599 mykey
= g_strdup (key
);
601 item
= gvdb_hash_table_insert (table
, key
);
602 gvdb_item_set_parent (item
,
603 get_parent (table
, mykey
, key_len
));
607 g_variant_builder_init (&builder
, G_VARIANT_TYPE ("(uuay)"));
609 g_variant_builder_add (&builder
, "u", data
->size
); /* Size */
610 g_variant_builder_add (&builder
, "u", data
->flags
); /* Flags */
612 v_data
= g_variant_new_from_data (G_VARIANT_TYPE("ay"),
613 data
->content
, data
->content_size
, TRUE
,
614 g_free
, data
->content
);
615 g_variant_builder_add_value (&builder
, v_data
);
616 data
->content
= NULL
; /* Take ownership */
618 gvdb_item_set_value (item
,
619 g_variant_builder_end (&builder
));
623 g_hash_table_unref (state
.table
);
624 g_markup_parse_context_free (context
);
631 write_to_file (GHashTable
*table
,
632 const gchar
*filename
,
637 success
= gvdb_table_write_contents (table
, filename
,
638 G_BYTE_ORDER
!= G_LITTLE_ENDIAN
,
645 extension_in_set (const char *str
,
649 const char *ext
, *value
;
652 ext
= strrchr (str
, '.');
657 va_start (list
, str
);
658 while ((value
= va_arg (list
, const char *)) != NULL
)
660 if (g_ascii_strcasecmp (ext
, value
) != 0)
672 * We must escape any characters that `make` finds significant.
673 * This is largely a duplicate of the logic in gcc's `mkdeps.c:munge()`.
676 escape_makefile_string (const char *string
)
681 str
= g_string_sized_new (strlen (string
) + 1);
682 for (p
= string
; *p
!= '\0'; ++p
)
688 /* GNU make uses a weird quoting scheme for white space.
689 A space or tab preceded by 2N+1 backslashes represents
690 N backslashes followed by space; a space or tab
691 preceded by 2N backslashes represents N backslashes at
692 the end of a file name; and backslashes in other
693 contexts should not be doubled. */
694 for (q
= p
- 1; string
<= q
&& *q
== '\\'; q
--)
695 g_string_append_c (str
, '\\');
696 g_string_append_c (str
, '\\');
700 g_string_append_c (str
, '$');
704 g_string_append_c (str
, '\\');
707 g_string_append_c (str
, *p
);
710 return g_string_free (str
, FALSE
);
714 main (int argc
, char **argv
)
720 gboolean show_version_and_exit
= FALSE
;
721 gchar
*target
= NULL
;
722 gchar
*binary_target
= NULL
;
723 gboolean generate_automatic
= FALSE
;
724 gboolean generate_source
= FALSE
;
725 gboolean generate_header
= FALSE
;
726 gboolean manual_register
= FALSE
;
727 gboolean internal
= FALSE
;
728 gboolean generate_dependencies
= FALSE
;
729 gboolean generate_phony_targets
= FALSE
;
730 char *dependency_file
= NULL
;
732 char *c_name_no_underscores
;
733 const char *linkage
= "extern";
734 GOptionContext
*context
;
735 GOptionEntry entries
[] = {
736 { "version", 0, 0, G_OPTION_ARG_NONE
, &show_version_and_exit
, N_("Show program version and exit"), NULL
},
737 { "target", 0, 0, G_OPTION_ARG_FILENAME
, &target
, N_("Name of the output file"), N_("FILE") },
738 { "sourcedir", 0, 0, G_OPTION_ARG_FILENAME_ARRAY
, &sourcedirs
, N_("The directories to load files referenced in FILE from (default: current directory)"), N_("DIRECTORY") },
739 { "generate", 0, 0, G_OPTION_ARG_NONE
, &generate_automatic
, N_("Generate output in the format selected for by the target filename extension"), NULL
},
740 { "generate-header", 0, 0, G_OPTION_ARG_NONE
, &generate_header
, N_("Generate source header"), NULL
},
741 { "generate-source", 0, 0, G_OPTION_ARG_NONE
, &generate_source
, N_("Generate source code used to link in the resource file into your code"), NULL
},
742 { "generate-dependencies", 0, 0, G_OPTION_ARG_NONE
, &generate_dependencies
, N_("Generate dependency list"), NULL
},
743 { "dependency-file", 0, 0, G_OPTION_ARG_FILENAME
, &dependency_file
, N_("Name of the dependency file to generate"), N_("FILE") },
744 { "generate-phony-targets", 0, 0, G_OPTION_ARG_NONE
, &generate_phony_targets
, N_("Include phony targets in the generated dependency file"), NULL
},
745 { "manual-register", 0, 0, G_OPTION_ARG_NONE
, &manual_register
, N_("Don’t automatically create and register resource"), NULL
},
746 { "internal", 0, 0, G_OPTION_ARG_NONE
, &internal
, N_("Don’t export functions; declare them G_GNUC_INTERNAL"), NULL
},
747 { "c-name", 0, 0, G_OPTION_ARG_STRING
, &c_name
, N_("C identifier name used for the generated source code"), NULL
},
755 setlocale (LC_ALL
, "");
756 textdomain (GETTEXT_PACKAGE
);
759 tmp
= _glib_get_locale_dir ();
760 bindtextdomain (GETTEXT_PACKAGE
, tmp
);
763 bindtextdomain (GETTEXT_PACKAGE
, GLIB_LOCALE_DIR
);
766 #ifdef HAVE_BIND_TEXTDOMAIN_CODESET
767 bind_textdomain_codeset (GETTEXT_PACKAGE
, "UTF-8");
770 context
= g_option_context_new (N_("FILE"));
771 g_option_context_set_translation_domain (context
, GETTEXT_PACKAGE
);
772 g_option_context_set_summary (context
,
773 N_("Compile a resource specification into a resource file.\n"
774 "Resource specification files have the extension .gresource.xml,\n"
775 "and the resource file have the extension called .gresource."));
776 g_option_context_add_main_entries (context
, entries
, GETTEXT_PACKAGE
);
779 if (!g_option_context_parse (context
, &argc
, &argv
, &error
))
781 g_printerr ("%s\n", error
->message
);
785 g_option_context_free (context
);
787 if (show_version_and_exit
)
789 g_print (PACKAGE_VERSION
"\n");
795 g_printerr (_("You should give exactly one file name\n"));
801 linkage
= "G_GNUC_INTERNAL";
805 xmllint
= g_strdup (g_getenv ("XMLLINT"));
807 xmllint
= g_find_program_in_path ("xmllint");
809 jsonformat
= g_strdup (g_getenv ("JSON_GLIB_FORMAT"));
810 if (jsonformat
== NULL
)
811 jsonformat
= g_find_program_in_path ("json-glib-format");
813 gdk_pixbuf_pixdata
= g_strdup (g_getenv ("GDK_PIXBUF_PIXDATA"));
814 if (gdk_pixbuf_pixdata
== NULL
)
815 gdk_pixbuf_pixdata
= g_find_program_in_path ("gdk-pixbuf-pixdata");
819 char *dirname
= g_path_get_dirname (srcfile
);
820 char *base
= g_path_get_basename (srcfile
);
821 char *target_basename
;
822 if (g_str_has_suffix (base
, ".xml"))
823 base
[strlen(base
) - strlen (".xml")] = 0;
827 if (g_str_has_suffix (base
, ".gresource"))
828 base
[strlen(base
) - strlen (".gresource")] = 0;
829 target_basename
= g_strconcat (base
, ".c", NULL
);
831 else if (generate_header
)
833 if (g_str_has_suffix (base
, ".gresource"))
834 base
[strlen(base
) - strlen (".gresource")] = 0;
835 target_basename
= g_strconcat (base
, ".h", NULL
);
839 if (g_str_has_suffix (base
, ".gresource"))
840 target_basename
= g_strdup (base
);
842 target_basename
= g_strconcat (base
, ".gresource", NULL
);
845 target
= g_build_filename (dirname
, target_basename
, NULL
);
846 g_free (target_basename
);
850 else if (generate_automatic
)
852 if (extension_in_set (target
, "c", "cc", "cpp", "cxx", "c++", NULL
))
853 generate_source
= TRUE
;
854 else if (extension_in_set (target
, "h", "hh", "hpp", "hxx", "h++", NULL
))
855 generate_header
= TRUE
;
856 else if (extension_in_set (target
, "gresource", NULL
))
860 files
= g_hash_table_new_full (g_str_hash
, g_str_equal
, g_free
, (GDestroyNotify
)file_data_free
);
862 if ((table
= parse_resource_file (srcfile
, !generate_dependencies
, files
)) == NULL
)
866 g_hash_table_unref (files
);
870 /* This can be used in the same invocation
871 as other generate commands */
872 if (dependency_file
!= NULL
)
874 /* Generate a .d file that describes the dependencies for
875 * build tools, gcc -M -MF style */
882 g_hash_table_iter_init (&iter
, files
);
884 dep_string
= g_string_new (NULL
);
885 escaped
= escape_makefile_string (srcfile
);
886 g_string_printf (dep_string
, "%s:", escaped
);
889 /* First rule: foo.xml: resource1 resource2.. */
890 while (g_hash_table_iter_next (&iter
, &key
, &data
))
893 if (!g_str_equal (file_data
->filename
, srcfile
))
895 escaped
= escape_makefile_string (file_data
->filename
);
896 g_string_append_printf (dep_string
, " %s", escaped
);
901 g_string_append (dep_string
, "\n");
903 /* Optionally include phony targets as it silences `make` but
904 * isn't supported on `ninja` at the moment. See also: `gcc -MP`
906 if (generate_phony_targets
)
908 g_string_append (dep_string
, "\n");
910 /* One rule for every resource: resourceN: */
911 g_hash_table_iter_init (&iter
, files
);
912 while (g_hash_table_iter_next (&iter
, &key
, &data
))
915 if (!g_str_equal (file_data
->filename
, srcfile
))
917 escaped
= escape_makefile_string (file_data
->filename
);
918 g_string_append_printf (dep_string
, "%s:\n\n", escaped
);
924 if (g_str_equal (dependency_file
, "-"))
926 g_print ("%s\n", dep_string
->str
);
930 if (!g_file_set_contents (dependency_file
, dep_string
->str
, dep_string
->len
, &error
))
932 g_printerr ("Error writing dependency file: %s\n", error
->message
);
933 g_string_free (dep_string
, TRUE
);
934 g_free (dependency_file
);
935 g_error_free (error
);
936 g_hash_table_unref (files
);
941 g_string_free (dep_string
, TRUE
);
942 g_free (dependency_file
);
945 if (generate_dependencies
)
951 g_hash_table_iter_init (&iter
, files
);
953 /* Generate list of files for direct use as dependencies in a Makefile */
954 while (g_hash_table_iter_next (&iter
, &key
, &data
))
957 g_print ("%s\n", file_data
->filename
);
960 else if (generate_source
|| generate_header
)
964 int fd
= g_file_open_tmp (NULL
, &binary_target
, NULL
);
967 g_printerr ("Can't open temp file\n");
969 g_hash_table_unref (files
);
977 char *base
= g_path_get_basename (srcfile
);
982 /* Remove extensions */
983 dot
= strchr (base
, '.');
987 s
= g_string_new ("");
989 for (i
= 0; base
[i
] != 0; i
++)
991 const char *first
= G_CSET_A_2_Z G_CSET_a_2_z
"_";
992 const char *rest
= G_CSET_A_2_Z G_CSET_a_2_z G_CSET_DIGITS
"_";
993 if (strchr ((i
== 0) ? first
: rest
, base
[i
]) != NULL
)
994 g_string_append_c (s
, base
[i
]);
995 else if (base
[i
] == '-')
996 g_string_append_c (s
, '_');
1000 c_name
= g_string_free (s
, FALSE
);
1004 binary_target
= g_strdup (target
);
1006 c_name_no_underscores
= c_name
;
1007 while (c_name_no_underscores
&& *c_name_no_underscores
== '_')
1008 c_name_no_underscores
++;
1010 if (binary_target
!= NULL
&&
1011 !write_to_file (table
, binary_target
, &error
))
1013 g_printerr ("%s\n", error
->message
);
1016 g_hash_table_unref (files
);
1020 if (generate_header
)
1024 file
= fopen (target
, "w");
1027 g_printerr ("can't write to file %s", target
);
1029 g_hash_table_unref (files
);
1034 "#ifndef __RESOURCE_%s_H__\n"
1035 "#define __RESOURCE_%s_H__\n"
1037 "#include <gio/gio.h>\n"
1039 "%s GResource *%s_get_resource (void);\n",
1040 c_name
, c_name
, linkage
, c_name
);
1042 if (manual_register
)
1045 "%s void %s_register_resource (void);\n"
1046 "%s void %s_unregister_resource (void);\n"
1048 linkage
, c_name
, linkage
, c_name
);
1055 else if (generate_source
)
1062 if (!g_file_get_contents (binary_target
, (char **)&data
,
1065 g_printerr ("can't read back temporary file");
1067 g_hash_table_unref (files
);
1070 g_unlink (binary_target
);
1072 file
= fopen (target
, "w");
1075 g_printerr ("can't write to file %s", target
);
1077 g_hash_table_unref (files
);
1082 "#include <gio/gio.h>\n"
1084 "#if defined (__ELF__) && ( __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6))\n"
1085 "# define SECTION __attribute__ ((section (\".gresource.%s\"), aligned (8)))\n"
1087 "# define SECTION\n"
1090 "static const SECTION union { const guint8 data[%"G_GSIZE_FORMAT
"]; const double alignment; void * const ptr;} %s_resource_data = { {\n",
1091 c_name_no_underscores
, data_size
, c_name
);
1093 for (i
= 0; i
< data_size
; i
++) {
1095 g_fprintf (file
, " ");
1096 g_fprintf (file
, "0x%2.2x", (int)data
[i
]);
1097 if (i
!= data_size
- 1)
1098 g_fprintf (file
, ", ");
1099 if ((i
% 8 == 7) || (i
== data_size
- 1))
1100 g_fprintf (file
, "\n");
1103 g_fprintf (file
, "} };\n");
1107 "static GStaticResource static_resource = { %s_resource_data.data, sizeof (%s_resource_data.data), NULL, NULL, NULL };\n"
1108 "%s GResource *%s_get_resource (void);\n"
1109 "GResource *%s_get_resource (void)\n"
1111 " return g_static_resource_get_resource (&static_resource);\n"
1113 c_name
, c_name
, linkage
, c_name
, c_name
);
1116 if (manual_register
)
1120 "%s void %s_unregister_resource (void);\n"
1121 "void %s_unregister_resource (void)\n"
1123 " g_static_resource_fini (&static_resource);\n"
1126 "%s void %s_register_resource (void);\n"
1127 "void %s_register_resource (void)\n"
1129 " g_static_resource_init (&static_resource);\n"
1131 linkage
, c_name
, c_name
, linkage
, c_name
, c_name
);
1135 g_fprintf (file
, "%s", gconstructor_code
);
1138 "#ifdef G_HAS_CONSTRUCTORS\n"
1140 "#ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA\n"
1141 "#pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(resource_constructor)\n"
1143 "G_DEFINE_CONSTRUCTOR(resource_constructor)\n"
1144 "#ifdef G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA\n"
1145 "#pragma G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(resource_destructor)\n"
1147 "G_DEFINE_DESTRUCTOR(resource_destructor)\n"
1150 "#warning \"Constructor not supported on this compiler, linking in resources will not work\"\n"
1153 "static void resource_constructor (void)\n"
1155 " g_static_resource_init (&static_resource);\n"
1158 "static void resource_destructor (void)\n"
1160 " g_static_resource_fini (&static_resource);\n"
1169 g_free (binary_target
);
1171 g_hash_table_destroy (table
);
1173 g_free (jsonformat
);
1175 g_hash_table_unref (files
);