1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright © 2011 Red Hat, Inc
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Authors: Alexander Larsson <alexl@redhat.com>
25 #include "gresource.h"
26 #include <gvdb/gvdb-reader.h>
27 #include <gi18n-lib.h>
29 #include <gio/gfile.h>
30 #include <gio/gioerror.h>
31 #include <gio/gmemoryinputstream.h>
32 #include <gio/gzlibdecompressor.h>
33 #include <gio/gconverterinputstream.h>
42 static void register_lazy_static_resources (void);
44 G_DEFINE_BOXED_TYPE (GResource
, g_resource
, g_resource_ref
, g_resource_unref
)
48 * @short_description: Resource framework
51 * Applications and libraries often contain binary or textual data that is
52 * really part of the application, rather than user data. For instance
53 * #GtkBuilder .ui files, splashscreen images, GMenu markup XML, CSS files,
54 * icons, etc. These are often shipped as files in `$datadir/appname`, or
55 * manually included as literal strings in the code.
57 * The #GResource API and the [glib-compile-resources][glib-compile-resources] program
58 * provide a convenient and efficient alternative to this which has some nice properties. You
59 * maintain the files as normal files, so its easy to edit them, but during the build the files
60 * are combined into a binary bundle that is linked into the executable. This means that loading
61 * the resource files are efficient (as they are already in memory, shared with other instances) and
62 * simple (no need to check for things like I/O errors or locate the files in the filesystem). It
63 * also makes it easier to create relocatable applications.
65 * Resource files can also be marked as compressed. Such files will be included in the resource bundle
66 * in a compressed form, but will be automatically uncompressed when the resource is used. This
67 * is very useful e.g. for larger text files that are parsed once (or rarely) and then thrown away.
69 * Resource files can also be marked to be preprocessed, by setting the value of the
70 * `preprocess` attribute to a comma-separated list of preprocessing options.
71 * The only options currently supported are:
73 * `xml-stripblanks` which will use the xmllint command
74 * to strip ignorable whitespace from the XML file. For this to work,
75 * the `XMLLINT` environment variable must be set to the full path to
76 * the xmllint executable, or xmllint must be in the `PATH`; otherwise
77 * the preprocessing step is skipped.
79 * `to-pixdata` which will use the gdk-pixbuf-pixdata command to convert
80 * images to the GdkPixdata format, which allows you to create pixbufs directly using the data inside
81 * the resource file, rather than an (uncompressed) copy if it. For this, the gdk-pixbuf-pixdata
82 * program must be in the PATH, or the `GDK_PIXBUF_PIXDATA` environment variable must be
83 * set to the full path to the gdk-pixbuf-pixdata executable; otherwise the resource compiler will
86 * Resource files will be exported in the GResource namespace using the
87 * combination of the given `prefix` and the filename from the `file` element.
88 * The `alias` attribute can be used to alter the filename to expose them at a
89 * different location in the resource namespace. Typically, this is used to
90 * include files from a different source directory without exposing the source
91 * directory in the resource namespace, as in the example below.
93 * Resource bundles are created by the [glib-compile-resources][glib-compile-resources] program
94 * which takes an XML file that describes the bundle, and a set of files that the XML references. These
95 * are combined into a binary resource bundle.
97 * An example resource description:
99 * <?xml version="1.0" encoding="UTF-8"?>
101 * <gresource prefix="/org/gtk/Example">
102 * <file>data/splashscreen.png</file>
103 * <file compressed="true">dialog.ui</file>
104 * <file preprocess="xml-stripblanks">menumarkup.xml</file>
105 * <file alias="example.css">data/example.css</file>
110 * This will create a resource bundle with the following files:
112 * /org/gtk/Example/data/splashscreen.png
113 * /org/gtk/Example/dialog.ui
114 * /org/gtk/Example/menumarkup.xml
115 * /org/gtk/Example/example.css
118 * Note that all resources in the process share the same namespace, so use Java-style
119 * path prefixes (like in the above example) to avoid conflicts.
121 * You can then use [glib-compile-resources][glib-compile-resources] to compile the XML to a
122 * binary bundle that you can load with g_resource_load(). However, its more common to use the --generate-source and
123 * --generate-header arguments to create a source file and header to link directly into your application.
124 * This will generate `get_resource()`, `register_resource()` and
125 * `unregister_resource()` functions, prefixed by the `--c-name` argument passed
126 * to [glib-compile-resources][glib-compile-resources]. `get_resource()` returns
127 * the generated #GResource object. The register and unregister functions
128 * register the resource so its files can be accessed using
129 * g_resources_lookup_data().
131 * Once a #GResource has been created and registered all the data in it can be accessed globally in the process by
132 * using API calls like g_resources_open_stream() to stream the data or g_resources_lookup_data() to get a direct pointer
133 * to the data. You can also use URIs like "resource:///org/gtk/Example/data/splashscreen.png" with #GFile to access
136 * Some higher-level APIs, such as #GtkApplication, will automatically load
137 * resources from certain well-known paths in the resource namespace as a
138 * convenience. See the documentation for those APIs for details.
140 * There are two forms of the generated source, the default version uses the compiler support for constructor
141 * and destructor functions (where available) to automatically create and register the #GResource on startup
142 * or library load time. If you pass `--manual-register`, two functions to register/unregister the resource are created
143 * instead. This requires an explicit initialization call in your application/library, but it works on all platforms,
144 * even on the minor ones where constructors are not supported. (Constructor support is available for at least Win32, Mac OS and Linux.)
146 * Note that resource data can point directly into the data segment of e.g. a library, so if you are unloading libraries
147 * during runtime you need to be very careful with keeping around pointers to data from a resource, as this goes away
148 * when the library is unloaded. However, in practice this is not generally a problem, since most resource accesses
149 * are for your own resources, and resource data is often used once, during parsing, and then released.
151 * When debugging a program or testing a change to an installed version, it is often useful to be able to
152 * replace resources in the program or library, without recompiling, for debugging or quick hacking and testing
153 * purposes. Since GLib 2.50, it is possible to use the `G_RESOURCE_OVERLAYS` environment variable to selectively overlay
154 * resources with replacements from the filesystem. It is a colon-separated list of substitutions to perform
155 * during resource lookups.
157 * A substitution has the form
160 * /org/gtk/libgtk=/home/desrt/gtk-overlay
163 * The part before the `=` is the resource subpath for which the overlay applies. The part after is a
164 * filesystem path which contains files and subdirectories as you would like to be loaded as resources with the
167 * In the example above, if an application tried to load a resource with the resource path
168 * `/org/gtk/libgtk/ui/gtkdialog.ui` then GResource would check the filesystem path
169 * `/home/desrt/gtk-overlay/ui/gtkdialog.ui`. If a file was found there, it would be used instead. This is an
170 * overlay, not an outright replacement, which means that if a file is not found at that path, the built-in
171 * version will be used instead. Whiteouts are not currently supported.
173 * Substitutions must start with a slash, and must not contain a trailing slash before the '='. The path after
174 * the slash should ideally be absolute, but this is not strictly required. It is possible to overlay the
175 * location of a single resource with an individual file.
183 * #GStaticResource is an opaque data structure and can only be accessed
184 * using the following functions.
186 typedef gboolean (* CheckCandidate
) (const gchar
*candidate
, gpointer user_data
);
189 open_overlay_stream (const gchar
*candidate
,
192 GInputStream
**res
= (GInputStream
**) user_data
;
193 GError
*error
= NULL
;
196 file
= g_file_new_for_path (candidate
);
197 *res
= (GInputStream
*) g_file_read (file
, NULL
, &error
);
201 g_message ("Opened file '%s' as a resource overlay", candidate
);
205 if (!g_error_matches (error
, G_IO_ERROR
, G_IO_ERROR_NOT_FOUND
))
206 g_warning ("Can't open overlay file '%s': %s", candidate
, error
->message
);
207 g_error_free (error
);
210 g_object_unref (file
);
216 get_overlay_bytes (const gchar
*candidate
,
219 GBytes
**res
= (GBytes
**) user_data
;
220 GMappedFile
*mapped_file
;
221 GError
*error
= NULL
;
223 mapped_file
= g_mapped_file_new (candidate
, FALSE
, &error
);
227 g_message ("Mapped file '%s' as a resource overlay", candidate
);
228 *res
= g_mapped_file_get_bytes (mapped_file
);
229 g_mapped_file_unref (mapped_file
);
233 if (!g_error_matches (error
, G_FILE_ERROR
, G_FILE_ERROR_NOENT
))
234 g_warning ("Can't mmap overlay file '%s': %s", candidate
, error
->message
);
235 g_error_free (error
);
242 enumerate_overlay_dir (const gchar
*candidate
,
245 GHashTable
**hash
= (GHashTable
**) user_data
;
246 GError
*error
= NULL
;
250 dir
= g_dir_open (candidate
, 0, &error
);
254 /* note: keep in sync with same line below */
255 *hash
= g_hash_table_new_full (g_str_hash
, g_str_equal
, g_free
, NULL
);
257 g_message ("Enumerating directory '%s' as resource overlay", candidate
);
259 while ((name
= g_dir_read_name (dir
)))
261 gchar
*fullname
= g_build_filename (candidate
, name
, NULL
);
263 /* match gvdb behaviour by suffixing "/" on dirs */
264 if (g_file_test (fullname
, G_FILE_TEST_IS_DIR
))
265 g_hash_table_add (*hash
, g_strconcat (name
, "/", NULL
));
267 g_hash_table_add (*hash
, g_strdup (name
));
276 if (!g_error_matches (error
, G_FILE_ERROR
, G_FILE_ERROR_NOENT
))
277 g_warning ("Can't enumerate overlay directory '%s': %s", candidate
, error
->message
);
278 g_error_free (error
);
282 /* We may want to enumerate results from more than one overlay
289 g_resource_find_overlay (const gchar
*path
,
290 CheckCandidate check
,
293 /* This is a null-terminated array of replacement strings (with '=' inside) */
294 static const gchar
* const *overlay_dirs
;
295 gboolean res
= FALSE
;
299 /* We try to be very fast in case there are no overlays. Otherwise,
300 * we can take a bit more time...
303 if (g_once_init_enter (&overlay_dirs
))
305 const gchar
* const *result
;
308 envvar
= g_getenv ("G_RESOURCE_OVERLAYS");
314 parts
= g_strsplit (envvar
, ":", 0);
316 /* Sanity check the parts, dropping those that are invalid.
317 * 'i' may grow faster than 'j'.
319 for (i
= j
= 0; parts
[i
]; i
++)
321 gchar
*part
= parts
[i
];
324 eq
= strchr (part
, '=');
327 g_critical ("G_RESOURCE_OVERLAYS segment '%s' lacks '='. Ignoring.", part
);
334 g_critical ("G_RESOURCE_OVERLAYS segment '%s' lacks path before '='. Ignoring.", part
);
341 g_critical ("G_RESOURCE_OVERLAYS segment '%s' lacks path after '='. Ignoring", part
);
348 g_critical ("G_RESOURCE_OVERLAYS segment '%s' lacks leading '/'. Ignoring.", part
);
355 g_critical ("G_RESOURCE_OVERLAYS segment '%s' has trailing '/' before '='. Ignoring", part
);
362 g_critical ("G_RESOURCE_OVERLAYS segment '%s' lacks leading '/' after '='. Ignoring", part
);
367 g_message ("Adding GResources overlay '%s'", part
);
373 result
= (const gchar
**) parts
;
377 /* We go out of the way to avoid malloc() in the normal case
378 * where the environment variable is not set.
380 static const gchar
* const empty_strv
[0 + 1];
384 g_once_init_leave (&overlay_dirs
, result
);
387 for (i
= 0; overlay_dirs
[i
]; i
++)
398 /* split the overlay into src/dst */
399 src
= overlay_dirs
[i
];
400 eq
= strchr (src
, '=');
401 g_assert (eq
); /* we checked this already */
404 /* hold off on dst_len because we will probably fail the checks below */
408 path_len
= strlen (path
);
410 /* The entire path is too short to match the source */
411 if (path_len
< src_len
)
414 /* It doesn't match the source */
415 if (memcmp (path
, src
, src_len
) != 0)
418 /* The prefix matches, but it's not a complete path component */
419 if (path
[src_len
] && path
[src_len
] != '/')
422 /* OK. Now we need this. */
423 dst_len
= strlen (dst
);
425 /* The candidate will be composed of:
427 * dst + remaining_path + nul
429 candidate
= g_malloc (dst_len
+ (path_len
- src_len
) + 1);
430 memcpy (candidate
, dst
, dst_len
);
431 memcpy (candidate
+ dst_len
, path
+ src_len
, path_len
- src_len
);
432 candidate
[dst_len
+ (path_len
- src_len
)] = '\0';
434 /* No matter what, 'r' is what we need, including the case where
435 * we are trying to enumerate a directory.
437 res
= (* check
) (candidate
, user_data
);
448 * g_resource_error_quark:
450 * Gets the #GResource Error Quark.
456 G_DEFINE_QUARK (g
-resource
-error
-quark
, g_resource_error
)
460 * @resource: A #GResource
462 * Atomically increments the reference count of @resource by one. This
463 * function is MT-safe and may be called from any thread.
465 * Returns: The passed in #GResource
470 g_resource_ref (GResource
*resource
)
472 g_atomic_int_inc (&resource
->ref_count
);
478 * @resource: A #GResource
480 * Atomically decrements the reference count of @resource by one. If the
481 * reference count drops to 0, all memory allocated by the resource is
482 * released. This function is MT-safe and may be called from any
488 g_resource_unref (GResource
*resource
)
490 if (g_atomic_int_dec_and_test (&resource
->ref_count
))
492 gvdb_table_unref (resource
->table
);
498 * g_resource_new_from_table:
499 * @table: (transfer full): a GvdbTable
501 * Returns: (transfer full): a new #GResource for @table
504 g_resource_new_from_table (GvdbTable
*table
)
508 resource
= g_new (GResource
, 1);
509 resource
->ref_count
= 1;
510 resource
->table
= table
;
516 * g_resource_new_from_data:
518 * @error: return location for a #GError, or %NULL
520 * Creates a GResource from a reference to the binary resource bundle.
521 * This will keep a reference to @data while the resource lives, so
522 * the data should not be modified or freed.
524 * If you want to use this resource in the global resource namespace you need
525 * to register it with g_resources_register().
527 * Returns: (transfer full): a new #GResource, or %NULL on error
532 g_resource_new_from_data (GBytes
*data
,
537 table
= gvdb_table_new_from_data (g_bytes_get_data (data
, NULL
),
538 g_bytes_get_size (data
),
541 (GvdbRefFunc
)g_bytes_ref
,
542 (GDestroyNotify
)g_bytes_unref
,
548 return g_resource_new_from_table (table
);
553 * @filename: (type filename): the path of a filename to load, in the GLib filename encoding
554 * @error: return location for a #GError, or %NULL
556 * Loads a binary resource bundle and creates a #GResource representation of it, allowing
557 * you to query it for data.
559 * If you want to use this resource in the global resource namespace you need
560 * to register it with g_resources_register().
562 * Returns: (transfer full): a new #GResource, or %NULL on error
567 g_resource_load (const gchar
*filename
,
572 table
= gvdb_table_new (filename
, FALSE
, error
);
576 return g_resource_new_from_table (table
);
580 gboolean
do_lookup (GResource
*resource
,
582 GResourceLookupFlags lookup_flags
,
589 char *free_path
= NULL
;
591 gboolean res
= FALSE
;
594 path_len
= strlen (path
);
595 if (path
[path_len
-1] == '/')
597 path
= free_path
= g_strdup (path
);
598 free_path
[path_len
-1] = 0;
601 value
= gvdb_table_get_raw_value (resource
->table
, path
);
605 g_set_error (error
, G_RESOURCE_ERROR
, G_RESOURCE_ERROR_NOT_FOUND
,
606 _("The resource at “%s” does not exist"),
611 guint32 _size
, _flags
;
614 g_variant_get (value
, "(uu@ay)",
619 _size
= GUINT32_FROM_LE (_size
);
620 _flags
= GUINT32_FROM_LE (_flags
);
627 *data
= g_variant_get_data (array
);
630 /* Don't report trailing newline that non-compressed files has */
631 if (_flags
& G_RESOURCE_FLAGS_COMPRESSED
)
632 *data_size
= g_variant_get_size (array
);
634 *data_size
= g_variant_get_size (array
) - 1;
636 g_variant_unref (array
);
637 g_variant_unref (value
);
647 * g_resource_open_stream:
648 * @resource: A #GResource
649 * @path: A pathname inside the resource
650 * @lookup_flags: A #GResourceLookupFlags
651 * @error: return location for a #GError, or %NULL
653 * Looks for a file at the specified @path in the resource and
654 * returns a #GInputStream that lets you read the data.
656 * @lookup_flags controls the behaviour of the lookup.
658 * Returns: (transfer full): #GInputStream or %NULL on error.
659 * Free the returned object with g_object_unref()
664 g_resource_open_stream (GResource
*resource
,
666 GResourceLookupFlags lookup_flags
,
672 GInputStream
*stream
, *stream2
;
674 if (!do_lookup (resource
, path
, lookup_flags
, NULL
, &flags
, &data
, &data_size
, error
))
677 stream
= g_memory_input_stream_new_from_data (data
, data_size
, NULL
);
678 g_object_set_data_full (G_OBJECT (stream
), "g-resource",
679 g_resource_ref (resource
),
680 (GDestroyNotify
)g_resource_unref
);
682 if (flags
& G_RESOURCE_FLAGS_COMPRESSED
)
684 GZlibDecompressor
*decompressor
=
685 g_zlib_decompressor_new (G_ZLIB_COMPRESSOR_FORMAT_ZLIB
);
687 stream2
= g_converter_input_stream_new (stream
, G_CONVERTER (decompressor
));
688 g_object_unref (decompressor
);
689 g_object_unref (stream
);
697 * g_resource_lookup_data:
698 * @resource: A #GResource
699 * @path: A pathname inside the resource
700 * @lookup_flags: A #GResourceLookupFlags
701 * @error: return location for a #GError, or %NULL
703 * Looks for a file at the specified @path in the resource and
704 * returns a #GBytes that lets you directly access the data in
707 * The data is always followed by a zero byte, so you
708 * can safely use the data as a C string. However, that byte
709 * is not included in the size of the GBytes.
711 * For uncompressed resource files this is a pointer directly into
712 * the resource bundle, which is typically in some readonly data section
713 * in the program binary. For compressed files we allocate memory on
714 * the heap and automatically uncompress the data.
716 * @lookup_flags controls the behaviour of the lookup.
718 * Returns: (transfer full): #GBytes or %NULL on error.
719 * Free the returned object with g_bytes_unref()
724 g_resource_lookup_data (GResource
*resource
,
726 GResourceLookupFlags lookup_flags
,
734 if (!do_lookup (resource
, path
, lookup_flags
, &size
, &flags
, &data
, &data_size
, error
))
737 if (flags
& G_RESOURCE_FLAGS_COMPRESSED
)
739 char *uncompressed
, *d
;
741 GConverterResult res
;
742 gsize d_size
, s_size
;
743 gsize bytes_read
, bytes_written
;
746 GZlibDecompressor
*decompressor
=
747 g_zlib_decompressor_new (G_ZLIB_COMPRESSOR_FORMAT_ZLIB
);
749 uncompressed
= g_malloc (size
+ 1);
758 res
= g_converter_convert (G_CONVERTER (decompressor
),
761 G_CONVERTER_INPUT_AT_END
,
765 if (res
== G_CONVERTER_ERROR
)
767 g_free (uncompressed
);
768 g_object_unref (decompressor
);
770 g_set_error (error
, G_RESOURCE_ERROR
, G_RESOURCE_ERROR_INTERNAL
,
771 _("The resource at “%s” failed to decompress"),
777 s_size
-= bytes_read
;
779 d_size
-= bytes_written
;
781 while (res
!= G_CONVERTER_FINISHED
);
783 uncompressed
[size
] = 0; /* Zero terminate */
785 g_object_unref (decompressor
);
787 return g_bytes_new_take (uncompressed
, size
);
790 return g_bytes_new_with_free_func (data
, data_size
, (GDestroyNotify
)g_resource_unref
, g_resource_ref (resource
));
794 * g_resource_get_info:
795 * @resource: A #GResource
796 * @path: A pathname inside the resource
797 * @lookup_flags: A #GResourceLookupFlags
798 * @size: (out) (optional): a location to place the length of the contents of the file,
799 * or %NULL if the length is not needed
800 * @flags: (out) (optional): a location to place the flags about the file,
801 * or %NULL if the length is not needed
802 * @error: return location for a #GError, or %NULL
804 * Looks for a file at the specified @path in the resource and
805 * if found returns information about it.
807 * @lookup_flags controls the behaviour of the lookup.
809 * Returns: %TRUE if the file was found. %FALSE if there were errors
814 g_resource_get_info (GResource
*resource
,
816 GResourceLookupFlags lookup_flags
,
821 return do_lookup (resource
, path
, lookup_flags
, size
, flags
, NULL
, NULL
, error
);
825 * g_resource_enumerate_children:
826 * @resource: A #GResource
827 * @path: A pathname inside the resource
828 * @lookup_flags: A #GResourceLookupFlags
829 * @error: return location for a #GError, or %NULL
831 * Returns all the names of children at the specified @path in the resource.
832 * The return result is a %NULL terminated list of strings which should
833 * be released with g_strfreev().
835 * If @path is invalid or does not exist in the #GResource,
836 * %G_RESOURCE_ERROR_NOT_FOUND will be returned.
838 * @lookup_flags controls the behaviour of the lookup.
840 * Returns: (array zero-terminated=1) (transfer full): an array of constant strings
845 g_resource_enumerate_children (GResource
*resource
,
847 GResourceLookupFlags lookup_flags
,
852 char *path_with_slash
;
856 g_set_error (error
, G_RESOURCE_ERROR
, G_RESOURCE_ERROR_NOT_FOUND
,
857 _("The resource at “%s” does not exist"),
862 path_len
= strlen (path
);
863 if (path
[path_len
-1] != '/')
864 path_with_slash
= g_strconcat (path
, "/", NULL
);
866 path_with_slash
= g_strdup (path
);
868 children
= gvdb_table_list (resource
->table
, path_with_slash
);
869 g_free (path_with_slash
);
871 if (children
== NULL
)
873 g_set_error (error
, G_RESOURCE_ERROR
, G_RESOURCE_ERROR_NOT_FOUND
,
874 _("The resource at “%s” does not exist"),
882 static GRWLock resources_lock
;
883 static GList
*registered_resources
;
885 /* This is updated atomically, so we can append to it and check for NULL outside the
886 lock, but all other accesses are done under the write lock */
887 static GStaticResource
*lazy_register_resources
;
890 g_resources_register_unlocked (GResource
*resource
)
892 registered_resources
= g_list_prepend (registered_resources
, g_resource_ref (resource
));
896 g_resources_unregister_unlocked (GResource
*resource
)
898 if (g_list_find (registered_resources
, resource
) == NULL
)
900 g_warning ("Tried to remove not registered resource");
904 registered_resources
= g_list_remove (registered_resources
, resource
);
905 g_resource_unref (resource
);
910 * g_resources_register:
911 * @resource: A #GResource
913 * Registers the resource with the process-global set of resources.
914 * Once a resource is registered the files in it can be accessed
915 * with the global resource lookup functions like g_resources_lookup_data().
920 g_resources_register (GResource
*resource
)
922 g_rw_lock_writer_lock (&resources_lock
);
923 g_resources_register_unlocked (resource
);
924 g_rw_lock_writer_unlock (&resources_lock
);
928 * g_resources_unregister:
929 * @resource: A #GResource
931 * Unregisters the resource from the process-global set of resources.
936 g_resources_unregister (GResource
*resource
)
938 g_rw_lock_writer_lock (&resources_lock
);
939 g_resources_unregister_unlocked (resource
);
940 g_rw_lock_writer_unlock (&resources_lock
);
944 * g_resources_open_stream:
945 * @path: A pathname inside the resource
946 * @lookup_flags: A #GResourceLookupFlags
947 * @error: return location for a #GError, or %NULL
949 * Looks for a file at the specified @path in the set of
950 * globally registered resources and returns a #GInputStream
951 * that lets you read the data.
953 * @lookup_flags controls the behaviour of the lookup.
955 * Returns: (transfer full): #GInputStream or %NULL on error.
956 * Free the returned object with g_object_unref()
961 g_resources_open_stream (const gchar
*path
,
962 GResourceLookupFlags lookup_flags
,
965 GInputStream
*res
= NULL
;
967 GInputStream
*stream
;
969 if (g_resource_find_overlay (path
, open_overlay_stream
, &res
))
972 register_lazy_static_resources ();
974 g_rw_lock_reader_lock (&resources_lock
);
976 for (l
= registered_resources
; l
!= NULL
; l
= l
->next
)
978 GResource
*r
= l
->data
;
979 GError
*my_error
= NULL
;
981 stream
= g_resource_open_stream (r
, path
, lookup_flags
, &my_error
);
982 if (stream
== NULL
&&
983 g_error_matches (my_error
, G_RESOURCE_ERROR
, G_RESOURCE_ERROR_NOT_FOUND
))
985 g_clear_error (&my_error
);
990 g_propagate_error (error
, my_error
);
997 g_set_error (error
, G_RESOURCE_ERROR
, G_RESOURCE_ERROR_NOT_FOUND
,
998 _("The resource at “%s” does not exist"),
1001 g_rw_lock_reader_unlock (&resources_lock
);
1007 * g_resources_lookup_data:
1008 * @path: A pathname inside the resource
1009 * @lookup_flags: A #GResourceLookupFlags
1010 * @error: return location for a #GError, or %NULL
1012 * Looks for a file at the specified @path in the set of
1013 * globally registered resources and returns a #GBytes that
1014 * lets you directly access the data in memory.
1016 * The data is always followed by a zero byte, so you
1017 * can safely use the data as a C string. However, that byte
1018 * is not included in the size of the GBytes.
1020 * For uncompressed resource files this is a pointer directly into
1021 * the resource bundle, which is typically in some readonly data section
1022 * in the program binary. For compressed files we allocate memory on
1023 * the heap and automatically uncompress the data.
1025 * @lookup_flags controls the behaviour of the lookup.
1027 * Returns: (transfer full): #GBytes or %NULL on error.
1028 * Free the returned object with g_bytes_unref()
1033 g_resources_lookup_data (const gchar
*path
,
1034 GResourceLookupFlags lookup_flags
,
1041 if (g_resource_find_overlay (path
, get_overlay_bytes
, &res
))
1044 register_lazy_static_resources ();
1046 g_rw_lock_reader_lock (&resources_lock
);
1048 for (l
= registered_resources
; l
!= NULL
; l
= l
->next
)
1050 GResource
*r
= l
->data
;
1051 GError
*my_error
= NULL
;
1053 data
= g_resource_lookup_data (r
, path
, lookup_flags
, &my_error
);
1055 g_error_matches (my_error
, G_RESOURCE_ERROR
, G_RESOURCE_ERROR_NOT_FOUND
))
1057 g_clear_error (&my_error
);
1062 g_propagate_error (error
, my_error
);
1069 g_set_error (error
, G_RESOURCE_ERROR
, G_RESOURCE_ERROR_NOT_FOUND
,
1070 _("The resource at “%s” does not exist"),
1073 g_rw_lock_reader_unlock (&resources_lock
);
1079 * g_resources_enumerate_children:
1080 * @path: A pathname inside the resource
1081 * @lookup_flags: A #GResourceLookupFlags
1082 * @error: return location for a #GError, or %NULL
1084 * Returns all the names of children at the specified @path in the set of
1085 * globally registered resources.
1086 * The return result is a %NULL terminated list of strings which should
1087 * be released with g_strfreev().
1089 * @lookup_flags controls the behaviour of the lookup.
1091 * Returns: (array zero-terminated=1) (transfer full): an array of constant strings
1096 g_resources_enumerate_children (const gchar
*path
,
1097 GResourceLookupFlags lookup_flags
,
1100 GHashTable
*hash
= NULL
;
1105 /* This will enumerate actual files found in overlay directories but
1106 * will not enumerate the overlays themselves. For example, if we
1107 * have an overlay "/org/gtk=/path/to/files" and we enumerate "/org"
1108 * then we will not see "gtk" in the result set unless it is provided
1109 * by another resource file.
1111 * This is probably not going to be a problem since if we are doing
1112 * such an overlay, we probably will already have that path.
1114 g_resource_find_overlay (path
, enumerate_overlay_dir
, &hash
);
1116 register_lazy_static_resources ();
1118 g_rw_lock_reader_lock (&resources_lock
);
1120 for (l
= registered_resources
; l
!= NULL
; l
= l
->next
)
1122 GResource
*r
= l
->data
;
1124 children
= g_resource_enumerate_children (r
, path
, 0, NULL
);
1126 if (children
!= NULL
)
1129 /* note: keep in sync with same line above */
1130 hash
= g_hash_table_new_full (g_str_hash
, g_str_equal
, g_free
, NULL
);
1132 for (i
= 0; children
[i
] != NULL
; i
++)
1133 g_hash_table_add (hash
, children
[i
]);
1138 g_rw_lock_reader_unlock (&resources_lock
);
1142 g_set_error (error
, G_RESOURCE_ERROR
, G_RESOURCE_ERROR_NOT_FOUND
,
1143 _("The resource at “%s” does not exist"),
1149 children
= (gchar
**) g_hash_table_get_keys_as_array (hash
, NULL
);
1150 g_hash_table_steal_all (hash
);
1151 g_hash_table_destroy (hash
);
1158 * g_resources_get_info:
1159 * @path: A pathname inside the resource
1160 * @lookup_flags: A #GResourceLookupFlags
1161 * @size: (out) (optional): a location to place the length of the contents of the file,
1162 * or %NULL if the length is not needed
1163 * @flags: (out) (optional): a location to place the #GResourceFlags about the file,
1164 * or %NULL if the flags are not needed
1165 * @error: return location for a #GError, or %NULL
1167 * Looks for a file at the specified @path in the set of
1168 * globally registered resources and if found returns information about it.
1170 * @lookup_flags controls the behaviour of the lookup.
1172 * Returns: %TRUE if the file was found. %FALSE if there were errors
1177 g_resources_get_info (const gchar
*path
,
1178 GResourceLookupFlags lookup_flags
,
1183 gboolean res
= FALSE
;
1187 register_lazy_static_resources ();
1189 g_rw_lock_reader_lock (&resources_lock
);
1191 for (l
= registered_resources
; l
!= NULL
; l
= l
->next
)
1193 GResource
*r
= l
->data
;
1194 GError
*my_error
= NULL
;
1196 r_res
= g_resource_get_info (r
, path
, lookup_flags
, size
, flags
, &my_error
);
1198 g_error_matches (my_error
, G_RESOURCE_ERROR
, G_RESOURCE_ERROR_NOT_FOUND
))
1200 g_clear_error (&my_error
);
1205 g_propagate_error (error
, my_error
);
1212 g_set_error (error
, G_RESOURCE_ERROR
, G_RESOURCE_ERROR_NOT_FOUND
,
1213 _("The resource at “%s” does not exist"),
1216 g_rw_lock_reader_unlock (&resources_lock
);
1221 /* This code is to handle registration of resources very early, from a constructor.
1222 * At that point we'd like to do minimal work, to avoid ordering issues. For instance,
1223 * we're not allowed to use g_malloc, as the user need to be able to call g_mem_set_vtable
1224 * before the first call to g_malloc.
1226 * So, what we do at construction time is that we just register a static structure on
1227 * a list of resources that need to be initialized, and then later, when doing any lookups
1228 * in the global list of registered resources, or when getting a reference to the
1229 * lazily initialized resource we lazily create and register all the GResources on
1232 * To avoid having to use locks in the constructor, and having to grab the writer lock
1233 * when checking the lazy registering list we update lazy_register_resources in
1234 * a lock-less fashion (atomic prepend-only, atomic replace with NULL). However, all
1235 * operations except:
1236 * * check if there are any resources to lazily initialize
1237 * * Add a static resource to the lazy init list
1238 * Do use the full writer lock for protection.
1242 register_lazy_static_resources_unlocked (void)
1244 GStaticResource
*list
;
1247 list
= lazy_register_resources
;
1248 while (!g_atomic_pointer_compare_and_exchange (&lazy_register_resources
, list
, NULL
));
1250 while (list
!= NULL
)
1252 GBytes
*bytes
= g_bytes_new_static (list
->data
, list
->data_len
);
1253 GResource
*resource
= g_resource_new_from_data (bytes
, NULL
);
1256 g_resources_register_unlocked (resource
);
1257 g_atomic_pointer_set (&list
->resource
, resource
);
1259 g_bytes_unref (bytes
);
1266 register_lazy_static_resources (void)
1268 if (g_atomic_pointer_get (&lazy_register_resources
) == NULL
)
1271 g_rw_lock_writer_lock (&resources_lock
);
1272 register_lazy_static_resources_unlocked ();
1273 g_rw_lock_writer_unlock (&resources_lock
);
1277 * g_static_resource_init:
1278 * @static_resource: pointer to a static #GStaticResource
1280 * Initializes a GResource from static data using a
1283 * This is normally used by code generated by
1284 * [glib-compile-resources][glib-compile-resources]
1285 * and is not typically used by other code.
1290 g_static_resource_init (GStaticResource
*static_resource
)
1296 next
= lazy_register_resources
;
1297 static_resource
->next
= next
;
1299 while (!g_atomic_pointer_compare_and_exchange (&lazy_register_resources
, next
, static_resource
));
1303 * g_static_resource_fini:
1304 * @static_resource: pointer to a static #GStaticResource
1306 * Finalized a GResource initialized by g_static_resource_init().
1308 * This is normally used by code generated by
1309 * [glib-compile-resources][glib-compile-resources]
1310 * and is not typically used by other code.
1315 g_static_resource_fini (GStaticResource
*static_resource
)
1317 GResource
*resource
;
1319 g_rw_lock_writer_lock (&resources_lock
);
1321 register_lazy_static_resources_unlocked ();
1323 resource
= g_atomic_pointer_get (&static_resource
->resource
);
1326 g_atomic_pointer_set (&static_resource
->resource
, NULL
);
1327 g_resources_unregister_unlocked (resource
);
1328 g_resource_unref (resource
);
1331 g_rw_lock_writer_unlock (&resources_lock
);
1335 * g_static_resource_get_resource:
1336 * @static_resource: pointer to a static #GStaticResource
1338 * Gets the GResource that was registered by a call to g_static_resource_init().
1340 * This is normally used by code generated by
1341 * [glib-compile-resources][glib-compile-resources]
1342 * and is not typically used by other code.
1344 * Returns: (transfer none): a #GResource
1349 g_static_resource_get_resource (GStaticResource
*static_resource
)
1351 register_lazy_static_resources ();
1353 return g_atomic_pointer_get (&static_resource
->resource
);