regex: Update included PCRE to 8.30
[glib.git] / gio / gresource.c
blob0e30ca762635a0c57e767470226201cdd67f5dea
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 ();
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 compresses. 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 availible) 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 availible. (Constructor support is availible 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 GQuark
142 g_resource_error_quark (void)
144 return g_quark_from_static_string ("g-resource-error-quark");
148 * g_resource_ref:
149 * @resource: A #GResource.
151 * Atomically increments the reference count of @array by one. This
152 * function is MT-safe and may be called from any thread.
154 * Returns: The passed in #GResource.
156 * Since: 2.32
158 GResource *
159 g_resource_ref (GResource *resource)
161 g_atomic_int_inc (&resource->ref_count);
162 return resource;
166 * g_resource_unref:
167 * @resource: A #GResource.
169 * Atomically decrements the reference count of @resource by one. If the
170 * reference count drops to 0, all memory allocated by the array is
171 * released. This function is MT-safe and may be called from any
172 * thread.
174 * Since: 2.32
176 void
177 g_resource_unref (GResource *resource)
179 if (g_atomic_int_dec_and_test (&resource->ref_count))
181 gvdb_table_unref (resource->table);
182 g_free (resource);
187 * g_resource_new_from_table:
188 * @table: (transfer full): a GvdbTable
190 * Returns: (transfer full): a new #GResource for @table
192 static GResource *
193 g_resource_new_from_table (GvdbTable *table)
195 GResource *resource;
197 resource = g_new (GResource, 1);
198 resource->ref_count = 1;
199 resource->table = table;
201 return resource;
205 * g_resource_new_from_data:
206 * @data: A #GBytes.
207 * @error: return location for a #GError, or %NULL.
209 * Creates a GResource from a reference to the binary resource bundle.
210 * This will keep a reference to @data while the resource lives, so
211 * the data should not be modified or freed.
213 * If you want to use this resource in the global resource namespace you need
214 * to register it with g_resources_register().
216 * Return value: (transfer full): a new #GResource, or %NULL on error.
218 * Since: 2.32
220 GResource *
221 g_resource_new_from_data (GBytes *data,
222 GError **error)
224 GvdbTable *table;
226 table = gvdb_table_new_from_data (g_bytes_get_data (data, NULL),
227 g_bytes_get_size (data),
228 TRUE,
229 g_bytes_ref (data),
230 (GvdbRefFunc)g_bytes_ref,
231 (GDestroyNotify)g_bytes_unref,
232 error);
234 if (table == NULL)
235 return NULL;
237 return g_resource_new_from_table (table);
241 * g_resource_load:
242 * @filename: (type filename): the path of a filename to load, in the GLib filename encoding.
243 * @error: return location for a #GError, or %NULL.
245 * Loads a binary resource bundle and creates a #GResource representation of it, allowing
246 * you to query it for data.
248 * If you want to use this resource in the global resource namespace you need
249 * to register it with g_resources_register().
251 * Return value: (transfer full): a new #GResource, or %NULL on error.
253 * Since: 2.32
255 GResource *
256 g_resource_load (const gchar *filename,
257 GError **error)
259 GvdbTable *table;
261 table = gvdb_table_new (filename, FALSE, error);
262 if (table == NULL)
263 return NULL;
265 return g_resource_new_from_table (table);
268 static gboolean do_lookup (GResource *resource,
269 const char *path,
270 GResourceLookupFlags lookup_flags,
271 gsize *size,
272 guint32 *flags,
273 const void **data,
274 gsize *data_size,
275 GError **error)
277 char *free_path = NULL;
278 gsize path_len;
279 gboolean res = FALSE;
280 GVariant *value;
282 path_len = strlen (path);
283 if (path[path_len-1] == '/')
285 path = free_path = g_strdup (path);
286 free_path[path_len-1] = 0;
289 value = gvdb_table_get_value (resource->table, path);
291 if (value == NULL)
293 g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND,
294 _("The resource at '%s' does not exist"),
295 path);
297 else
299 guint32 _size, _flags;
300 GVariant *array;
302 g_variant_get (value, "(uu@ay)",
303 &_size,
304 &_flags,
305 &array);
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 char *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 char *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 char *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 char **
527 g_resource_enumerate_children (GResource *resource,
528 const char *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,
575 g_resource_ref (resource));
578 static void
579 g_resources_unregister_unlocked (GResource *resource)
581 if (g_list_find (registered_resources, resource) == NULL)
583 g_warning ("Tried to remove not registred resource");
585 else
587 registered_resources = g_list_remove (registered_resources,
588 resource);
589 g_resource_unref (resource);
594 * g_resources_register:
595 * @resource: A #GResource.
597 * Registers the resource with the process-global set of resources.
598 * Once a resource is registered the files in it can be accessed
599 * with the global resource lookup functions like g_resources_lookup_data().
601 * Since: 2.32
603 void
604 g_resources_register (GResource *resource)
606 g_rw_lock_writer_lock (&resources_lock);
607 g_resources_register_unlocked (resource);
608 g_rw_lock_writer_unlock (&resources_lock);
612 * g_resources_unregister:
613 * @resource: A #GResource.
615 * Unregisters the resource from the process-global set of resources.
617 * Since: 2.32
619 void
620 g_resources_unregister (GResource *resource)
622 g_rw_lock_writer_lock (&resources_lock);
623 g_resources_unregister_unlocked (resource);
624 g_rw_lock_writer_unlock (&resources_lock);
628 * g_resources_open_stream:
629 * @path: A pathname inside the resource.
630 * @lookup_flags: A #GResourceLookupFlags.
631 * @error: return location for a #GError, or %NULL.
633 * Looks for a file at the specified @path in the set of
634 * globally registred resources and returns a #GInputStream
635 * that lets you read the data.
637 * @lookup_flags controls the behaviour of the lookup.
639 * Returns: (transfer full): #GInputStream or %NULL on error.
640 * Free the returned object with g_object_unref().
642 * Since: 2.32
644 GInputStream *
645 g_resources_open_stream (const char *path,
646 GResourceLookupFlags lookup_flags,
647 GError **error)
649 GInputStream *res = NULL;
650 GList *l;
651 GInputStream *stream;
653 register_lazy_static_resources ();
655 g_rw_lock_reader_lock (&resources_lock);
657 for (l = registered_resources; l != NULL; l = l->next)
659 GResource *r = l->data;
660 GError *my_error = NULL;
662 stream = g_resource_open_stream (r, path, lookup_flags, &my_error);
663 if (stream == NULL &&
664 g_error_matches (my_error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND))
666 g_clear_error (&my_error);
668 else
670 if (stream == NULL)
671 g_propagate_error (error, my_error);
672 res = stream;
673 break;
677 if (l == NULL)
678 g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND,
679 _("The resource at '%s' does not exist"),
680 path);
682 g_rw_lock_reader_unlock (&resources_lock);
684 return res;
688 * g_resources_lookup_data:
689 * @path: A pathname inside the resource.
690 * @lookup_flags: A #GResourceLookupFlags.
691 * @error: return location for a #GError, or %NULL.
693 * Looks for a file at the specified @path in the set of
694 * globally registred resources and returns a #GBytes that
695 * lets you directly access the data in memory.
697 * The data is always followed by a zero byte, so you
698 * can safely use the data as a C string. However, that byte
699 * is not included in the size of the GBytes.
701 * For uncompressed resource files this is a pointer directly into
702 * the resource bundle, which is typically in some readonly data section
703 * in the program binary. For compressed files we allocate memory on
704 * the heap and automatically uncompress the data.
706 * @lookup_flags controls the behaviour of the lookup.
708 * Returns: (transfer full): #GBytes or %NULL on error.
709 * Free the returned object with g_bytes_unref().
711 * Since: 2.32
713 GBytes *
714 g_resources_lookup_data (const char *path,
715 GResourceLookupFlags lookup_flags,
716 GError **error)
718 GBytes *res = NULL;
719 GList *l;
720 GBytes *data;
722 register_lazy_static_resources ();
724 g_rw_lock_reader_lock (&resources_lock);
726 for (l = registered_resources; l != NULL; l = l->next)
728 GResource *r = l->data;
729 GError *my_error = NULL;
731 data = g_resource_lookup_data (r, path, lookup_flags, &my_error);
732 if (data == NULL &&
733 g_error_matches (my_error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND))
735 g_clear_error (&my_error);
737 else
739 if (data == NULL)
740 g_propagate_error (error, my_error);
741 res = data;
742 break;
746 if (l == NULL)
747 g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND,
748 _("The resource at '%s' does not exist"),
749 path);
751 g_rw_lock_reader_unlock (&resources_lock);
753 return res;
757 * g_resources_enumerate_children:
758 * @path: A pathname inside the resource.
759 * @lookup_flags: A #GResourceLookupFlags.
760 * @error: return location for a #GError, or %NULL.
762 * Returns all the names of children at the specified @path in the set of
763 * globally registred resources.
764 * The return result is a %NULL terminated list of strings which should
765 * be released with g_strfreev().
767 * @lookup_flags controls the behaviour of the lookup.
769 * Returns: (array zero-terminated=1) (transfer full): an array of constant strings
771 * Since: 2.32
773 char **
774 g_resources_enumerate_children (const char *path,
775 GResourceLookupFlags lookup_flags,
776 GError **error)
778 GHashTable *hash = NULL;
779 GList *l;
780 char **children;
781 int i;
783 register_lazy_static_resources ();
785 g_rw_lock_reader_lock (&resources_lock);
787 for (l = registered_resources; l != NULL; l = l->next)
789 GResource *r = l->data;
791 children = g_resource_enumerate_children (r, path, 0, NULL);
793 if (children != NULL)
795 if (hash == NULL)
796 hash = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
798 for (i = 0; children[i] != NULL; i++)
799 g_hash_table_insert (hash, children[i], children[i]);
800 g_free (children);
804 g_rw_lock_reader_unlock (&resources_lock);
806 if (hash == NULL)
808 g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND,
809 _("The resource at '%s' does not exist"),
810 path);
811 return NULL;
813 else
815 GHashTableIter iter;
816 const char *key;
817 guint n_children;
818 n_children = g_hash_table_size (hash);
819 children = g_new (char *, n_children + 1);
820 i = 0;
822 g_hash_table_iter_init (&iter, hash);
823 while (g_hash_table_iter_next (&iter, (gpointer *)&key, NULL))
824 children[i++] = g_strdup (key);
825 children[i++] = NULL;
827 g_hash_table_destroy (hash);
829 return children;
834 * g_resources_get_info:
835 * @path: A pathname inside the resource.
836 * @lookup_flags: A #GResourceLookupFlags.
837 * @size: (out) (allow-none): a location to place the length of the contents of the file,
838 * or %NULL if the length is not needed
839 * @flags: (out) (allow-none): a location to place the flags about the file,
840 * or %NULL if the length is not needed
841 * @error: return location for a #GError, or %NULL.
843 * Looks for a file at the specified @path in the set of
844 * globally registred resources and if found returns information about it.
846 * @lookup_flags controls the behaviour of the lookup.
848 * Returns: %TRUE if the file was found. %FALSE if there were errors.
850 * Since: 2.32
852 gboolean
853 g_resources_get_info (const char *path,
854 GResourceLookupFlags lookup_flags,
855 gsize *size,
856 guint32 *flags,
857 GError **error)
859 gboolean res = FALSE;
860 GList *l;
861 gboolean r_res;
863 register_lazy_static_resources ();
865 g_rw_lock_reader_lock (&resources_lock);
867 for (l = registered_resources; l != NULL; l = l->next)
869 GResource *r = l->data;
870 GError *my_error = NULL;
872 r_res = g_resource_get_info (r, path, lookup_flags, size, flags, &my_error);
873 if (!r_res &&
874 g_error_matches (my_error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND))
876 g_clear_error (&my_error);
878 else
880 if (!r_res)
881 g_propagate_error (error, my_error);
882 res = r_res;
883 break;
887 if (l == NULL)
888 g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND,
889 _("The resource at '%s' does not exist"),
890 path);
892 g_rw_lock_reader_unlock (&resources_lock);
894 return res;
897 /* This code is to handle registration of resources very early, from a constructor.
898 * At that point we'd like to do minimal work, to avoid ordering issues. For instance,
899 * we're not allowed to use g_malloc, as the user need to be able to call g_mem_set_vtable
900 * before the first call to g_malloc.
902 * So, what we do at construction time is that we just register a static structure on
903 * a list of resources that need to be initialized, and then later, when doing any lookups
904 * in the global list of registered resources, or when getting a reference to the
905 * lazily initialized resource we lazily create and register all the GResources on
906 * the lazy list.
908 * To avoid having to use locks in the constructor, and having to grab the writer lock
909 * when checking the lazy registering list we update lazy_register_resources in
910 * a lock-less fashion (atomic prepend-only, atomic replace with NULL). However, all
911 * operations except:
912 * * check if there are any resources to lazily initialize
913 * * Add a static resource to the lazy init list
914 * Do use the full writer lock for protection.
917 static void
918 register_lazy_static_resources_unlocked ()
920 GStaticResource *list;
923 list = lazy_register_resources;
924 while (!g_atomic_pointer_compare_and_exchange (&lazy_register_resources, list, NULL));
926 while (list != NULL)
928 GBytes *bytes = g_bytes_new_static (list->data, list->data_len);
929 GResource *resource = g_resource_new_from_data (bytes, NULL);
930 if (resource)
932 g_resources_register_unlocked (resource);
933 g_atomic_pointer_set (&list->resource, resource);
935 g_bytes_unref (bytes);
937 list = list->next;
941 static void
942 register_lazy_static_resources ()
944 if (g_atomic_pointer_get (&lazy_register_resources) == NULL)
945 return;
947 g_rw_lock_writer_lock (&resources_lock);
948 register_lazy_static_resources_unlocked ();
949 g_rw_lock_writer_unlock (&resources_lock);
953 * g_static_resource_init:
954 * @static_resource: pointer to a static #GStaticResource.
956 * Initializes a GResource from static data using a
957 * GStaticResource.
959 * This is normally used by code generated by
960 * <link linkend="glib-compile-resources">glib-compile-resources</link> and is
961 * not typically used by other code.
963 * Since: 2.32
965 void
966 g_static_resource_init (GStaticResource *static_resource)
968 gpointer next;
972 next = lazy_register_resources;
973 static_resource->next = next;
975 while (!g_atomic_pointer_compare_and_exchange (&lazy_register_resources, next, static_resource));
979 * g_static_resource_fini:
980 * @static_resource: pointer to a static #GStaticResource.
982 * Finalized a GResource initialized by g_static_resource_init ().
984 * This is normally used by code generated by
985 * <link linkend="glib-compile-resources">glib-compile-resources</link> and is
986 * not typically used by other code.
988 * Since: 2.32
990 void
991 g_static_resource_fini (GStaticResource *static_resource)
993 GResource *resource;
995 g_rw_lock_writer_lock (&resources_lock);
997 register_lazy_static_resources_unlocked ();
999 resource = g_atomic_pointer_get (&static_resource->resource);
1000 if (resource)
1002 g_atomic_pointer_set (&static_resource->resource, NULL);
1003 g_resources_unregister_unlocked (resource);
1004 g_resource_unref (resource);
1007 g_rw_lock_writer_unlock (&resources_lock);
1011 * g_static_resource_get_resource:
1012 * @static_resource: pointer to a static #GStaticResource.
1014 * Gets the GResource that was registred by a call to g_static_resource_init ().
1016 * This is normally used by code generated by
1017 * <link linkend="glib-compile-resources">glib-compile-resources</link> and is
1018 * not typically used by other code.
1020 * Return value: (transfer none): a #GResource.
1022 * Since: 2.32
1024 GResource *
1025 g_static_resource_get_resource (GStaticResource *static_resource)
1027 register_lazy_static_resources ();
1029 return g_atomic_pointer_get (&static_resource->resource);