Clean up GSettingsSchema logic
[glib.git] / gio / gresource.c
blobad40a78ec542ab4838ad479c36f025eefd214218
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 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, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Authors: Alexander Larsson <alexl@redhat.com>
23 #include "config.h"
25 #include <string.h>
27 #include "gresource.h"
28 #include <gvdb/gvdb-reader.h>
29 #include <gi18n.h>
30 #include <gio/gmemoryinputstream.h>
31 #include <gio/gzlibdecompressor.h>
32 #include <gio/gconverterinputstream.h>
34 struct _GResource
36 int ref_count;
38 GvdbTable *table;
41 static void register_lazy_static_resources (void);
43 G_DEFINE_BOXED_TYPE (GResource, g_resource, g_resource_ref, g_resource_unref)
45 /**
46 * SECTION:gresource
47 * @short_description: Resource framework
48 * @include: gio/gio.h
50 * Applications and libraries often contain binary or textual data that is really part of the
51 * application, rather than user data. For instance #GtkBuilder .ui files, splashscreen images,
52 * GMenu markup xml, CSS files, icons, etc. These are often shipped as files in <filename>$datadir/appname</filename>, or
53 * manually included as literal strings in the code.
55 * The #GResource API and the <link linkend="glib-compile-resources">glib-compile-resources</link> program
56 * provide a convenient and efficient alternative to this which has some nice properties. You
57 * maintain the files as normal files, so its easy to edit them, but during the build the files
58 * are combined into a binary bundle that is linked into the executable. This means that loading
59 * the resource files are efficient (as they are already in memory, shared with other instances) and
60 * simple (no need to check for things like I/O errors or locate the files in the filesystem). It
61 * also makes it easier to create relocatable applications.
63 * Resource files can also be marked as compressed. Such files will be included in the resource bundle
64 * in a compressed form, but will be automatically uncompressed when the resource is used. This
65 * is very useful e.g. for larger text files that are parsed once (or rarely) and then thrown away.
67 * Resource files can also be marked to be preprocessed, by setting the value of the
68 * <literal>preprocess</literal> attribute to a comma-separated list of preprocessing options.
69 * The only options currently supported are:
71 * <literal>xml-stripblanks</literal> which will use <command>xmllint</command> to strip
72 * ignorable whitespace from the xml file. For this to work, the <envar>XMLLINT</envar>
73 * environment variable must be set to the full path to the xmllint executable, or xmllint
74 * must be in the PATH; otherwise the preprocessing step is skipped.
76 * <literal>to-pixdata</literal> which will use <command>gdk-pixbuf-pixdata</command> to convert
77 * images to the GdkPixdata format, which allows you to create pixbufs directly using the data inside
78 * the resource file, rather than an (uncompressed) copy if it. For this, the gdk-pixbuf-pixdata
79 * program must be in the PATH, or the <envar>GDK_PIXBUF_PIXDATA</envar> environment variable must be
80 * set to the full path to the gdk-pixbuf-pixdata executable; otherwise the resource compiler will
81 * abort.
83 * Resource bundles are created by the <link linkend="glib-compile-resources">glib-compile-resources</link> program
84 * which takes an xml file that describes the bundle, and a set of files that the xml references. These
85 * are combined into a binary resource bundle.
87 * <example id="resource-example"><title>Example resource description</title>
88 * <programlisting><![CDATA[
89 * <?xml version="1.0" encoding="UTF-8"?>
90 * <gresources>
91 * <gresource prefix="/org/gtk/Example">
92 * <file>data/splashscreen.png</file>
93 * <file compressed="true">dialog.ui</file>
94 * <file preprocess="xml-stripblanks">menumarkup.xml</file>
95 * </gresource>
96 * </gresources>
97 * ]]></programlisting></example>
99 * This will create a resource bundle with the following files:
100 * <programlisting><![CDATA[
101 * /org/gtk/Example/data/splashscreen.png
102 * /org/gtk/Example/dialog.ui
103 * /org/gtk/Example/menumarkup.xml
104 * ]]></programlisting>
106 * Note that all resources in the process share the same namespace, so use java-style
107 * path prefixes (like in the above example) to avoid conflicts.
109 * You can then use <link linkend="glib-compile-resources">glib-compile-resources</link> to compile the xml to a
110 * binary bundle that you can load with g_resource_load(). However, its more common to use the --generate-source and
111 * --generate-header arguments to create a source file and header to link directly into your application.
113 * Once a #GResource has been created and registered all the data in it can be accessed globally in the process by
114 * using API calls like g_resources_open_stream() to stream the data or g_resources_lookup_data() to get a direct pointer
115 * to the data. You can also use uris like "resource:///org/gtk/Example/data/splashscreen.png" with #GFile to access
116 * the resource data.
118 * There are two forms of the generated source, the default version uses the compiler support for constructor
119 * and destructor functions (where available) to automatically create and register the #GResource on startup
120 * or library load time. If you pass --manual-register two functions to register/unregister the resource is instead
121 * created. This requires an explicit initialization call in your application/library, but it works on all platforms,
122 * even on the minor ones where this is not available. (Constructor support is available for at least Win32, MacOS and Linux.)
124 * Note that resource data can point directly into the data segment of e.g. a library, so if you are unloading libraries
125 * during runtime you need to be very careful with keeping around pointers to data from a resource, as this goes away
126 * when the library is unloaded. However, in practice this is not generally a problem, since most resource accesses
127 * is for your own resources, and resource data is often used once, during parsing, and then released.
129 * Since: 2.32
133 * g_resource_error_quark:
135 * Gets the #GResource Error Quark.
137 * Return value: a #GQuark
139 * Since: 2.32
141 G_DEFINE_QUARK (g-resource-error-quark, g_resource_error)
144 * g_resource_ref:
145 * @resource: A #GResource
147 * Atomically increments the reference count of @array by one. This
148 * function is MT-safe and may be called from any thread.
150 * Returns: The passed in #GResource
152 * Since: 2.32
154 GResource *
155 g_resource_ref (GResource *resource)
157 g_atomic_int_inc (&resource->ref_count);
158 return resource;
162 * g_resource_unref:
163 * @resource: A #GResource
165 * Atomically decrements the reference count of @resource by one. If the
166 * reference count drops to 0, all memory allocated by the array is
167 * released. This function is MT-safe and may be called from any
168 * thread.
170 * Since: 2.32
172 void
173 g_resource_unref (GResource *resource)
175 if (g_atomic_int_dec_and_test (&resource->ref_count))
177 gvdb_table_unref (resource->table);
178 g_free (resource);
183 * g_resource_new_from_table:
184 * @table: (transfer full): a GvdbTable
186 * Returns: (transfer full): a new #GResource for @table
188 static GResource *
189 g_resource_new_from_table (GvdbTable *table)
191 GResource *resource;
193 resource = g_new (GResource, 1);
194 resource->ref_count = 1;
195 resource->table = table;
197 return resource;
201 * g_resource_new_from_data:
202 * @data: A #GBytes
203 * @error: return location for a #GError, or %NULL
205 * Creates a GResource from a reference to the binary resource bundle.
206 * This will keep a reference to @data while the resource lives, so
207 * the data should not be modified or freed.
209 * If you want to use this resource in the global resource namespace you need
210 * to register it with g_resources_register().
212 * Return value: (transfer full): a new #GResource, or %NULL on error
214 * Since: 2.32
216 GResource *
217 g_resource_new_from_data (GBytes *data,
218 GError **error)
220 GvdbTable *table;
222 table = gvdb_table_new_from_data (g_bytes_get_data (data, NULL),
223 g_bytes_get_size (data),
224 TRUE,
225 g_bytes_ref (data),
226 (GvdbRefFunc)g_bytes_ref,
227 (GDestroyNotify)g_bytes_unref,
228 error);
230 if (table == NULL)
231 return NULL;
233 return g_resource_new_from_table (table);
237 * g_resource_load:
238 * @filename: (type filename): the path of a filename to load, in the GLib filename encoding
239 * @error: return location for a #GError, or %NULL
241 * Loads a binary resource bundle and creates a #GResource representation of it, allowing
242 * you to query it for data.
244 * If you want to use this resource in the global resource namespace you need
245 * to register it with g_resources_register().
247 * Return value: (transfer full): a new #GResource, or %NULL on error
249 * Since: 2.32
251 GResource *
252 g_resource_load (const gchar *filename,
253 GError **error)
255 GvdbTable *table;
257 table = gvdb_table_new (filename, FALSE, error);
258 if (table == NULL)
259 return NULL;
261 return g_resource_new_from_table (table);
264 static
265 gboolean do_lookup (GResource *resource,
266 const gchar *path,
267 GResourceLookupFlags lookup_flags,
268 gsize *size,
269 guint32 *flags,
270 const void **data,
271 gsize *data_size,
272 GError **error)
274 char *free_path = NULL;
275 gsize path_len;
276 gboolean res = FALSE;
277 GVariant *value;
279 path_len = strlen (path);
280 if (path[path_len-1] == '/')
282 path = free_path = g_strdup (path);
283 free_path[path_len-1] = 0;
286 value = gvdb_table_get_raw_value (resource->table, path);
288 if (value == NULL)
290 g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND,
291 _("The resource at '%s' does not exist"),
292 path);
294 else
296 guint32 _size, _flags;
297 GVariant *array;
299 g_variant_get (value, "(uu@ay)",
300 &_size,
301 &_flags,
302 &array);
304 _size = GUINT32_FROM_LE (_size);
305 _flags = GUINT32_FROM_LE (_flags);
307 if (size)
308 *size = _size;
309 if (flags)
310 *flags = _flags;
311 if (data)
312 *data = g_variant_get_data (array);
313 if (data_size)
315 /* Don't report trailing newline that non-compressed files has */
316 if (_flags & G_RESOURCE_FLAGS_COMPRESSED)
317 *data_size = g_variant_get_size (array);
318 else
319 *data_size = g_variant_get_size (array) - 1;
321 g_variant_unref (array);
322 g_variant_unref (value);
324 res = TRUE;
327 g_free (free_path);
328 return res;
332 * g_resource_open_stream:
333 * @resource: A #GResource
334 * @path: A pathname inside the resource
335 * @lookup_flags: A #GResourceLookupFlags
336 * @error: return location for a #GError, or %NULL
338 * Looks for a file at the specified @path in the resource and
339 * returns a #GInputStream that lets you read the data.
341 * @lookup_flags controls the behaviour of the lookup.
343 * Returns: (transfer full): #GInputStream or %NULL on error.
344 * Free the returned object with g_object_unref()
346 * Since: 2.32
348 GInputStream *
349 g_resource_open_stream (GResource *resource,
350 const gchar *path,
351 GResourceLookupFlags lookup_flags,
352 GError **error)
354 const void *data;
355 gsize data_size;
356 guint32 flags;
357 GInputStream *stream, *stream2;
359 if (!do_lookup (resource, path, lookup_flags, NULL, &flags, &data, &data_size, error))
360 return NULL;
362 stream = g_memory_input_stream_new_from_data (data, data_size, NULL);
363 g_object_set_data_full (G_OBJECT (stream), "g-resource",
364 g_resource_ref (resource),
365 (GDestroyNotify)g_resource_unref);
367 if (flags & G_RESOURCE_FLAGS_COMPRESSED)
369 GZlibDecompressor *decompressor =
370 g_zlib_decompressor_new (G_ZLIB_COMPRESSOR_FORMAT_ZLIB);
372 stream2 = g_converter_input_stream_new (stream, G_CONVERTER (decompressor));
373 g_object_unref (decompressor);
374 g_object_unref (stream);
375 stream = stream2;
378 return stream;
382 * g_resource_lookup_data:
383 * @resource: A #GResource
384 * @path: A pathname inside the resource
385 * @lookup_flags: A #GResourceLookupFlags
386 * @error: return location for a #GError, or %NULL
388 * Looks for a file at the specified @path in the resource and
389 * returns a #GBytes that lets you directly access the data in
390 * memory.
392 * The data is always followed by a zero byte, so you
393 * can safely use the data as a C string. However, that byte
394 * is not included in the size of the GBytes.
396 * For uncompressed resource files this is a pointer directly into
397 * the resource bundle, which is typically in some readonly data section
398 * in the program binary. For compressed files we allocate memory on
399 * the heap and automatically uncompress the data.
401 * @lookup_flags controls the behaviour of the lookup.
403 * Returns: (transfer full): #GBytes or %NULL on error.
404 * Free the returned object with g_bytes_unref()
406 * Since: 2.32
408 GBytes *
409 g_resource_lookup_data (GResource *resource,
410 const gchar *path,
411 GResourceLookupFlags lookup_flags,
412 GError **error)
414 const void *data;
415 guint32 flags;
416 gsize data_size;
417 gsize size;
419 if (!do_lookup (resource, path, lookup_flags, &size, &flags, &data, &data_size, error))
420 return NULL;
422 if (flags & G_RESOURCE_FLAGS_COMPRESSED)
424 char *uncompressed, *d;
425 const char *s;
426 GConverterResult res;
427 gsize d_size, s_size;
428 gsize bytes_read, bytes_written;
431 GZlibDecompressor *decompressor =
432 g_zlib_decompressor_new (G_ZLIB_COMPRESSOR_FORMAT_ZLIB);
434 uncompressed = g_malloc (size + 1);
436 s = data;
437 s_size = data_size;
438 d = uncompressed;
439 d_size = size;
443 res = g_converter_convert (G_CONVERTER (decompressor),
444 s, s_size,
445 d, d_size,
446 G_CONVERTER_INPUT_AT_END,
447 &bytes_read,
448 &bytes_written,
449 NULL);
450 if (res == G_CONVERTER_ERROR)
452 g_free (uncompressed);
453 g_object_unref (decompressor);
455 g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_INTERNAL,
456 _("The resource at '%s' failed to decompress"),
457 path);
458 return NULL;
461 s += bytes_read;
462 s_size -= bytes_read;
463 d += bytes_written;
464 d_size -= bytes_written;
466 while (res != G_CONVERTER_FINISHED);
468 uncompressed[size] = 0; /* Zero terminate */
470 g_object_unref (decompressor);
472 return g_bytes_new_take (uncompressed, size);
474 else
475 return g_bytes_new_with_free_func (data, data_size, (GDestroyNotify)g_resource_unref, g_resource_ref (resource));
479 * g_resource_get_info:
480 * @resource: A #GResource
481 * @path: A pathname inside the resource
482 * @lookup_flags: A #GResourceLookupFlags
483 * @size: (out) (allow-none): a location to place the length of the contents of the file,
484 * or %NULL if the length is not needed
485 * @flags: (out) (allow-none): a location to place the flags about the file,
486 * or %NULL if the length is not needed
487 * @error: return location for a #GError, or %NULL
489 * Looks for a file at the specified @path in the resource and
490 * if found returns information about it.
492 * @lookup_flags controls the behaviour of the lookup.
494 * Returns: %TRUE if the file was found. %FALSE if there were errors
496 * Since: 2.32
498 gboolean
499 g_resource_get_info (GResource *resource,
500 const gchar *path,
501 GResourceLookupFlags lookup_flags,
502 gsize *size,
503 guint32 *flags,
504 GError **error)
506 return do_lookup (resource, path, lookup_flags, size, flags, NULL, NULL, error);
510 * g_resource_enumerate_children:
511 * @resource: A #GResource
512 * @path: A pathname inside the resource
513 * @lookup_flags: A #GResourceLookupFlags
514 * @error: return location for a #GError, or %NULL
516 * Returns all the names of children at the specified @path in the resource.
517 * The return result is a %NULL terminated list of strings which should
518 * be released with g_strfreev().
520 * @lookup_flags controls the behaviour of the lookup.
522 * Returns: (array zero-terminated=1) (transfer full): an array of constant strings
524 * Since: 2.32
526 gchar **
527 g_resource_enumerate_children (GResource *resource,
528 const gchar *path,
529 GResourceLookupFlags lookup_flags,
530 GError **error)
532 gchar **children;
533 gsize path_len;
534 char *path_with_slash;
536 if (*path == 0)
538 g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND,
539 _("The resource at '%s' does not exist"),
540 path);
541 return NULL;
544 path_len = strlen (path);
545 if (path[path_len-1] != '/')
546 path_with_slash = g_strconcat (path, "/", NULL);
547 else
548 path_with_slash = g_strdup (path);
550 children = gvdb_table_list (resource->table, path_with_slash);
551 g_free (path_with_slash);
553 if (children == NULL)
555 g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND,
556 _("The resource at '%s' does not exist"),
557 path);
558 return NULL;
561 return children;
564 static GRWLock resources_lock;
565 static GList *registered_resources;
567 /* This is updated atomically, so we can append to it and check for NULL outside the
568 lock, but all other accesses are done under the write lock */
569 static GStaticResource *lazy_register_resources;
571 static void
572 g_resources_register_unlocked (GResource *resource)
574 registered_resources = g_list_prepend (registered_resources, g_resource_ref (resource));
577 static void
578 g_resources_unregister_unlocked (GResource *resource)
580 if (g_list_find (registered_resources, resource) == NULL)
582 g_warning ("Tried to remove not registered resource");
584 else
586 registered_resources = g_list_remove (registered_resources, resource);
587 g_resource_unref (resource);
592 * g_resources_register:
593 * @resource: A #GResource
595 * Registers the resource with the process-global set of resources.
596 * Once a resource is registered the files in it can be accessed
597 * with the global resource lookup functions like g_resources_lookup_data().
599 * Since: 2.32
601 void
602 g_resources_register (GResource *resource)
604 g_rw_lock_writer_lock (&resources_lock);
605 g_resources_register_unlocked (resource);
606 g_rw_lock_writer_unlock (&resources_lock);
610 * g_resources_unregister:
611 * @resource: A #GResource
613 * Unregisters the resource from the process-global set of resources.
615 * Since: 2.32
617 void
618 g_resources_unregister (GResource *resource)
620 g_rw_lock_writer_lock (&resources_lock);
621 g_resources_unregister_unlocked (resource);
622 g_rw_lock_writer_unlock (&resources_lock);
626 * g_resources_open_stream:
627 * @path: A pathname inside the resource
628 * @lookup_flags: A #GResourceLookupFlags
629 * @error: return location for a #GError, or %NULL
631 * Looks for a file at the specified @path in the set of
632 * globally registered resources and returns a #GInputStream
633 * that lets you read the data.
635 * @lookup_flags controls the behaviour of the lookup.
637 * Returns: (transfer full): #GInputStream or %NULL on error.
638 * Free the returned object with g_object_unref()
640 * Since: 2.32
642 GInputStream *
643 g_resources_open_stream (const gchar *path,
644 GResourceLookupFlags lookup_flags,
645 GError **error)
647 GInputStream *res = NULL;
648 GList *l;
649 GInputStream *stream;
651 register_lazy_static_resources ();
653 g_rw_lock_reader_lock (&resources_lock);
655 for (l = registered_resources; l != NULL; l = l->next)
657 GResource *r = l->data;
658 GError *my_error = NULL;
660 stream = g_resource_open_stream (r, path, lookup_flags, &my_error);
661 if (stream == NULL &&
662 g_error_matches (my_error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND))
664 g_clear_error (&my_error);
666 else
668 if (stream == NULL)
669 g_propagate_error (error, my_error);
670 res = stream;
671 break;
675 if (l == NULL)
676 g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND,
677 _("The resource at '%s' does not exist"),
678 path);
680 g_rw_lock_reader_unlock (&resources_lock);
682 return res;
686 * g_resources_lookup_data:
687 * @path: A pathname inside the resource
688 * @lookup_flags: A #GResourceLookupFlags
689 * @error: return location for a #GError, or %NULL
691 * Looks for a file at the specified @path in the set of
692 * globally registered resources and returns a #GBytes that
693 * lets you directly access the data in memory.
695 * The data is always followed by a zero byte, so you
696 * can safely use the data as a C string. However, that byte
697 * is not included in the size of the GBytes.
699 * For uncompressed resource files this is a pointer directly into
700 * the resource bundle, which is typically in some readonly data section
701 * in the program binary. For compressed files we allocate memory on
702 * the heap and automatically uncompress the data.
704 * @lookup_flags controls the behaviour of the lookup.
706 * Returns: (transfer full): #GBytes or %NULL on error.
707 * Free the returned object with g_bytes_unref()
709 * Since: 2.32
711 GBytes *
712 g_resources_lookup_data (const gchar *path,
713 GResourceLookupFlags lookup_flags,
714 GError **error)
716 GBytes *res = NULL;
717 GList *l;
718 GBytes *data;
720 register_lazy_static_resources ();
722 g_rw_lock_reader_lock (&resources_lock);
724 for (l = registered_resources; l != NULL; l = l->next)
726 GResource *r = l->data;
727 GError *my_error = NULL;
729 data = g_resource_lookup_data (r, path, lookup_flags, &my_error);
730 if (data == NULL &&
731 g_error_matches (my_error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND))
733 g_clear_error (&my_error);
735 else
737 if (data == NULL)
738 g_propagate_error (error, my_error);
739 res = data;
740 break;
744 if (l == NULL)
745 g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND,
746 _("The resource at '%s' does not exist"),
747 path);
749 g_rw_lock_reader_unlock (&resources_lock);
751 return res;
755 * g_resources_enumerate_children:
756 * @path: A pathname inside the resource
757 * @lookup_flags: A #GResourceLookupFlags
758 * @error: return location for a #GError, or %NULL
760 * Returns all the names of children at the specified @path in the set of
761 * globally registered resources.
762 * The return result is a %NULL terminated list of strings which should
763 * be released with g_strfreev().
765 * @lookup_flags controls the behaviour of the lookup.
767 * Returns: (array zero-terminated=1) (transfer full): an array of constant strings
769 * Since: 2.32
771 gchar **
772 g_resources_enumerate_children (const gchar *path,
773 GResourceLookupFlags lookup_flags,
774 GError **error)
776 GHashTable *hash = NULL;
777 GList *l;
778 char **children;
779 int i;
781 register_lazy_static_resources ();
783 g_rw_lock_reader_lock (&resources_lock);
785 for (l = registered_resources; l != NULL; l = l->next)
787 GResource *r = l->data;
789 children = g_resource_enumerate_children (r, path, 0, NULL);
791 if (children != NULL)
793 if (hash == NULL)
794 hash = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
796 for (i = 0; children[i] != NULL; i++)
797 g_hash_table_insert (hash, children[i], children[i]);
798 g_free (children);
802 g_rw_lock_reader_unlock (&resources_lock);
804 if (hash == NULL)
806 g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND,
807 _("The resource at '%s' does not exist"),
808 path);
809 return NULL;
811 else
813 GHashTableIter iter;
814 const char *key;
815 guint n_children;
816 n_children = g_hash_table_size (hash);
817 children = g_new (char *, n_children + 1);
818 i = 0;
820 g_hash_table_iter_init (&iter, hash);
821 while (g_hash_table_iter_next (&iter, (gpointer *)&key, NULL))
822 children[i++] = g_strdup (key);
823 children[i++] = NULL;
825 g_hash_table_destroy (hash);
827 return children;
832 * g_resources_get_info:
833 * @path: A pathname inside the resource
834 * @lookup_flags: A #GResourceLookupFlags
835 * @size: (out) (allow-none): a location to place the length of the contents of the file,
836 * or %NULL if the length is not needed
837 * @flags: (out) (allow-none): a location to place the flags about the file,
838 * or %NULL if the length is not needed
839 * @error: return location for a #GError, or %NULL
841 * Looks for a file at the specified @path in the set of
842 * globally registered resources and if found returns information about it.
844 * @lookup_flags controls the behaviour of the lookup.
846 * Returns: %TRUE if the file was found. %FALSE if there were errors
848 * Since: 2.32
850 gboolean
851 g_resources_get_info (const gchar *path,
852 GResourceLookupFlags lookup_flags,
853 gsize *size,
854 guint32 *flags,
855 GError **error)
857 gboolean res = FALSE;
858 GList *l;
859 gboolean r_res;
861 register_lazy_static_resources ();
863 g_rw_lock_reader_lock (&resources_lock);
865 for (l = registered_resources; l != NULL; l = l->next)
867 GResource *r = l->data;
868 GError *my_error = NULL;
870 r_res = g_resource_get_info (r, path, lookup_flags, size, flags, &my_error);
871 if (!r_res &&
872 g_error_matches (my_error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND))
874 g_clear_error (&my_error);
876 else
878 if (!r_res)
879 g_propagate_error (error, my_error);
880 res = r_res;
881 break;
885 if (l == NULL)
886 g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND,
887 _("The resource at '%s' does not exist"),
888 path);
890 g_rw_lock_reader_unlock (&resources_lock);
892 return res;
895 /* This code is to handle registration of resources very early, from a constructor.
896 * At that point we'd like to do minimal work, to avoid ordering issues. For instance,
897 * we're not allowed to use g_malloc, as the user need to be able to call g_mem_set_vtable
898 * before the first call to g_malloc.
900 * So, what we do at construction time is that we just register a static structure on
901 * a list of resources that need to be initialized, and then later, when doing any lookups
902 * in the global list of registered resources, or when getting a reference to the
903 * lazily initialized resource we lazily create and register all the GResources on
904 * the lazy list.
906 * To avoid having to use locks in the constructor, and having to grab the writer lock
907 * when checking the lazy registering list we update lazy_register_resources in
908 * a lock-less fashion (atomic prepend-only, atomic replace with NULL). However, all
909 * operations except:
910 * * check if there are any resources to lazily initialize
911 * * Add a static resource to the lazy init list
912 * Do use the full writer lock for protection.
915 static void
916 register_lazy_static_resources_unlocked (void)
918 GStaticResource *list;
921 list = lazy_register_resources;
922 while (!g_atomic_pointer_compare_and_exchange (&lazy_register_resources, list, NULL));
924 while (list != NULL)
926 GBytes *bytes = g_bytes_new_static (list->data, list->data_len);
927 GResource *resource = g_resource_new_from_data (bytes, NULL);
928 if (resource)
930 g_resources_register_unlocked (resource);
931 g_atomic_pointer_set (&list->resource, resource);
933 g_bytes_unref (bytes);
935 list = list->next;
939 static void
940 register_lazy_static_resources (void)
942 if (g_atomic_pointer_get (&lazy_register_resources) == NULL)
943 return;
945 g_rw_lock_writer_lock (&resources_lock);
946 register_lazy_static_resources_unlocked ();
947 g_rw_lock_writer_unlock (&resources_lock);
951 * g_static_resource_init:
952 * @static_resource: pointer to a static #GStaticResource
954 * Initializes a GResource from static data using a
955 * GStaticResource.
957 * This is normally used by code generated by
958 * <link linkend="glib-compile-resources">glib-compile-resources</link>
959 * and is not typically used by other code.
961 * Since: 2.32
963 void
964 g_static_resource_init (GStaticResource *static_resource)
966 gpointer next;
970 next = lazy_register_resources;
971 static_resource->next = next;
973 while (!g_atomic_pointer_compare_and_exchange (&lazy_register_resources, next, static_resource));
977 * g_static_resource_fini:
978 * @static_resource: pointer to a static #GStaticResource
980 * Finalized a GResource initialized by g_static_resource_init().
982 * This is normally used by code generated by
983 * <link linkend="glib-compile-resources">glib-compile-resources</link>
984 * and is not typically used by other code.
986 * Since: 2.32
988 void
989 g_static_resource_fini (GStaticResource *static_resource)
991 GResource *resource;
993 g_rw_lock_writer_lock (&resources_lock);
995 register_lazy_static_resources_unlocked ();
997 resource = g_atomic_pointer_get (&static_resource->resource);
998 if (resource)
1000 g_atomic_pointer_set (&static_resource->resource, NULL);
1001 g_resources_unregister_unlocked (resource);
1002 g_resource_unref (resource);
1005 g_rw_lock_writer_unlock (&resources_lock);
1009 * g_static_resource_get_resource:
1010 * @static_resource: pointer to a static #GStaticResource
1012 * Gets the GResource that was registered by a call to g_static_resource_init().
1014 * This is normally used by code generated by
1015 * <link linkend="glib-compile-resources">glib-compile-resources</link>
1016 * and is not typically used by other code.
1018 * Return value: (transfer none): a #GResource
1020 * Since: 2.32
1022 GResource *
1023 g_static_resource_get_resource (GStaticResource *static_resource)
1025 register_lazy_static_resources ();
1027 return g_atomic_pointer_get (&static_resource->resource);