2011-12-21 21:38:23 +01:00
|
|
|
|
/* GIO - GLib Input, Output and Streaming Library
|
|
|
|
|
*
|
|
|
|
|
* Copyright © 2011 Red Hat, Inc
|
|
|
|
|
*
|
2022-05-18 10:12:45 +02:00
|
|
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
|
*
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
2017-05-27 18:21:30 +02:00
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General
|
2014-01-23 12:58:29 +01:00
|
|
|
|
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Authors: Alexander Larsson <alexl@redhat.com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#include "gresource.h"
|
|
|
|
|
#include <gvdb/gvdb-reader.h>
|
2015-11-23 20:47:44 +01:00
|
|
|
|
#include <gi18n-lib.h>
|
2016-04-27 12:17:07 +02:00
|
|
|
|
#include <gstdio.h>
|
|
|
|
|
#include <gio/gfile.h>
|
|
|
|
|
#include <gio/gioerror.h>
|
2011-12-21 21:38:23 +01:00
|
|
|
|
#include <gio/gmemoryinputstream.h>
|
|
|
|
|
#include <gio/gzlibdecompressor.h>
|
|
|
|
|
#include <gio/gconverterinputstream.h>
|
|
|
|
|
|
2020-12-05 00:40:12 +01:00
|
|
|
|
#include "glib-private.h"
|
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
struct _GResource
|
|
|
|
|
{
|
|
|
|
|
int ref_count;
|
|
|
|
|
|
|
|
|
|
GvdbTable *table;
|
|
|
|
|
};
|
|
|
|
|
|
2012-11-02 00:36:52 +01:00
|
|
|
|
static void register_lazy_static_resources (void);
|
2012-01-31 10:51:44 +01:00
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
G_DEFINE_BOXED_TYPE (GResource, g_resource, g_resource_ref, g_resource_unref)
|
|
|
|
|
|
|
|
|
|
/**
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* GResource:
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
2014-02-06 02:17:46 +01:00
|
|
|
|
* Applications and libraries often contain binary or textual data that is
|
|
|
|
|
* really part of the application, rather than user data. For instance
|
2024-01-15 15:43:53 +01:00
|
|
|
|
* [`GtkBuilder`](https://docs.gtk.org/gtk4/class.Builder.html) `.ui` files,
|
|
|
|
|
* splashscreen images, [class@Gio.Menu] markup XML, CSS files, icons, etc.
|
|
|
|
|
* These are often shipped as files in `$datadir/appname`, or manually
|
|
|
|
|
* included as literal strings in the code.
|
2023-10-25 16:05:43 +02:00
|
|
|
|
*
|
|
|
|
|
* The `GResource` API and the
|
|
|
|
|
* [`glib-compile-resources`](glib-compile-resources.html) program provide a
|
|
|
|
|
* convenient and efficient alternative to this which has some nice properties.
|
|
|
|
|
* You maintain the files as normal files, so it’s easy to edit them, but during
|
|
|
|
|
* the build the files are combined into a binary bundle that is linked into the
|
|
|
|
|
* executable. This means that loading the resource files are efficient (as they
|
|
|
|
|
* are already in memory, shared with other instances) and simple (no need to
|
|
|
|
|
* check for things like I/O errors or locate the files in the filesystem). It
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* also makes it easier to create relocatable applications.
|
|
|
|
|
*
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* Resource files can also be marked as compressed. Such files will be included
|
|
|
|
|
* in the resource bundle in a compressed form, but will be automatically
|
|
|
|
|
* uncompressed when the resource is used. This is very useful e.g. for larger
|
|
|
|
|
* text files that are parsed once (or rarely) and then thrown away.
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
2012-01-14 22:34:15 +01:00
|
|
|
|
* Resource files can also be marked to be preprocessed, by setting the value of the
|
2014-02-06 14:04:52 +01:00
|
|
|
|
* `preprocess` attribute to a comma-separated list of preprocessing options.
|
2012-01-31 16:07:09 +01:00
|
|
|
|
* The only options currently supported are:
|
|
|
|
|
*
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* - `xml-stripblanks` which will use the [`xmllint`](man:xmllint(1)) command
|
|
|
|
|
* to strip ignorable whitespace from the XML file. For this to work,
|
|
|
|
|
* the `XMLLINT` environment variable must be set to the full path to
|
|
|
|
|
* the xmllint executable, or xmllint must be in the `PATH`; otherwise
|
|
|
|
|
* the preprocessing step is skipped.
|
|
|
|
|
*
|
|
|
|
|
* - `to-pixdata` (deprecated since gdk-pixbuf 2.32) which will use the
|
2024-01-15 15:43:53 +01:00
|
|
|
|
* `gdk-pixbuf-pixdata` command to convert images to the [`GdkPixdata`](https://docs.gtk.org/gdk-pixbuf/class.Pixdata.html)
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* format, which allows you to create pixbufs directly using the data inside
|
|
|
|
|
* the resource file, rather than an (uncompressed) copy of it. For this, the
|
|
|
|
|
* `gdk-pixbuf-pixdata` program must be in the `PATH`, or the
|
|
|
|
|
* `GDK_PIXBUF_PIXDATA` environment variable must be set to the full path to
|
|
|
|
|
* the `gdk-pixbuf-pixdata` executable; otherwise the resource compiler will
|
|
|
|
|
* abort. `to-pixdata` has been deprecated since gdk-pixbuf 2.32, as
|
|
|
|
|
* `GResource` supports embedding modern image formats just as well. Instead
|
|
|
|
|
* of using it, embed a PNG or SVG file in your `GResource`.
|
|
|
|
|
*
|
|
|
|
|
* - `json-stripblanks` which will use the
|
|
|
|
|
* [`json-glib-format`](man:json-glib-format(1)) command to strip ignorable
|
|
|
|
|
* whitespace from the JSON file. For this to work, the `JSON_GLIB_FORMAT`
|
|
|
|
|
* environment variable must be set to the full path to the
|
|
|
|
|
* `json-glib-format` executable, or it must be in the `PATH`; otherwise the
|
|
|
|
|
* preprocessing step is skipped. In addition, at least version 1.6 of
|
|
|
|
|
* `json-glib-format` is required.
|
|
|
|
|
*
|
|
|
|
|
* Resource files will be exported in the `GResource` namespace using the
|
2017-05-31 12:08:05 +02:00
|
|
|
|
* combination of the given `prefix` and the filename from the `file` element.
|
|
|
|
|
* The `alias` attribute can be used to alter the filename to expose them at a
|
|
|
|
|
* different location in the resource namespace. Typically, this is used to
|
|
|
|
|
* include files from a different source directory without exposing the source
|
|
|
|
|
* directory in the resource namespace, as in the example below.
|
|
|
|
|
*
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* Resource bundles are created by the
|
|
|
|
|
* [`glib-compile-resources`](glib-compile-resources.html) program
|
|
|
|
|
* which takes an XML file that describes the bundle, and a set of files that
|
|
|
|
|
* the XML references. These are combined into a binary resource bundle.
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
2014-02-01 03:56:33 +01:00
|
|
|
|
* An example resource description:
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* ```xml
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* <?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
* <gresources>
|
|
|
|
|
* <gresource prefix="/org/gtk/Example">
|
|
|
|
|
* <file>data/splashscreen.png</file>
|
|
|
|
|
* <file compressed="true">dialog.ui</file>
|
2012-01-14 22:34:15 +01:00
|
|
|
|
* <file preprocess="xml-stripblanks">menumarkup.xml</file>
|
2017-05-31 12:08:05 +02:00
|
|
|
|
* <file alias="example.css">data/example.css</file>
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* </gresource>
|
|
|
|
|
* </gresources>
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* ```
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* This will create a resource bundle with the following files:
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* ```
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* /org/gtk/Example/data/splashscreen.png
|
|
|
|
|
* /org/gtk/Example/dialog.ui
|
|
|
|
|
* /org/gtk/Example/menumarkup.xml
|
2017-05-31 12:08:05 +02:00
|
|
|
|
* /org/gtk/Example/example.css
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* ```
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* Note that all resources in the process share the same namespace, so use
|
|
|
|
|
* Java-style path prefixes (like in the above example) to avoid conflicts.
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* You can then use [`glib-compile-resources`](glib-compile-resources.html) to
|
|
|
|
|
* compile the XML to a binary bundle that you can load with
|
|
|
|
|
* [func@Gio.Resource.load]. However, it’s more common to use the
|
|
|
|
|
* `--generate-source` and `--generate-header` arguments to create a source file
|
|
|
|
|
* and header to link directly into your application.
|
2015-05-14 09:31:22 +02:00
|
|
|
|
* This will generate `get_resource()`, `register_resource()` and
|
|
|
|
|
* `unregister_resource()` functions, prefixed by the `--c-name` argument passed
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* to [`glib-compile-resources`](glib-compile-resources.html). `get_resource()`
|
|
|
|
|
* returns the generated `GResource` object. The register and unregister
|
|
|
|
|
* functions register the resource so its files can be accessed using
|
|
|
|
|
* [func@Gio.resources_lookup_data].
|
|
|
|
|
*
|
|
|
|
|
* Once a `GResource` has been created and registered all the data in it can be
|
|
|
|
|
* accessed globally in the process by using API calls like
|
|
|
|
|
* [func@Gio.resources_open_stream] to stream the data or
|
|
|
|
|
* [func@Gio.resources_lookup_data] to get a direct pointer to the data. You can
|
|
|
|
|
* also use URIs like `resource:///org/gtk/Example/data/splashscreen.png` with
|
|
|
|
|
* [iface@Gio.File] to access the resource data.
|
|
|
|
|
*
|
2024-01-15 15:43:53 +01:00
|
|
|
|
* Some higher-level APIs, such as [`GtkApplication`](https://docs.gtk.org/gtk4/class.Application.html),
|
|
|
|
|
* will automatically load resources from certain well-known paths in the
|
|
|
|
|
* resource namespace as a convenience. See the documentation for those APIs
|
|
|
|
|
* for details.
|
2017-05-31 12:08:55 +02:00
|
|
|
|
*
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* There are two forms of the generated source, the default version uses the
|
|
|
|
|
* compiler support for constructor and destructor functions (where available)
|
|
|
|
|
* to automatically create and register the `GResource` on startup or library
|
|
|
|
|
* load time. If you pass `--manual-register`, two functions to
|
|
|
|
|
* register/unregister the resource are created instead. This requires an
|
|
|
|
|
* explicit initialization call in your application/library, but it works on all
|
|
|
|
|
* platforms, even on the minor ones where constructors are not supported.
|
|
|
|
|
* (Constructor support is available for at least Win32, Mac OS and Linux.)
|
|
|
|
|
*
|
|
|
|
|
* Note that resource data can point directly into the data segment of e.g. a
|
|
|
|
|
* library, so if you are unloading libraries during runtime you need to be very
|
|
|
|
|
* careful with keeping around pointers to data from a resource, as this goes
|
|
|
|
|
* away when the library is unloaded. However, in practice this is not generally
|
|
|
|
|
* a problem, since most resource accesses are for your own resources, and
|
|
|
|
|
* resource data is often used once, during parsing, and then released.
|
|
|
|
|
*
|
|
|
|
|
* # Overlays
|
|
|
|
|
*
|
|
|
|
|
* When debugging a program or testing a change to an installed version, it is
|
|
|
|
|
* often useful to be able to replace resources in the program or library,
|
|
|
|
|
* without recompiling, for debugging or quick hacking and testing purposes.
|
|
|
|
|
* Since GLib 2.50, it is possible to use the `G_RESOURCE_OVERLAYS` environment
|
|
|
|
|
* variable to selectively overlay resources with replacements from the
|
|
|
|
|
* filesystem. It is a `G_SEARCHPATH_SEPARATOR`-separated list of substitutions
|
|
|
|
|
* to perform during resource lookups. It is ignored when running in a setuid
|
|
|
|
|
* process.
|
2016-04-27 12:17:07 +02:00
|
|
|
|
*
|
|
|
|
|
* A substitution has the form
|
|
|
|
|
*
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* ```
|
|
|
|
|
* /org/gtk/libgtk=/home/desrt/gtk-overlay
|
|
|
|
|
* ```
|
2016-04-27 12:17:07 +02:00
|
|
|
|
*
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* The part before the `=` is the resource subpath for which the overlay
|
|
|
|
|
* applies. The part after is a filesystem path which contains files and
|
|
|
|
|
* subdirectories as you would like to be loaded as resources with the
|
2016-04-27 12:17:07 +02:00
|
|
|
|
* equivalent names.
|
|
|
|
|
*
|
2023-10-25 16:05:43 +02:00
|
|
|
|
* In the example above, if an application tried to load a resource with the
|
|
|
|
|
* resource path `/org/gtk/libgtk/ui/gtkdialog.ui` then `GResource` would check
|
|
|
|
|
* the filesystem path `/home/desrt/gtk-overlay/ui/gtkdialog.ui`. If a file was
|
|
|
|
|
* found there, it would be used instead. This is an overlay, not an outright
|
|
|
|
|
* replacement, which means that if a file is not found at that path, the
|
|
|
|
|
* built-in version will be used instead. Whiteouts are not currently
|
|
|
|
|
* supported.
|
|
|
|
|
*
|
|
|
|
|
* Substitutions must start with a slash, and must not contain a trailing slash
|
|
|
|
|
* before the `=`. The path after the slash should ideally be absolute, but
|
|
|
|
|
* this is not strictly required. It is possible to overlay the location of a
|
|
|
|
|
* single resource with an individual file.
|
2016-04-27 12:17:07 +02:00
|
|
|
|
*
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* Since: 2.32
|
|
|
|
|
*/
|
|
|
|
|
|
2015-02-05 16:20:43 +01:00
|
|
|
|
/**
|
|
|
|
|
* GStaticResource:
|
|
|
|
|
*
|
|
|
|
|
* #GStaticResource is an opaque data structure and can only be accessed
|
|
|
|
|
* using the following functions.
|
|
|
|
|
**/
|
2016-04-27 12:17:07 +02:00
|
|
|
|
typedef gboolean (* CheckCandidate) (const gchar *candidate, gpointer user_data);
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
open_overlay_stream (const gchar *candidate,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
GInputStream **res = (GInputStream **) user_data;
|
|
|
|
|
GError *error = NULL;
|
|
|
|
|
GFile *file;
|
|
|
|
|
|
|
|
|
|
file = g_file_new_for_path (candidate);
|
|
|
|
|
*res = (GInputStream *) g_file_read (file, NULL, &error);
|
|
|
|
|
|
|
|
|
|
if (*res)
|
|
|
|
|
{
|
|
|
|
|
g_message ("Opened file '%s' as a resource overlay", candidate);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND))
|
|
|
|
|
g_warning ("Can't open overlay file '%s': %s", candidate, error->message);
|
|
|
|
|
g_error_free (error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_object_unref (file);
|
|
|
|
|
|
|
|
|
|
return *res != NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
get_overlay_bytes (const gchar *candidate,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
GBytes **res = (GBytes **) user_data;
|
|
|
|
|
GMappedFile *mapped_file;
|
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
|
|
mapped_file = g_mapped_file_new (candidate, FALSE, &error);
|
|
|
|
|
|
|
|
|
|
if (mapped_file)
|
|
|
|
|
{
|
|
|
|
|
g_message ("Mapped file '%s' as a resource overlay", candidate);
|
|
|
|
|
*res = g_mapped_file_get_bytes (mapped_file);
|
|
|
|
|
g_mapped_file_unref (mapped_file);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (!g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT))
|
|
|
|
|
g_warning ("Can't mmap overlay file '%s': %s", candidate, error->message);
|
|
|
|
|
g_error_free (error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return *res != NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
enumerate_overlay_dir (const gchar *candidate,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
GHashTable **hash = (GHashTable **) user_data;
|
|
|
|
|
GError *error = NULL;
|
|
|
|
|
GDir *dir;
|
|
|
|
|
const gchar *name;
|
|
|
|
|
|
|
|
|
|
dir = g_dir_open (candidate, 0, &error);
|
|
|
|
|
if (dir)
|
|
|
|
|
{
|
|
|
|
|
if (*hash == NULL)
|
|
|
|
|
/* note: keep in sync with same line below */
|
|
|
|
|
*hash = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
|
|
|
|
|
|
|
|
|
|
g_message ("Enumerating directory '%s' as resource overlay", candidate);
|
|
|
|
|
|
|
|
|
|
while ((name = g_dir_read_name (dir)))
|
|
|
|
|
{
|
|
|
|
|
gchar *fullname = g_build_filename (candidate, name, NULL);
|
|
|
|
|
|
|
|
|
|
/* match gvdb behaviour by suffixing "/" on dirs */
|
2016-05-04 16:59:22 +02:00
|
|
|
|
if (g_file_test (fullname, G_FILE_TEST_IS_DIR))
|
2016-04-27 12:17:07 +02:00
|
|
|
|
g_hash_table_add (*hash, g_strconcat (name, "/", NULL));
|
|
|
|
|
else
|
|
|
|
|
g_hash_table_add (*hash, g_strdup (name));
|
|
|
|
|
|
|
|
|
|
g_free (fullname);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_dir_close (dir);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (!g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT))
|
|
|
|
|
g_warning ("Can't enumerate overlay directory '%s': %s", candidate, error->message);
|
|
|
|
|
g_error_free (error);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We may want to enumerate results from more than one overlay
|
|
|
|
|
* directory.
|
|
|
|
|
*/
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-27 06:13:22 +01:00
|
|
|
|
typedef struct {
|
|
|
|
|
gsize size;
|
|
|
|
|
guint32 flags;
|
|
|
|
|
} InfoData;
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
get_overlay_info (const gchar *candidate,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
InfoData *info = user_data;
|
|
|
|
|
GStatBuf buf;
|
|
|
|
|
|
|
|
|
|
if (g_stat (candidate, &buf) < 0)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
info->size = buf.st_size;
|
|
|
|
|
info->flags = G_RESOURCE_FLAGS_NONE;
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-27 12:17:07 +02:00
|
|
|
|
static gboolean
|
|
|
|
|
g_resource_find_overlay (const gchar *path,
|
|
|
|
|
CheckCandidate check,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
/* This is a null-terminated array of replacement strings (with '=' inside) */
|
|
|
|
|
static const gchar * const *overlay_dirs;
|
|
|
|
|
gboolean res = FALSE;
|
2024-04-25 01:37:47 +02:00
|
|
|
|
size_t path_len = 0;
|
2016-04-27 12:17:07 +02:00
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
|
|
/* We try to be very fast in case there are no overlays. Otherwise,
|
|
|
|
|
* we can take a bit more time...
|
|
|
|
|
*/
|
|
|
|
|
|
2023-09-12 08:59:52 +02:00
|
|
|
|
if (g_once_init_enter_pointer (&overlay_dirs))
|
2016-04-27 12:17:07 +02:00
|
|
|
|
{
|
2020-12-05 00:40:12 +01:00
|
|
|
|
gboolean is_setuid = GLIB_PRIVATE_CALL (g_check_setuid) ();
|
2016-04-27 12:17:07 +02:00
|
|
|
|
const gchar * const *result;
|
|
|
|
|
const gchar *envvar;
|
|
|
|
|
|
2020-12-05 00:40:12 +01:00
|
|
|
|
/* Don’t load overlays if setuid, as they could allow reading privileged
|
|
|
|
|
* files. */
|
|
|
|
|
envvar = !is_setuid ? g_getenv ("G_RESOURCE_OVERLAYS") : NULL;
|
2016-04-27 12:17:07 +02:00
|
|
|
|
if (envvar != NULL)
|
|
|
|
|
{
|
|
|
|
|
gchar **parts;
|
2022-01-19 18:49:56 +01:00
|
|
|
|
gint j;
|
2016-04-27 12:17:07 +02:00
|
|
|
|
|
2019-02-08 21:27:23 +01:00
|
|
|
|
parts = g_strsplit (envvar, G_SEARCHPATH_SEPARATOR_S, 0);
|
2016-04-27 12:17:07 +02:00
|
|
|
|
|
|
|
|
|
/* Sanity check the parts, dropping those that are invalid.
|
|
|
|
|
* 'i' may grow faster than 'j'.
|
|
|
|
|
*/
|
|
|
|
|
for (i = j = 0; parts[i]; i++)
|
|
|
|
|
{
|
|
|
|
|
gchar *part = parts[i];
|
|
|
|
|
gchar *eq;
|
|
|
|
|
|
|
|
|
|
eq = strchr (part, '=');
|
|
|
|
|
if (eq == NULL)
|
|
|
|
|
{
|
|
|
|
|
g_critical ("G_RESOURCE_OVERLAYS segment '%s' lacks '='. Ignoring.", part);
|
|
|
|
|
g_free (part);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (eq == part)
|
|
|
|
|
{
|
|
|
|
|
g_critical ("G_RESOURCE_OVERLAYS segment '%s' lacks path before '='. Ignoring.", part);
|
|
|
|
|
g_free (part);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (eq[1] == '\0')
|
|
|
|
|
{
|
|
|
|
|
g_critical ("G_RESOURCE_OVERLAYS segment '%s' lacks path after '='. Ignoring", part);
|
|
|
|
|
g_free (part);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (part[0] != '/')
|
|
|
|
|
{
|
|
|
|
|
g_critical ("G_RESOURCE_OVERLAYS segment '%s' lacks leading '/'. Ignoring.", part);
|
|
|
|
|
g_free (part);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (eq[-1] == '/')
|
|
|
|
|
{
|
|
|
|
|
g_critical ("G_RESOURCE_OVERLAYS segment '%s' has trailing '/' before '='. Ignoring", part);
|
|
|
|
|
g_free (part);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-08 21:27:23 +01:00
|
|
|
|
if (!g_path_is_absolute (eq + 1))
|
2016-04-27 12:17:07 +02:00
|
|
|
|
{
|
2019-02-08 21:27:23 +01:00
|
|
|
|
g_critical ("G_RESOURCE_OVERLAYS segment '%s' does not have an absolute path after '='. Ignoring", part);
|
2016-04-27 12:17:07 +02:00
|
|
|
|
g_free (part);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_message ("Adding GResources overlay '%s'", part);
|
|
|
|
|
parts[j++] = part;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
parts[j] = NULL;
|
|
|
|
|
|
|
|
|
|
result = (const gchar **) parts;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* We go out of the way to avoid malloc() in the normal case
|
|
|
|
|
* where the environment variable is not set.
|
|
|
|
|
*/
|
2022-01-19 18:49:56 +01:00
|
|
|
|
static const gchar *const empty_strv[0 + 1] = { 0 };
|
2016-04-27 12:17:07 +02:00
|
|
|
|
result = empty_strv;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-12 08:59:52 +02:00
|
|
|
|
g_once_init_leave_pointer (&overlay_dirs, result);
|
2016-04-27 12:17:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; overlay_dirs[i]; i++)
|
|
|
|
|
{
|
|
|
|
|
const gchar *src;
|
2024-04-25 01:37:47 +02:00
|
|
|
|
size_t src_len;
|
2016-04-27 12:17:07 +02:00
|
|
|
|
const gchar *dst;
|
2024-04-25 01:37:47 +02:00
|
|
|
|
size_t dst_len;
|
2016-04-27 12:17:07 +02:00
|
|
|
|
gchar *candidate;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
gchar *eq;
|
|
|
|
|
|
|
|
|
|
/* split the overlay into src/dst */
|
|
|
|
|
src = overlay_dirs[i];
|
|
|
|
|
eq = strchr (src, '=');
|
|
|
|
|
g_assert (eq); /* we checked this already */
|
|
|
|
|
src_len = eq - src;
|
|
|
|
|
dst = eq + 1;
|
|
|
|
|
/* hold off on dst_len because we will probably fail the checks below */
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-25 01:37:47 +02:00
|
|
|
|
if (i == 0)
|
2016-04-27 12:17:07 +02:00
|
|
|
|
path_len = strlen (path);
|
|
|
|
|
|
|
|
|
|
/* The entire path is too short to match the source */
|
|
|
|
|
if (path_len < src_len)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* It doesn't match the source */
|
|
|
|
|
if (memcmp (path, src, src_len) != 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* The prefix matches, but it's not a complete path component */
|
|
|
|
|
if (path[src_len] && path[src_len] != '/')
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* OK. Now we need this. */
|
|
|
|
|
dst_len = strlen (dst);
|
|
|
|
|
|
|
|
|
|
/* The candidate will be composed of:
|
|
|
|
|
*
|
|
|
|
|
* dst + remaining_path + nul
|
|
|
|
|
*/
|
|
|
|
|
candidate = g_malloc (dst_len + (path_len - src_len) + 1);
|
|
|
|
|
memcpy (candidate, dst, dst_len);
|
|
|
|
|
memcpy (candidate + dst_len, path + src_len, path_len - src_len);
|
|
|
|
|
candidate[dst_len + (path_len - src_len)] = '\0';
|
|
|
|
|
|
|
|
|
|
/* No matter what, 'r' is what we need, including the case where
|
|
|
|
|
* we are trying to enumerate a directory.
|
|
|
|
|
*/
|
|
|
|
|
res = (* check) (candidate, user_data);
|
|
|
|
|
g_free (candidate);
|
|
|
|
|
|
|
|
|
|
if (res)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
2015-02-05 16:20:43 +01:00
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
/**
|
|
|
|
|
* g_resource_error_quark:
|
|
|
|
|
*
|
|
|
|
|
* Gets the #GResource Error Quark.
|
|
|
|
|
*
|
2014-02-20 01:35:23 +01:00
|
|
|
|
* Returns: a #GQuark
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
*/
|
2012-08-28 19:15:29 +02:00
|
|
|
|
G_DEFINE_QUARK (g-resource-error-quark, g_resource_error)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* g_resource_ref:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @resource: A #GResource
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
2015-06-12 00:56:25 +02:00
|
|
|
|
* Atomically increments the reference count of @resource by one. This
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* function is MT-safe and may be called from any thread.
|
|
|
|
|
*
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* Returns: The passed in #GResource
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
GResource *
|
|
|
|
|
g_resource_ref (GResource *resource)
|
|
|
|
|
{
|
|
|
|
|
g_atomic_int_inc (&resource->ref_count);
|
|
|
|
|
return resource;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* g_resource_unref:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @resource: A #GResource
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Atomically decrements the reference count of @resource by one. If the
|
2015-06-12 00:56:25 +02:00
|
|
|
|
* reference count drops to 0, all memory allocated by the resource is
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* released. This function is MT-safe and may be called from any
|
|
|
|
|
* thread.
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
g_resource_unref (GResource *resource)
|
|
|
|
|
{
|
|
|
|
|
if (g_atomic_int_dec_and_test (&resource->ref_count))
|
|
|
|
|
{
|
2018-08-01 15:31:57 +02:00
|
|
|
|
gvdb_table_free (resource->table);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
g_free (resource);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-05 19:10:14 +01:00
|
|
|
|
/*< internal >
|
2012-02-05 19:55:45 +01:00
|
|
|
|
* g_resource_new_from_table:
|
|
|
|
|
* @table: (transfer full): a GvdbTable
|
|
|
|
|
*
|
|
|
|
|
* Returns: (transfer full): a new #GResource for @table
|
|
|
|
|
*/
|
|
|
|
|
static GResource *
|
|
|
|
|
g_resource_new_from_table (GvdbTable *table)
|
|
|
|
|
{
|
|
|
|
|
GResource *resource;
|
|
|
|
|
|
|
|
|
|
resource = g_new (GResource, 1);
|
|
|
|
|
resource->ref_count = 1;
|
|
|
|
|
resource->table = table;
|
|
|
|
|
|
|
|
|
|
return resource;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-01 14:03:07 +02:00
|
|
|
|
static void
|
|
|
|
|
g_resource_error_from_gvdb_table_error (GError **g_resource_error,
|
|
|
|
|
GError *gvdb_table_error /* (transfer full) */)
|
|
|
|
|
{
|
|
|
|
|
if (g_error_matches (gvdb_table_error, G_FILE_ERROR, G_FILE_ERROR_INVAL))
|
|
|
|
|
g_set_error_literal (g_resource_error,
|
|
|
|
|
G_RESOURCE_ERROR, G_RESOURCE_ERROR_INTERNAL,
|
|
|
|
|
gvdb_table_error->message);
|
|
|
|
|
else
|
|
|
|
|
g_propagate_error (g_resource_error, g_steal_pointer (&gvdb_table_error));
|
|
|
|
|
g_clear_error (&gvdb_table_error);
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
/**
|
|
|
|
|
* g_resource_new_from_data:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @data: A #GBytes
|
|
|
|
|
* @error: return location for a #GError, or %NULL
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Creates a GResource from a reference to the binary resource bundle.
|
|
|
|
|
* This will keep a reference to @data while the resource lives, so
|
|
|
|
|
* the data should not be modified or freed.
|
|
|
|
|
*
|
|
|
|
|
* If you want to use this resource in the global resource namespace you need
|
|
|
|
|
* to register it with g_resources_register().
|
|
|
|
|
*
|
2017-11-13 11:43:09 +01:00
|
|
|
|
* Note: @data must be backed by memory that is at least pointer aligned.
|
2017-11-13 11:47:06 +01:00
|
|
|
|
* Otherwise this function will internally create a copy of the memory since
|
|
|
|
|
* GLib 2.56, or in older versions fail and exit the process.
|
2017-11-13 11:43:09 +01:00
|
|
|
|
*
|
2018-08-01 14:03:07 +02:00
|
|
|
|
* If @data is empty or corrupt, %G_RESOURCE_ERROR_INTERNAL will be returned.
|
|
|
|
|
*
|
2014-02-20 01:35:23 +01:00
|
|
|
|
* Returns: (transfer full): a new #GResource, or %NULL on error
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
GResource *
|
2012-04-07 03:22:17 +02:00
|
|
|
|
g_resource_new_from_data (GBytes *data,
|
|
|
|
|
GError **error)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
GvdbTable *table;
|
2017-11-13 11:47:06 +01:00
|
|
|
|
gboolean unref_data = FALSE;
|
2018-08-01 14:03:07 +02:00
|
|
|
|
GError *local_error = NULL;
|
2017-11-13 11:47:06 +01:00
|
|
|
|
|
|
|
|
|
if (((guintptr) g_bytes_get_data (data, NULL)) % sizeof (gpointer) != 0)
|
|
|
|
|
{
|
|
|
|
|
data = g_bytes_new (g_bytes_get_data (data, NULL),
|
|
|
|
|
g_bytes_get_size (data));
|
|
|
|
|
unref_data = TRUE;
|
|
|
|
|
}
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
2018-08-01 14:03:07 +02:00
|
|
|
|
table = gvdb_table_new_from_bytes (data, TRUE, &local_error);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
2017-11-13 11:47:06 +01:00
|
|
|
|
if (unref_data)
|
|
|
|
|
g_bytes_unref (data);
|
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
if (table == NULL)
|
2018-08-01 14:03:07 +02:00
|
|
|
|
{
|
|
|
|
|
g_resource_error_from_gvdb_table_error (error, g_steal_pointer (&local_error));
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
2012-02-05 19:55:45 +01:00
|
|
|
|
return g_resource_new_from_table (table);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* g_resource_load:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @filename: (type filename): the path of a filename to load, in the GLib filename encoding
|
|
|
|
|
* @error: return location for a #GError, or %NULL
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Loads a binary resource bundle and creates a #GResource representation of it, allowing
|
|
|
|
|
* you to query it for data.
|
|
|
|
|
*
|
|
|
|
|
* If you want to use this resource in the global resource namespace you need
|
|
|
|
|
* to register it with g_resources_register().
|
|
|
|
|
*
|
2018-08-01 14:03:07 +02:00
|
|
|
|
* If @filename is empty or the data in it is corrupt,
|
|
|
|
|
* %G_RESOURCE_ERROR_INTERNAL will be returned. If @filename doesn’t exist, or
|
|
|
|
|
* there is an error in reading it, an error from g_mapped_file_new() will be
|
|
|
|
|
* returned.
|
|
|
|
|
*
|
2014-02-20 01:35:23 +01:00
|
|
|
|
* Returns: (transfer full): a new #GResource, or %NULL on error
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
GResource *
|
2012-04-07 03:22:17 +02:00
|
|
|
|
g_resource_load (const gchar *filename,
|
|
|
|
|
GError **error)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
GvdbTable *table;
|
2018-08-01 14:03:07 +02:00
|
|
|
|
GError *local_error = NULL;
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
2018-08-01 14:03:07 +02:00
|
|
|
|
table = gvdb_table_new (filename, FALSE, &local_error);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
if (table == NULL)
|
2018-08-01 14:03:07 +02:00
|
|
|
|
{
|
|
|
|
|
g_resource_error_from_gvdb_table_error (error, g_steal_pointer (&local_error));
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
2012-02-05 19:55:45 +01:00
|
|
|
|
return g_resource_new_from_table (table);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
2024-09-05 12:47:12 +02:00
|
|
|
|
static void
|
|
|
|
|
set_error_not_found (GError **error,
|
|
|
|
|
const char *path)
|
|
|
|
|
{
|
2024-09-12 15:42:28 +02:00
|
|
|
|
/* Avoid looking up the translation if it’s not going to be used. This is a hot path. */
|
|
|
|
|
if (error != NULL)
|
|
|
|
|
g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND,
|
|
|
|
|
_("The resource at “%s” does not exist"),
|
|
|
|
|
path);
|
2024-09-05 12:47:12 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The only error this can return is %G_RESOURCE_ERROR_NOT_FOUND. */
|
2018-07-05 12:19:20 +02:00
|
|
|
|
static gboolean
|
|
|
|
|
do_lookup (GResource *resource,
|
|
|
|
|
const gchar *path,
|
|
|
|
|
GResourceLookupFlags lookup_flags,
|
|
|
|
|
gsize *size,
|
|
|
|
|
guint32 *flags,
|
|
|
|
|
const void **data,
|
|
|
|
|
gsize *data_size,
|
|
|
|
|
GError **error)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
char *free_path = NULL;
|
|
|
|
|
gsize path_len;
|
|
|
|
|
gboolean res = FALSE;
|
|
|
|
|
GVariant *value;
|
|
|
|
|
|
2018-07-05 13:01:48 +02:00
|
|
|
|
/* Drop any trailing slash. */
|
2011-12-21 21:38:23 +01:00
|
|
|
|
path_len = strlen (path);
|
2018-07-05 13:01:48 +02:00
|
|
|
|
if (path_len >= 1 && path[path_len-1] == '/')
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
path = free_path = g_strdup (path);
|
|
|
|
|
free_path[path_len-1] = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-09 15:34:10 +02:00
|
|
|
|
value = gvdb_table_get_raw_value (resource->table, path);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
|
|
|
|
if (value == NULL)
|
|
|
|
|
{
|
2024-09-05 12:47:12 +02:00
|
|
|
|
set_error_not_found (error, path);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
guint32 _size, _flags;
|
|
|
|
|
GVariant *array;
|
|
|
|
|
|
|
|
|
|
g_variant_get (value, "(uu@ay)",
|
2012-04-07 03:22:17 +02:00
|
|
|
|
&_size,
|
|
|
|
|
&_flags,
|
|
|
|
|
&array);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
2012-04-09 15:34:10 +02:00
|
|
|
|
_size = GUINT32_FROM_LE (_size);
|
|
|
|
|
_flags = GUINT32_FROM_LE (_flags);
|
|
|
|
|
|
2012-02-05 16:08:10 +01:00
|
|
|
|
if (size)
|
|
|
|
|
*size = _size;
|
|
|
|
|
if (flags)
|
|
|
|
|
*flags = _flags;
|
|
|
|
|
if (data)
|
|
|
|
|
*data = g_variant_get_data (array);
|
|
|
|
|
if (data_size)
|
|
|
|
|
{
|
|
|
|
|
/* Don't report trailing newline that non-compressed files has */
|
|
|
|
|
if (_flags & G_RESOURCE_FLAGS_COMPRESSED)
|
|
|
|
|
*data_size = g_variant_get_size (array);
|
|
|
|
|
else
|
|
|
|
|
*data_size = g_variant_get_size (array) - 1;
|
|
|
|
|
}
|
|
|
|
|
g_variant_unref (array);
|
2012-02-05 16:10:48 +01:00
|
|
|
|
g_variant_unref (value);
|
2012-02-05 16:08:10 +01:00
|
|
|
|
|
|
|
|
|
res = TRUE;
|
2011-12-21 21:38:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_free (free_path);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* g_resource_open_stream:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @resource: A #GResource
|
|
|
|
|
* @path: A pathname inside the resource
|
|
|
|
|
* @lookup_flags: A #GResourceLookupFlags
|
|
|
|
|
* @error: return location for a #GError, or %NULL
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Looks for a file at the specified @path in the resource and
|
|
|
|
|
* returns a #GInputStream that lets you read the data.
|
|
|
|
|
*
|
|
|
|
|
* @lookup_flags controls the behaviour of the lookup.
|
|
|
|
|
*
|
2024-09-05 13:03:18 +02:00
|
|
|
|
* The only error this can return is %G_RESOURCE_ERROR_NOT_FOUND, if @path was
|
|
|
|
|
* not found in @resource.
|
|
|
|
|
*
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* Returns: (transfer full): #GInputStream or %NULL on error.
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* Free the returned object with g_object_unref()
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
GInputStream *
|
2012-04-07 03:22:17 +02:00
|
|
|
|
g_resource_open_stream (GResource *resource,
|
|
|
|
|
const gchar *path,
|
|
|
|
|
GResourceLookupFlags lookup_flags,
|
|
|
|
|
GError **error)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
const void *data;
|
|
|
|
|
gsize data_size;
|
|
|
|
|
guint32 flags;
|
|
|
|
|
GInputStream *stream, *stream2;
|
|
|
|
|
|
|
|
|
|
if (!do_lookup (resource, path, lookup_flags, NULL, &flags, &data, &data_size, error))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
stream = g_memory_input_stream_new_from_data (data, data_size, NULL);
|
|
|
|
|
g_object_set_data_full (G_OBJECT (stream), "g-resource",
|
2012-04-07 03:22:17 +02:00
|
|
|
|
g_resource_ref (resource),
|
|
|
|
|
(GDestroyNotify)g_resource_unref);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
|
|
|
|
if (flags & G_RESOURCE_FLAGS_COMPRESSED)
|
|
|
|
|
{
|
|
|
|
|
GZlibDecompressor *decompressor =
|
2012-04-07 03:22:17 +02:00
|
|
|
|
g_zlib_decompressor_new (G_ZLIB_COMPRESSOR_FORMAT_ZLIB);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
|
|
|
|
stream2 = g_converter_input_stream_new (stream, G_CONVERTER (decompressor));
|
|
|
|
|
g_object_unref (decompressor);
|
|
|
|
|
g_object_unref (stream);
|
|
|
|
|
stream = stream2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return stream;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-05 13:14:15 +02:00
|
|
|
|
static GBytes *resource_to_bytes (GResource *resource,
|
|
|
|
|
const char *path,
|
|
|
|
|
size_t size,
|
|
|
|
|
const void *data,
|
|
|
|
|
size_t data_size,
|
|
|
|
|
guint32 flags,
|
|
|
|
|
GError **error);
|
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
/**
|
|
|
|
|
* g_resource_lookup_data:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @resource: A #GResource
|
|
|
|
|
* @path: A pathname inside the resource
|
|
|
|
|
* @lookup_flags: A #GResourceLookupFlags
|
|
|
|
|
* @error: return location for a #GError, or %NULL
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Looks for a file at the specified @path in the resource and
|
|
|
|
|
* returns a #GBytes that lets you directly access the data in
|
|
|
|
|
* memory.
|
|
|
|
|
*
|
|
|
|
|
* The data is always followed by a zero byte, so you
|
|
|
|
|
* can safely use the data as a C string. However, that byte
|
|
|
|
|
* is not included in the size of the GBytes.
|
|
|
|
|
*
|
|
|
|
|
* For uncompressed resource files this is a pointer directly into
|
|
|
|
|
* the resource bundle, which is typically in some readonly data section
|
|
|
|
|
* in the program binary. For compressed files we allocate memory on
|
|
|
|
|
* the heap and automatically uncompress the data.
|
|
|
|
|
*
|
|
|
|
|
* @lookup_flags controls the behaviour of the lookup.
|
|
|
|
|
*
|
2024-09-05 13:20:01 +02:00
|
|
|
|
* This can return error %G_RESOURCE_ERROR_NOT_FOUND if @path was not found in
|
|
|
|
|
* @resource, or %G_RESOURCE_ERROR_INTERNAL if decompression of a compressed
|
|
|
|
|
* resource failed.
|
|
|
|
|
*
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* Returns: (transfer full): #GBytes or %NULL on error.
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* Free the returned object with g_bytes_unref()
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
GBytes *
|
2012-04-07 03:22:17 +02:00
|
|
|
|
g_resource_lookup_data (GResource *resource,
|
|
|
|
|
const gchar *path,
|
|
|
|
|
GResourceLookupFlags lookup_flags,
|
|
|
|
|
GError **error)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
const void *data;
|
|
|
|
|
guint32 flags;
|
|
|
|
|
gsize data_size;
|
|
|
|
|
gsize size;
|
|
|
|
|
|
|
|
|
|
if (!do_lookup (resource, path, lookup_flags, &size, &flags, &data, &data_size, error))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2024-09-05 13:14:15 +02:00
|
|
|
|
return resource_to_bytes (resource, path, size, data, data_size, flags, error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static GBytes *
|
|
|
|
|
resource_to_bytes (GResource *resource,
|
|
|
|
|
const char *path,
|
|
|
|
|
size_t size,
|
|
|
|
|
const void *data,
|
|
|
|
|
size_t data_size,
|
|
|
|
|
guint32 flags,
|
|
|
|
|
GError **error)
|
|
|
|
|
{
|
2020-11-14 20:02:31 +01:00
|
|
|
|
if (size == 0)
|
|
|
|
|
return g_bytes_new_with_free_func ("", 0, (GDestroyNotify) g_resource_unref, g_resource_ref (resource));
|
|
|
|
|
else if (flags & G_RESOURCE_FLAGS_COMPRESSED)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
char *uncompressed, *d;
|
|
|
|
|
const char *s;
|
|
|
|
|
GConverterResult res;
|
|
|
|
|
gsize d_size, s_size;
|
|
|
|
|
gsize bytes_read, bytes_written;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
GZlibDecompressor *decompressor =
|
2012-04-07 03:22:17 +02:00
|
|
|
|
g_zlib_decompressor_new (G_ZLIB_COMPRESSOR_FORMAT_ZLIB);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
|
|
|
|
uncompressed = g_malloc (size + 1);
|
|
|
|
|
|
|
|
|
|
s = data;
|
|
|
|
|
s_size = data_size;
|
|
|
|
|
d = uncompressed;
|
|
|
|
|
d_size = size;
|
|
|
|
|
|
|
|
|
|
do
|
2012-04-07 03:22:17 +02:00
|
|
|
|
{
|
|
|
|
|
res = g_converter_convert (G_CONVERTER (decompressor),
|
|
|
|
|
s, s_size,
|
|
|
|
|
d, d_size,
|
|
|
|
|
G_CONVERTER_INPUT_AT_END,
|
|
|
|
|
&bytes_read,
|
|
|
|
|
&bytes_written,
|
|
|
|
|
NULL);
|
|
|
|
|
if (res == G_CONVERTER_ERROR)
|
|
|
|
|
{
|
|
|
|
|
g_free (uncompressed);
|
2012-02-05 16:18:34 +01:00
|
|
|
|
g_object_unref (decompressor);
|
|
|
|
|
|
2012-04-07 03:22:17 +02:00
|
|
|
|
g_set_error (error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_INTERNAL,
|
2016-09-30 05:47:15 +02:00
|
|
|
|
_("The resource at “%s” failed to decompress"),
|
2012-04-07 03:22:17 +02:00
|
|
|
|
path);
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
s += bytes_read;
|
|
|
|
|
s_size -= bytes_read;
|
|
|
|
|
d += bytes_written;
|
|
|
|
|
d_size -= bytes_written;
|
|
|
|
|
}
|
2011-12-21 21:38:23 +01:00
|
|
|
|
while (res != G_CONVERTER_FINISHED);
|
|
|
|
|
|
|
|
|
|
uncompressed[size] = 0; /* Zero terminate */
|
|
|
|
|
|
2012-02-05 16:18:34 +01:00
|
|
|
|
g_object_unref (decompressor);
|
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
return g_bytes_new_take (uncompressed, size);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return g_bytes_new_with_free_func (data, data_size, (GDestroyNotify)g_resource_unref, g_resource_ref (resource));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* g_resource_get_info:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @resource: A #GResource
|
|
|
|
|
* @path: A pathname inside the resource
|
|
|
|
|
* @lookup_flags: A #GResourceLookupFlags
|
2016-10-29 03:29:02 +02:00
|
|
|
|
* @size: (out) (optional): a location to place the length of the contents of the file,
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* or %NULL if the length is not needed
|
2016-10-29 03:29:02 +02:00
|
|
|
|
* @flags: (out) (optional): a location to place the flags about the file,
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* or %NULL if the length is not needed
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @error: return location for a #GError, or %NULL
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Looks for a file at the specified @path in the resource and
|
|
|
|
|
* if found returns information about it.
|
|
|
|
|
*
|
|
|
|
|
* @lookup_flags controls the behaviour of the lookup.
|
|
|
|
|
*
|
2024-09-05 13:09:21 +02:00
|
|
|
|
* The only error this can return is %G_RESOURCE_ERROR_NOT_FOUND, if @path was
|
|
|
|
|
* not found in @resource.
|
|
|
|
|
*
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* Returns: %TRUE if the file was found. %FALSE if there were errors
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
gboolean
|
2012-04-07 03:22:17 +02:00
|
|
|
|
g_resource_get_info (GResource *resource,
|
|
|
|
|
const gchar *path,
|
|
|
|
|
GResourceLookupFlags lookup_flags,
|
|
|
|
|
gsize *size,
|
|
|
|
|
guint32 *flags,
|
|
|
|
|
GError **error)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
return do_lookup (resource, path, lookup_flags, size, flags, NULL, NULL, error);
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-06 06:24:39 +02:00
|
|
|
|
static inline const char *
|
|
|
|
|
ensure_slash_suffix (const char *path,
|
|
|
|
|
char *local_str,
|
|
|
|
|
gsize len,
|
|
|
|
|
char **free_path)
|
|
|
|
|
{
|
|
|
|
|
gsize path_len;
|
|
|
|
|
|
|
|
|
|
path_len = strlen (path);
|
|
|
|
|
|
|
|
|
|
if G_UNLIKELY (path[path_len-1] != '/')
|
|
|
|
|
{
|
|
|
|
|
if (path_len < len - 2)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* We got a path that does not have a trailing /. It is not the
|
|
|
|
|
* ideal use of this API as we require trailing / for our lookup
|
|
|
|
|
* into gvdb. Some degenerate application configurations can hit
|
|
|
|
|
* this code path quite a bit, so we try to avoid using the
|
|
|
|
|
* g_strconcat()/g_free().
|
|
|
|
|
*/
|
|
|
|
|
memcpy (local_str, path, path_len);
|
|
|
|
|
local_str[path_len] = '/';
|
|
|
|
|
local_str[path_len+1] = 0;
|
|
|
|
|
return local_str;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
*free_path = g_strconcat (path, "/", NULL);
|
|
|
|
|
return *free_path;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return path;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
/**
|
|
|
|
|
* g_resource_enumerate_children:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @resource: A #GResource
|
|
|
|
|
* @path: A pathname inside the resource
|
|
|
|
|
* @lookup_flags: A #GResourceLookupFlags
|
|
|
|
|
* @error: return location for a #GError, or %NULL
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Returns all the names of children at the specified @path in the resource.
|
|
|
|
|
* The return result is a %NULL terminated list of strings which should
|
|
|
|
|
* be released with g_strfreev().
|
|
|
|
|
*
|
2015-07-28 11:13:12 +02:00
|
|
|
|
* If @path is invalid or does not exist in the #GResource,
|
|
|
|
|
* %G_RESOURCE_ERROR_NOT_FOUND will be returned.
|
|
|
|
|
*
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* @lookup_flags controls the behaviour of the lookup.
|
|
|
|
|
*
|
|
|
|
|
* Returns: (array zero-terminated=1) (transfer full): an array of constant strings
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
2012-04-07 03:22:17 +02:00
|
|
|
|
gchar **
|
|
|
|
|
g_resource_enumerate_children (GResource *resource,
|
|
|
|
|
const gchar *path,
|
|
|
|
|
GResourceLookupFlags lookup_flags,
|
|
|
|
|
GError **error)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
2024-09-06 06:24:39 +02:00
|
|
|
|
/* Size of 256 is arbitrarily chosen based on being large enough
|
2017-11-13 08:04:12 +01:00
|
|
|
|
* for pretty much everything we come across, but not cumbersome
|
|
|
|
|
* on the stack. It also matches common cacheline sizes.
|
|
|
|
|
*/
|
2024-09-06 06:24:39 +02:00
|
|
|
|
gchar local_str[256];
|
|
|
|
|
const char *path_with_slash;
|
|
|
|
|
char *free_path = NULL;
|
|
|
|
|
gchar **children;
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
|
|
|
|
if (*path == 0)
|
|
|
|
|
{
|
2024-09-05 12:47:12 +02:00
|
|
|
|
set_error_not_found (error, path);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-06 06:24:39 +02:00
|
|
|
|
path_with_slash = ensure_slash_suffix (path, local_str, sizeof (local_str), &free_path);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
|
|
|
|
children = gvdb_table_list (resource->table, path_with_slash);
|
2024-09-06 06:24:39 +02:00
|
|
|
|
|
2017-11-13 08:04:12 +01:00
|
|
|
|
g_free (free_path);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
|
|
|
|
if (children == NULL)
|
|
|
|
|
{
|
2024-09-05 12:47:12 +02:00
|
|
|
|
set_error_not_found (error, path);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return children;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-06 06:25:05 +02:00
|
|
|
|
/**
|
|
|
|
|
* g_resource_has_children:
|
|
|
|
|
* @resource: A #GResource
|
|
|
|
|
* @path: A pathname inside the resource
|
|
|
|
|
*
|
|
|
|
|
* Returns whether the specified @path in the resource
|
|
|
|
|
* has children.
|
|
|
|
|
*
|
|
|
|
|
* Returns: %TRUE if @path has children
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.84
|
|
|
|
|
*/
|
|
|
|
|
gboolean
|
|
|
|
|
g_resource_has_children (GResource *resource,
|
|
|
|
|
const char *path)
|
|
|
|
|
{
|
|
|
|
|
/* Size of 256 is arbitrarily chosen based on being large enough
|
|
|
|
|
* for pretty much everything we come across, but not cumbersome
|
|
|
|
|
* on the stack. It also matches common cacheline sizes.
|
|
|
|
|
*/
|
|
|
|
|
char local_str[256];
|
|
|
|
|
const char *path_with_slash;
|
|
|
|
|
guint n;
|
|
|
|
|
char *freeme = NULL;
|
|
|
|
|
|
|
|
|
|
if (*path == 0)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
path_with_slash = ensure_slash_suffix (path, local_str, sizeof (local_str), &freeme);
|
|
|
|
|
|
|
|
|
|
n = gvdb_table_n_children (resource->table, path_with_slash);
|
|
|
|
|
|
|
|
|
|
g_free (freeme);
|
|
|
|
|
|
|
|
|
|
return n > 0;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
static GRWLock resources_lock;
|
2012-01-16 10:38:35 +01:00
|
|
|
|
static GList *registered_resources;
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
2012-01-31 10:51:44 +01:00
|
|
|
|
/* This is updated atomically, so we can append to it and check for NULL outside the
|
|
|
|
|
lock, but all other accesses are done under the write lock */
|
|
|
|
|
static GStaticResource *lazy_register_resources;
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
g_resources_register_unlocked (GResource *resource)
|
|
|
|
|
{
|
2012-04-07 03:22:17 +02:00
|
|
|
|
registered_resources = g_list_prepend (registered_resources, g_resource_ref (resource));
|
2012-01-31 10:51:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
g_resources_unregister_unlocked (GResource *resource)
|
|
|
|
|
{
|
2024-04-12 16:13:33 +02:00
|
|
|
|
GList *resource_link = g_list_find (registered_resources, resource);
|
|
|
|
|
|
|
|
|
|
if (resource_link == NULL)
|
2012-01-31 10:51:44 +01:00
|
|
|
|
{
|
2012-08-19 05:17:47 +02:00
|
|
|
|
g_warning ("Tried to remove not registered resource");
|
2012-01-31 10:51:44 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2024-04-12 16:13:33 +02:00
|
|
|
|
g_resource_unref (resource_link->data);
|
|
|
|
|
registered_resources = g_list_delete_link (registered_resources, resource_link);
|
2012-01-31 10:51:44 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
/**
|
|
|
|
|
* g_resources_register:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @resource: A #GResource
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Registers the resource with the process-global set of resources.
|
|
|
|
|
* Once a resource is registered the files in it can be accessed
|
|
|
|
|
* with the global resource lookup functions like g_resources_lookup_data().
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
g_resources_register (GResource *resource)
|
|
|
|
|
{
|
|
|
|
|
g_rw_lock_writer_lock (&resources_lock);
|
2012-01-31 10:51:44 +01:00
|
|
|
|
g_resources_register_unlocked (resource);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
g_rw_lock_writer_unlock (&resources_lock);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* g_resources_unregister:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @resource: A #GResource
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Unregisters the resource from the process-global set of resources.
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
g_resources_unregister (GResource *resource)
|
|
|
|
|
{
|
|
|
|
|
g_rw_lock_writer_lock (&resources_lock);
|
2012-01-31 10:51:44 +01:00
|
|
|
|
g_resources_unregister_unlocked (resource);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
g_rw_lock_writer_unlock (&resources_lock);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* g_resources_open_stream:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @path: A pathname inside the resource
|
|
|
|
|
* @lookup_flags: A #GResourceLookupFlags
|
|
|
|
|
* @error: return location for a #GError, or %NULL
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Looks for a file at the specified @path in the set of
|
2012-08-19 05:17:47 +02:00
|
|
|
|
* globally registered resources and returns a #GInputStream
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* that lets you read the data.
|
|
|
|
|
*
|
|
|
|
|
* @lookup_flags controls the behaviour of the lookup.
|
|
|
|
|
*
|
|
|
|
|
* Returns: (transfer full): #GInputStream or %NULL on error.
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* Free the returned object with g_object_unref()
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
GInputStream *
|
2012-04-07 03:22:17 +02:00
|
|
|
|
g_resources_open_stream (const gchar *path,
|
|
|
|
|
GResourceLookupFlags lookup_flags,
|
|
|
|
|
GError **error)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
GInputStream *res = NULL;
|
|
|
|
|
GList *l;
|
|
|
|
|
GInputStream *stream;
|
|
|
|
|
|
2016-04-27 12:17:07 +02:00
|
|
|
|
if (g_resource_find_overlay (path, open_overlay_stream, &res))
|
|
|
|
|
return res;
|
|
|
|
|
|
2012-01-31 10:51:44 +01:00
|
|
|
|
register_lazy_static_resources ();
|
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
g_rw_lock_reader_lock (&resources_lock);
|
|
|
|
|
|
2012-01-16 10:38:35 +01:00
|
|
|
|
for (l = registered_resources; l != NULL; l = l->next)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
GResource *r = l->data;
|
|
|
|
|
|
2024-09-05 13:03:18 +02:00
|
|
|
|
stream = g_resource_open_stream (r, path, lookup_flags, NULL);
|
|
|
|
|
if (stream == NULL)
|
2012-04-07 03:22:17 +02:00
|
|
|
|
{
|
2024-09-05 13:03:18 +02:00
|
|
|
|
/* g_resource_open_stream() guarantees it only fails with
|
|
|
|
|
* %G_RESOURCE_ERROR_NOT_FOUND */
|
2012-04-07 03:22:17 +02:00
|
|
|
|
}
|
2011-12-21 21:38:23 +01:00
|
|
|
|
else
|
2012-04-07 03:22:17 +02:00
|
|
|
|
{
|
|
|
|
|
res = stream;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2011-12-21 21:38:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (l == NULL)
|
2024-09-05 12:47:12 +02:00
|
|
|
|
set_error_not_found (error, path);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
|
|
|
|
g_rw_lock_reader_unlock (&resources_lock);
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* g_resources_lookup_data:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @path: A pathname inside the resource
|
|
|
|
|
* @lookup_flags: A #GResourceLookupFlags
|
|
|
|
|
* @error: return location for a #GError, or %NULL
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Looks for a file at the specified @path in the set of
|
2012-08-19 05:17:47 +02:00
|
|
|
|
* globally registered resources and returns a #GBytes that
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* lets you directly access the data in memory.
|
|
|
|
|
*
|
|
|
|
|
* The data is always followed by a zero byte, so you
|
|
|
|
|
* can safely use the data as a C string. However, that byte
|
|
|
|
|
* is not included in the size of the GBytes.
|
|
|
|
|
*
|
|
|
|
|
* For uncompressed resource files this is a pointer directly into
|
|
|
|
|
* the resource bundle, which is typically in some readonly data section
|
|
|
|
|
* in the program binary. For compressed files we allocate memory on
|
|
|
|
|
* the heap and automatically uncompress the data.
|
|
|
|
|
*
|
|
|
|
|
* @lookup_flags controls the behaviour of the lookup.
|
|
|
|
|
*
|
|
|
|
|
* Returns: (transfer full): #GBytes or %NULL on error.
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* Free the returned object with g_bytes_unref()
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
GBytes *
|
2012-04-07 03:22:17 +02:00
|
|
|
|
g_resources_lookup_data (const gchar *path,
|
|
|
|
|
GResourceLookupFlags lookup_flags,
|
|
|
|
|
GError **error)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
GBytes *res = NULL;
|
|
|
|
|
GList *l;
|
|
|
|
|
|
2016-04-27 12:17:07 +02:00
|
|
|
|
if (g_resource_find_overlay (path, get_overlay_bytes, &res))
|
|
|
|
|
return res;
|
|
|
|
|
|
2012-01-31 10:51:44 +01:00
|
|
|
|
register_lazy_static_resources ();
|
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
g_rw_lock_reader_lock (&resources_lock);
|
|
|
|
|
|
2012-01-16 10:38:35 +01:00
|
|
|
|
for (l = registered_resources; l != NULL; l = l->next)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
GResource *r = l->data;
|
2024-09-05 13:20:01 +02:00
|
|
|
|
const void *data;
|
|
|
|
|
guint32 flags;
|
|
|
|
|
gsize data_size;
|
|
|
|
|
gsize size;
|
|
|
|
|
|
|
|
|
|
/* This is essentially g_resource_lookup_data(), but split up so we can
|
|
|
|
|
* avoid allocating a #GError if the resource is not found. */
|
|
|
|
|
if (do_lookup (r, path, lookup_flags, &size, &flags, &data, &data_size, NULL))
|
2012-04-07 03:22:17 +02:00
|
|
|
|
{
|
2024-09-05 13:20:01 +02:00
|
|
|
|
res = resource_to_bytes (r, path, size, data, data_size, flags, error);
|
2012-04-07 03:22:17 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
2011-12-21 21:38:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (l == NULL)
|
2024-09-05 12:47:12 +02:00
|
|
|
|
set_error_not_found (error, path);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
|
|
|
|
g_rw_lock_reader_unlock (&resources_lock);
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* g_resources_enumerate_children:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @path: A pathname inside the resource
|
|
|
|
|
* @lookup_flags: A #GResourceLookupFlags
|
|
|
|
|
* @error: return location for a #GError, or %NULL
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Returns all the names of children at the specified @path in the set of
|
2012-08-19 05:17:47 +02:00
|
|
|
|
* globally registered resources.
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* The return result is a %NULL terminated list of strings which should
|
|
|
|
|
* be released with g_strfreev().
|
|
|
|
|
*
|
|
|
|
|
* @lookup_flags controls the behaviour of the lookup.
|
|
|
|
|
*
|
|
|
|
|
* Returns: (array zero-terminated=1) (transfer full): an array of constant strings
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
2012-04-07 03:22:17 +02:00
|
|
|
|
gchar **
|
|
|
|
|
g_resources_enumerate_children (const gchar *path,
|
|
|
|
|
GResourceLookupFlags lookup_flags,
|
|
|
|
|
GError **error)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
GHashTable *hash = NULL;
|
|
|
|
|
GList *l;
|
|
|
|
|
char **children;
|
|
|
|
|
int i;
|
|
|
|
|
|
2016-04-27 12:17:07 +02:00
|
|
|
|
/* This will enumerate actual files found in overlay directories but
|
|
|
|
|
* will not enumerate the overlays themselves. For example, if we
|
|
|
|
|
* have an overlay "/org/gtk=/path/to/files" and we enumerate "/org"
|
|
|
|
|
* then we will not see "gtk" in the result set unless it is provided
|
|
|
|
|
* by another resource file.
|
|
|
|
|
*
|
|
|
|
|
* This is probably not going to be a problem since if we are doing
|
|
|
|
|
* such an overlay, we probably will already have that path.
|
|
|
|
|
*/
|
|
|
|
|
g_resource_find_overlay (path, enumerate_overlay_dir, &hash);
|
|
|
|
|
|
2012-01-31 10:51:44 +01:00
|
|
|
|
register_lazy_static_resources ();
|
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
g_rw_lock_reader_lock (&resources_lock);
|
|
|
|
|
|
2012-01-16 10:38:35 +01:00
|
|
|
|
for (l = registered_resources; l != NULL; l = l->next)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
GResource *r = l->data;
|
|
|
|
|
|
|
|
|
|
children = g_resource_enumerate_children (r, path, 0, NULL);
|
|
|
|
|
|
|
|
|
|
if (children != NULL)
|
2012-04-07 03:22:17 +02:00
|
|
|
|
{
|
|
|
|
|
if (hash == NULL)
|
2016-04-27 12:17:07 +02:00
|
|
|
|
/* note: keep in sync with same line above */
|
2012-04-07 03:22:17 +02:00
|
|
|
|
hash = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
|
|
|
|
|
|
|
|
|
|
for (i = 0; children[i] != NULL; i++)
|
2016-04-28 09:29:41 +02:00
|
|
|
|
g_hash_table_add (hash, children[i]);
|
2012-04-07 03:22:17 +02:00
|
|
|
|
g_free (children);
|
|
|
|
|
}
|
2011-12-21 21:38:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_rw_lock_reader_unlock (&resources_lock);
|
|
|
|
|
|
|
|
|
|
if (hash == NULL)
|
|
|
|
|
{
|
2024-09-05 12:47:12 +02:00
|
|
|
|
set_error_not_found (error, path);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2016-04-28 09:29:41 +02:00
|
|
|
|
children = (gchar **) g_hash_table_get_keys_as_array (hash, NULL);
|
|
|
|
|
g_hash_table_steal_all (hash);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
g_hash_table_destroy (hash);
|
|
|
|
|
|
|
|
|
|
return children;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-06 06:25:05 +02:00
|
|
|
|
/**
|
|
|
|
|
* g_resources_has_children:
|
|
|
|
|
* @path: A pathname
|
|
|
|
|
*
|
|
|
|
|
* Returns whether the specified @path in the set of
|
|
|
|
|
* globally registered resources has children.
|
|
|
|
|
*
|
|
|
|
|
* Returns: %TRUE if @patch has children
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.84
|
|
|
|
|
*/
|
|
|
|
|
gboolean
|
|
|
|
|
g_resources_has_children (const char *path)
|
|
|
|
|
{
|
|
|
|
|
register_lazy_static_resources ();
|
|
|
|
|
|
|
|
|
|
g_rw_lock_reader_lock (&resources_lock);
|
|
|
|
|
|
|
|
|
|
for (GList *l = registered_resources; l != NULL; l = l->next)
|
|
|
|
|
{
|
|
|
|
|
GResource *r = l->data;
|
|
|
|
|
|
|
|
|
|
if (g_resource_has_children (r, path))
|
|
|
|
|
{
|
|
|
|
|
g_rw_lock_reader_unlock (&resources_lock);
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_rw_lock_reader_unlock (&resources_lock);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
/**
|
|
|
|
|
* g_resources_get_info:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @path: A pathname inside the resource
|
|
|
|
|
* @lookup_flags: A #GResourceLookupFlags
|
2016-10-29 03:29:02 +02:00
|
|
|
|
* @size: (out) (optional): a location to place the length of the contents of the file,
|
2011-12-21 21:38:23 +01:00
|
|
|
|
* or %NULL if the length is not needed
|
2017-07-05 22:52:54 +02:00
|
|
|
|
* @flags: (out) (optional): a location to place the #GResourceFlags about the file,
|
|
|
|
|
* or %NULL if the flags are not needed
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @error: return location for a #GError, or %NULL
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Looks for a file at the specified @path in the set of
|
2012-08-19 05:17:47 +02:00
|
|
|
|
* globally registered resources and if found returns information about it.
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* @lookup_flags controls the behaviour of the lookup.
|
|
|
|
|
*
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* Returns: %TRUE if the file was found. %FALSE if there were errors
|
2011-12-21 21:38:23 +01:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
gboolean
|
2012-04-07 03:22:17 +02:00
|
|
|
|
g_resources_get_info (const gchar *path,
|
|
|
|
|
GResourceLookupFlags lookup_flags,
|
|
|
|
|
gsize *size,
|
|
|
|
|
guint32 *flags,
|
|
|
|
|
GError **error)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
gboolean res = FALSE;
|
|
|
|
|
GList *l;
|
2018-11-27 06:13:22 +01:00
|
|
|
|
InfoData info;
|
|
|
|
|
|
|
|
|
|
if (g_resource_find_overlay (path, get_overlay_info, &info))
|
|
|
|
|
{
|
|
|
|
|
if (size)
|
|
|
|
|
*size = info.size;
|
|
|
|
|
if (flags)
|
|
|
|
|
*flags = info.flags;
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
2012-01-31 10:51:44 +01:00
|
|
|
|
register_lazy_static_resources ();
|
|
|
|
|
|
2011-12-21 21:38:23 +01:00
|
|
|
|
g_rw_lock_reader_lock (&resources_lock);
|
|
|
|
|
|
2012-01-16 10:38:35 +01:00
|
|
|
|
for (l = registered_resources; l != NULL; l = l->next)
|
2011-12-21 21:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
GResource *r = l->data;
|
|
|
|
|
|
2024-09-05 13:09:21 +02:00
|
|
|
|
if (g_resource_get_info (r, path, lookup_flags, size, flags, NULL))
|
2012-04-07 03:22:17 +02:00
|
|
|
|
{
|
2024-09-05 13:09:21 +02:00
|
|
|
|
res = TRUE;
|
2012-04-07 03:22:17 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
2011-12-21 21:38:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (l == NULL)
|
2024-09-05 12:47:12 +02:00
|
|
|
|
set_error_not_found (error, path);
|
2011-12-21 21:38:23 +01:00
|
|
|
|
|
|
|
|
|
g_rw_lock_reader_unlock (&resources_lock);
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
2012-01-31 10:51:44 +01:00
|
|
|
|
|
|
|
|
|
/* This code is to handle registration of resources very early, from a constructor.
|
|
|
|
|
* At that point we'd like to do minimal work, to avoid ordering issues. For instance,
|
|
|
|
|
* we're not allowed to use g_malloc, as the user need to be able to call g_mem_set_vtable
|
|
|
|
|
* before the first call to g_malloc.
|
|
|
|
|
*
|
|
|
|
|
* So, what we do at construction time is that we just register a static structure on
|
|
|
|
|
* a list of resources that need to be initialized, and then later, when doing any lookups
|
|
|
|
|
* in the global list of registered resources, or when getting a reference to the
|
|
|
|
|
* lazily initialized resource we lazily create and register all the GResources on
|
|
|
|
|
* the lazy list.
|
|
|
|
|
*
|
|
|
|
|
* To avoid having to use locks in the constructor, and having to grab the writer lock
|
|
|
|
|
* when checking the lazy registering list we update lazy_register_resources in
|
|
|
|
|
* a lock-less fashion (atomic prepend-only, atomic replace with NULL). However, all
|
|
|
|
|
* operations except:
|
|
|
|
|
* * check if there are any resources to lazily initialize
|
|
|
|
|
* * Add a static resource to the lazy init list
|
|
|
|
|
* Do use the full writer lock for protection.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static void
|
2012-04-07 03:22:17 +02:00
|
|
|
|
register_lazy_static_resources_unlocked (void)
|
2012-01-31 10:51:44 +01:00
|
|
|
|
{
|
2023-05-09 14:25:44 +02:00
|
|
|
|
GStaticResource *list = g_atomic_pointer_get (&lazy_register_resources);
|
2012-01-31 10:51:44 +01:00
|
|
|
|
|
2023-05-09 14:25:44 +02:00
|
|
|
|
while (!g_atomic_pointer_compare_and_exchange_full (&lazy_register_resources, list, NULL, &list))
|
|
|
|
|
;
|
2012-01-31 10:51:44 +01:00
|
|
|
|
|
|
|
|
|
while (list != NULL)
|
|
|
|
|
{
|
|
|
|
|
GBytes *bytes = g_bytes_new_static (list->data, list->data_len);
|
|
|
|
|
GResource *resource = g_resource_new_from_data (bytes, NULL);
|
|
|
|
|
if (resource)
|
2012-04-07 03:22:17 +02:00
|
|
|
|
{
|
|
|
|
|
g_resources_register_unlocked (resource);
|
|
|
|
|
g_atomic_pointer_set (&list->resource, resource);
|
|
|
|
|
}
|
2012-01-31 10:51:44 +01:00
|
|
|
|
g_bytes_unref (bytes);
|
|
|
|
|
|
|
|
|
|
list = list->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2012-04-07 03:22:17 +02:00
|
|
|
|
register_lazy_static_resources (void)
|
2012-01-31 10:51:44 +01:00
|
|
|
|
{
|
|
|
|
|
if (g_atomic_pointer_get (&lazy_register_resources) == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
g_rw_lock_writer_lock (&resources_lock);
|
|
|
|
|
register_lazy_static_resources_unlocked ();
|
|
|
|
|
g_rw_lock_writer_unlock (&resources_lock);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* g_static_resource_init:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @static_resource: pointer to a static #GStaticResource
|
2012-01-31 10:51:44 +01:00
|
|
|
|
*
|
|
|
|
|
* Initializes a GResource from static data using a
|
|
|
|
|
* GStaticResource.
|
|
|
|
|
*
|
|
|
|
|
* This is normally used by code generated by
|
2014-02-08 18:26:56 +01:00
|
|
|
|
* [glib-compile-resources][glib-compile-resources]
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* and is not typically used by other code.
|
2012-01-31 10:51:44 +01:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
g_static_resource_init (GStaticResource *static_resource)
|
|
|
|
|
{
|
2020-11-16 18:17:21 +01:00
|
|
|
|
GStaticResource *next;
|
2012-01-31 10:51:44 +01:00
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
2023-05-30 13:31:55 +02:00
|
|
|
|
next = g_atomic_pointer_get (&lazy_register_resources);
|
2012-01-31 10:51:44 +01:00
|
|
|
|
static_resource->next = next;
|
|
|
|
|
}
|
|
|
|
|
while (!g_atomic_pointer_compare_and_exchange (&lazy_register_resources, next, static_resource));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* g_static_resource_fini:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @static_resource: pointer to a static #GStaticResource
|
2012-01-31 10:51:44 +01:00
|
|
|
|
*
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* Finalized a GResource initialized by g_static_resource_init().
|
2012-01-31 10:51:44 +01:00
|
|
|
|
*
|
|
|
|
|
* This is normally used by code generated by
|
2014-02-08 18:26:56 +01:00
|
|
|
|
* [glib-compile-resources][glib-compile-resources]
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* and is not typically used by other code.
|
2012-01-31 10:51:44 +01:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
g_static_resource_fini (GStaticResource *static_resource)
|
|
|
|
|
{
|
|
|
|
|
GResource *resource;
|
|
|
|
|
|
|
|
|
|
g_rw_lock_writer_lock (&resources_lock);
|
|
|
|
|
|
|
|
|
|
register_lazy_static_resources_unlocked ();
|
|
|
|
|
|
2022-06-21 05:01:17 +02:00
|
|
|
|
resource = g_atomic_pointer_exchange (&static_resource->resource, NULL);
|
2012-01-31 10:51:44 +01:00
|
|
|
|
if (resource)
|
|
|
|
|
{
|
2022-05-10 16:53:19 +02:00
|
|
|
|
/* There should be at least two references to the resource now: one for
|
|
|
|
|
* static_resource->resource, and one in the registered_resources list. */
|
|
|
|
|
g_assert (g_atomic_int_get (&resource->ref_count) >= 2);
|
|
|
|
|
|
2012-01-31 10:51:44 +01:00
|
|
|
|
g_resources_unregister_unlocked (resource);
|
|
|
|
|
g_resource_unref (resource);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_rw_lock_writer_unlock (&resources_lock);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* g_static_resource_get_resource:
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* @static_resource: pointer to a static #GStaticResource
|
2012-01-31 10:51:44 +01:00
|
|
|
|
*
|
2012-08-19 05:17:47 +02:00
|
|
|
|
* Gets the GResource that was registered by a call to g_static_resource_init().
|
2012-01-31 10:51:44 +01:00
|
|
|
|
*
|
|
|
|
|
* This is normally used by code generated by
|
2014-02-08 18:26:56 +01:00
|
|
|
|
* [glib-compile-resources][glib-compile-resources]
|
2012-04-07 03:22:17 +02:00
|
|
|
|
* and is not typically used by other code.
|
2012-01-31 10:51:44 +01:00
|
|
|
|
*
|
2014-02-20 01:35:23 +01:00
|
|
|
|
* Returns: (transfer none): a #GResource
|
2012-01-31 10:51:44 +01:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.32
|
|
|
|
|
**/
|
|
|
|
|
GResource *
|
2012-04-07 03:22:17 +02:00
|
|
|
|
g_static_resource_get_resource (GStaticResource *static_resource)
|
2012-01-31 10:51:44 +01:00
|
|
|
|
{
|
|
|
|
|
register_lazy_static_resources ();
|
|
|
|
|
|
|
|
|
|
return g_atomic_pointer_get (&static_resource->resource);
|
|
|
|
|
}
|