2 * Copyright (C) 2006 Stefan Kost <ensonic@users.sf.net>
4 * gstpreset.c: helper interface for element presets
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
23 * @short_description: helper interface for element presets
25 * This interface offers methods to query and manipulate parameter preset sets.
26 * A preset is a bunch of property settings, together with meta data and a name.
27 * The name of a preset serves as key for subsequent method calls to manipulate
29 * All instances of one type will share the list of presets. The list is created
30 * on demand, if presets are not used, the list is not created.
32 * The interface comes with a default implementation that serves most plugins.
33 * Wrapper plugins will override most methods to implement support for the
34 * native preset format of those wrapped plugins.
35 * One method that is useful to be overridden is gst_preset_get_property_names().
36 * With that one can control which properties are saved and in which order.
38 * The default implementation supports presets located in a system directory,
39 * application specific directory and in the users home directory. When getting
40 * a list of presets individual presets are read and overlaid in 1) system,
41 * 2) application and 3) user order. Whenever an earlier entry is newer, the
42 * later entries will be updated.
47 * - we need to avoid two instances writing the preset file
48 * -> flock(fileno()), http://www.ecst.csuchico.edu/~beej/guide/ipc/flock.html
50 * -> better save the new file to a tempfile and then rename?
51 * - we like to know when any other instance makes changes to the keyfile
52 * - then ui can be updated
53 * - and we make sure that we don't lose edits
54 * -> its the same problem actually, once for inside a process, once system-
56 * - can we use a lock inside a names shared memory segment?
58 * - should there be a 'preset-list' property to get the preset list
59 * (and to connect a notify:: to to listen for changes)
60 * we could use gnome_vfs_monitor_add() to monitor the user preset_file.
62 * - should there be a 'preset-name' property so that we can set a preset via
63 * gst-launch, or should we handle this with special syntax in gst-launch:
64 * gst-launch element preset:<preset-name> property=value ...
65 * - this would allow to have preset-bundles too (a preset on bins that
66 * specifies presets for children
69 #include "gst_private.h"
71 #include "gstpreset.h"
72 #include "gstchildproxy.h"
79 #include <glib/gstdio.h>
82 #define WIN32_LEAN_AND_MEAN
85 extern HMODULE _priv_gst_dll_handle;
88 #define GST_CAT_DEFAULT preset_debug
89 GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
91 /* defines for keyfile usage, this group contains the element type name and
92 * version these presets belong to. */
93 #define PRESET_HEADER "_presets_"
95 /* keys of the preset header section */
96 #define PRESET_HEADER_ELEMENT_NAME "element-name"
97 #define PRESET_HEADER_VERSION "version"
99 static GQuark preset_user_path_quark = 0;
100 static GQuark preset_app_path_quark = 0;
101 static GQuark preset_system_path_quark = 0;
102 static GQuark preset_quark = 0;
104 /*static GQuark property_list_quark = 0;*/
106 /* the application can set a custom path that is checked in addition to standard
107 * system and user dirs. This helps to develop new presets first local to the
110 static gchar *preset_app_dir = NULL;
112 /* default iface implementation */
114 static gboolean gst_preset_default_save_presets_file (GstPreset * preset);
118 * @preset: a #GObject that implements #GstPreset
119 * @preset_user_path: location for path or %NULL
120 * @preset_app_path: location for path or %NULL
121 * @preset_system_path: location for path or %NULL
123 * Fetch the preset_path for user local, application specific and system wide
124 * settings. Don't free after use.
126 * Returns: %FALSE if no paths could be found.
129 preset_get_paths (GstPreset * preset, const gchar ** preset_user_path,
130 const gchar ** preset_app_path, const gchar ** preset_system_path)
132 GType type = G_TYPE_FROM_INSTANCE (preset);
134 const gchar *element_name;
136 /* we use the element name when we must construct the paths */
137 element_name = G_OBJECT_TYPE_NAME (preset);
138 GST_INFO_OBJECT (preset, "element_name: '%s'", element_name);
140 if (preset_user_path) {
141 /* preset user path requested, see if we have it cached in the qdata */
142 if (!(preset_path = g_type_get_qdata (type, preset_user_path_quark))) {
145 /* user presets go in user's XDG data directory. */
146 preset_dir = g_build_filename (g_get_user_data_dir (),
147 "gstreamer-" GST_API_VERSION, "presets", NULL);
148 GST_INFO_OBJECT (preset, "user_preset_dir: '%s'", preset_dir);
150 g_strdup_printf ("%s" G_DIR_SEPARATOR_S "%s.prs", preset_dir,
152 GST_INFO_OBJECT (preset, "user_preset_path: '%s'", preset_path);
154 g_mkdir_with_parents (preset_dir, 0755);
157 /* cache the preset path to the type */
158 g_type_set_qdata (type, preset_user_path_quark, preset_path);
160 *preset_user_path = preset_path;
163 if (preset_app_path) {
164 if (preset_app_dir) {
165 if (!(preset_path = g_type_get_qdata (type, preset_system_path_quark))) {
166 preset_path = g_strdup_printf ("%s" G_DIR_SEPARATOR_S "%s.prs",
167 preset_app_dir, element_name);
168 GST_INFO_OBJECT (preset, "application_preset_path: '%s'", preset_path);
170 /* cache the preset path to the type */
171 g_type_set_qdata (type, preset_app_path_quark, preset_path);
173 *preset_app_path = preset_path;
175 *preset_app_path = NULL;
179 if (preset_system_path) {
180 /* preset system path requested, see if we have it cached in the qdata */
181 if (!(preset_path = g_type_get_qdata (type, preset_system_path_quark))) {
184 /* system presets in '$GST_DATADIR/gstreamer-1.0/presets/GstAudioPanorama.prs' */
187 g_win32_get_package_installation_directory_of_module
188 (_priv_gst_dll_handle);
190 g_build_filename (basedir, "share", "gstreamer-" GST_API_VERSION,
194 preset_dir = g_build_filename (GST_DATADIR, "gstreamer-" GST_API_VERSION,
197 GST_INFO_OBJECT (preset, "system_preset_dir: '%s'", preset_dir);
198 preset_path = g_strdup_printf ("%s" G_DIR_SEPARATOR_S "%s.prs",
199 preset_dir, element_name);
200 GST_INFO_OBJECT (preset, "system_preset_path: '%s'", preset_path);
202 g_mkdir_with_parents (preset_dir, 0755);
205 /* cache the preset path to the type */
206 g_type_set_qdata (type, preset_system_path_quark, preset_path);
208 *preset_system_path = preset_path;
214 preset_skip_property (GParamSpec * property)
216 if (((property->flags & G_PARAM_READWRITE) != G_PARAM_READWRITE) ||
217 (property->flags & G_PARAM_CONSTRUCT_ONLY))
219 /* FIXME: skip GST_PARAM_NOT_PRESETABLE, see #522205 */
224 preset_parse_version (const gchar * str_version)
226 guint major, minor, micro, nano;
229 major = minor = micro = nano = 0;
231 /* parse version (e.g. 0.10.15.1) to guint64 */
232 num = sscanf (str_version, "%u.%u.%u.%u", &major, &minor, µ, &nano);
233 /* make sure we have at least "major.minor" */
237 version = ((((major << 8 | minor) << 8) | micro) << 8) | nano;
238 GST_DEBUG ("version %s -> %" G_GUINT64_FORMAT, str_version, version);
241 return G_GUINT64_CONSTANT (0);
245 preset_open_and_parse_header (GstPreset * preset, const gchar * preset_path,
246 guint64 * preset_version)
249 GError *error = NULL;
251 const gchar *element_name;
254 in = g_key_file_new ();
256 res = g_key_file_load_from_file (in, preset_path,
257 G_KEY_FILE_KEEP_COMMENTS | G_KEY_FILE_KEEP_TRANSLATIONS, &error);
258 if (!res || error != NULL)
261 /* element type name and preset name must match or we are dealing with a wrong
263 element_name = G_OBJECT_TYPE_NAME (preset);
265 g_key_file_get_value (in, PRESET_HEADER, PRESET_HEADER_ELEMENT_NAME,
268 if (!name || strcmp (name, element_name))
273 /* get the version now so that the caller can check it */
274 if (preset_version) {
276 g_key_file_get_value (in, PRESET_HEADER, PRESET_HEADER_VERSION, NULL);
277 *preset_version = preset_parse_version (str);
286 GST_WARNING_OBJECT (preset, "Unable to read preset file %s: %s",
287 preset_path, error->message);
288 g_error_free (error);
289 g_key_file_free (in);
294 GST_WARNING_OBJECT (preset,
295 "Wrong element name in preset file %s. Expected %s, got %s",
296 preset_path, element_name, GST_STR_NULL (name));
298 g_key_file_free (in);
304 preset_merge (GKeyFile * system, GKeyFile * user)
307 gchar **groups, **keys;
308 gsize i, j, num_groups, num_keys;
310 /* copy file comment if there is any */
311 if ((str = g_key_file_get_comment (user, NULL, NULL, NULL))) {
312 g_key_file_set_comment (system, NULL, NULL, str, NULL);
316 /* get groups in user and copy into system */
317 groups = g_key_file_get_groups (user, &num_groups);
318 for (i = 0; i < num_groups; i++) {
319 /* copy group comment if there is any */
320 if ((str = g_key_file_get_comment (user, groups[i], NULL, NULL))) {
321 g_key_file_set_comment (system, groups[i], NULL, str, NULL);
325 /* ignore private groups */
326 if (groups[i][0] == '_')
329 /* if group already exists in system, remove and re-add keys from user */
330 if (g_key_file_has_group (system, groups[i])) {
331 g_key_file_remove_group (system, groups[i], NULL);
334 keys = g_key_file_get_keys (user, groups[i], &num_keys, NULL);
335 for (j = 0; j < num_keys; j++) {
336 /* copy key comment if there is any */
337 if ((str = g_key_file_get_comment (user, groups[i], keys[j], NULL))) {
338 g_key_file_set_comment (system, groups[i], keys[j], str, NULL);
341 str = g_key_file_get_value (user, groups[i], keys[j], NULL);
342 g_key_file_set_value (system, groups[i], keys[j], str);
350 /* reads the user and system presets files and merges them together. This
351 * function caches the GKeyFile on the element type. If there is no existing
352 * preset file, a new in-memory GKeyFile will be created. */
354 preset_get_keyfile (GstPreset * preset)
357 GType type = G_TYPE_FROM_INSTANCE (preset);
359 /* first see if the have a cached version for the type */
360 if (!(presets = g_type_get_qdata (type, preset_quark))) {
361 const gchar *preset_user_path, *preset_app_path, *preset_system_path;
362 guint64 version_system = G_GUINT64_CONSTANT (0);
363 guint64 version_app = G_GUINT64_CONSTANT (0);
364 guint64 version_user = G_GUINT64_CONSTANT (0);
365 guint64 version = G_GUINT64_CONSTANT (0);
366 gboolean merged = FALSE;
367 GKeyFile *in_user, *in_app = NULL, *in_system;
369 preset_get_paths (preset, &preset_user_path, &preset_app_path,
370 &preset_system_path);
372 /* try to load the user, app and system presets, we do this to get the
373 * versions of all files. */
374 in_user = preset_open_and_parse_header (preset, preset_user_path,
376 if (preset_app_path) {
377 in_app = preset_open_and_parse_header (preset, preset_app_path,
380 in_system = preset_open_and_parse_header (preset, preset_system_path,
383 /* compare version to check for merge */
386 version = version_system;
389 /* if system version is higher, merge */
390 if (version > version_app) {
391 preset_merge (presets, in_app);
392 g_key_file_free (in_app);
395 g_key_file_free (presets);
397 version = version_system;
401 /* if system or app version is higher, merge */
402 if (version > version_user) {
403 preset_merge (presets, in_user);
404 g_key_file_free (in_user);
408 g_key_file_free (presets);
414 /* we did not load a user, app or system presets file, create a new one */
415 presets = g_key_file_new ();
416 g_key_file_set_string (presets, PRESET_HEADER, PRESET_HEADER_ELEMENT_NAME,
417 G_OBJECT_TYPE_NAME (preset));
420 /* attach the preset to the type */
421 g_type_set_qdata (type, preset_quark, (gpointer) presets);
424 gst_preset_default_save_presets_file (preset);
430 /* get a list of all supported preset names for an element */
432 gst_preset_default_get_preset_names (GstPreset * preset)
438 /* get the presets from the type */
439 if (!(presets = preset_get_keyfile (preset)))
442 /* get the groups, which are also the preset names */
443 if (!(groups = g_key_file_get_groups (presets, &num_groups)))
446 /* remove all private group names starting with '_' from the array */
447 for (i = 0; i < num_groups; i++) {
448 if (groups[i][0] == '_') {
449 /* free private group */
451 /* move last element of list down */
453 /* move last element into removed element */
454 groups[i] = groups[num_groups];
455 groups[num_groups] = NULL;
458 /* sort the array now */
459 g_qsort_with_data (groups, num_groups, sizeof (gchar *),
460 (GCompareDataFunc) strcmp, NULL);
467 GST_WARNING_OBJECT (preset, "Could not load presets");
472 GST_WARNING_OBJECT (preset, "Could not find preset groups");
477 /* get a list of all property names that are used for presets */
479 gst_preset_default_get_property_names (GstPreset * preset)
482 guint i, j = 0, n_props;
483 GObjectClass *gclass;
484 gboolean is_child_proxy;
485 gchar **result = NULL;
487 gclass = G_OBJECT_CLASS (GST_ELEMENT_GET_CLASS (preset));
488 is_child_proxy = GST_IS_CHILD_PROXY (preset);
490 /* get a list of object properties */
491 props = g_object_class_list_properties (gclass, &n_props);
493 /* allocate array big enough to hold the worst case, including a terminating
495 result = g_new (gchar *, n_props + 1);
497 /* now filter out the properties that we can use for presets */
498 GST_DEBUG_OBJECT (preset, " filtering properties: %u", n_props);
499 for (i = 0; i < n_props; i++) {
500 if (preset_skip_property (props[i]))
502 GST_DEBUG_OBJECT (preset, " using: %s", props[i]->name);
503 result[j++] = g_strdup (props[i]->name);
508 if (is_child_proxy) {
512 n_children = gst_child_proxy_get_children_count ((GstChildProxy *) preset);
513 for (c = 0; c < n_children; c++) {
514 child = gst_child_proxy_get_child_by_index ((GstChildProxy *) preset, c);
515 gclass = G_OBJECT_CLASS (GST_ELEMENT_GET_CLASS (child));
517 props = g_object_class_list_properties (gclass, &n_props);
519 /* resize property name array */
520 result = g_renew (gchar *, result, j + n_props + 1);
522 /* now filter out the properties that we can use for presets */
523 GST_DEBUG_OBJECT (preset, " filtering properties: %u", n_props);
524 for (i = 0; i < n_props; i++) {
525 if (preset_skip_property (props[i]))
527 GST_DEBUG_OBJECT (preset, " using: %s::%s",
528 GST_OBJECT_NAME (child), props[i]->name);
529 result[j++] = g_strdup_printf ("%s::%s", GST_OBJECT_NAME (child),
535 g_object_unref (child);
539 GST_INFO_OBJECT (preset, "object has no properties");
546 /* load the presets of @name for the instance @preset. Returns %FALSE if something
549 gst_preset_default_load_preset (GstPreset * preset, const gchar * name)
554 GObjectClass *gclass;
555 gboolean is_child_proxy;
557 /* get the presets from the type */
558 if (!(presets = preset_get_keyfile (preset)))
561 /* get the preset name */
562 if (!g_key_file_has_group (presets, name))
565 GST_DEBUG_OBJECT (preset, "loading preset : '%s'", name);
567 /* get the properties that we can configure in this element */
568 if (!(props = gst_preset_get_property_names (preset)))
571 gclass = G_OBJECT_CLASS (GST_ELEMENT_GET_CLASS (preset));
572 is_child_proxy = GST_IS_CHILD_PROXY (preset);
574 /* for each of the property names, find the preset parameter and try to
575 * configure the property with its value */
576 for (i = 0; props[i]; i++) {
578 GValue gvalue = { 0, };
579 GParamSpec *property = NULL;
581 /* check if we have a settings for this element property */
582 if (!(str = g_key_file_get_value (presets, name, props[i], NULL))) {
583 /* the element has a property but the parameter is not in the keyfile */
584 GST_WARNING_OBJECT (preset, "parameter '%s' not in preset", props[i]);
588 GST_DEBUG_OBJECT (preset, "setting value '%s' for property '%s'", str,
591 if (is_child_proxy) {
592 gst_child_proxy_lookup ((GstChildProxy *) preset, props[i], NULL,
595 property = g_object_class_find_property (gclass, props[i]);
598 /* the parameter was in the keyfile, the element said it supported it but
599 * then the property was not found in the element. This should not happen. */
600 GST_WARNING_OBJECT (preset, "property '%s' not in object", props[i]);
605 /* try to deserialize the property value from the keyfile and set it as
606 * the object property */
607 g_value_init (&gvalue, property->value_type);
608 if (gst_value_deserialize (&gvalue, str)) {
609 if (is_child_proxy) {
610 gst_child_proxy_set_property ((GstChildProxy *) preset, props[i],
613 g_object_set_property ((GObject *) preset, props[i], &gvalue);
616 GST_WARNING_OBJECT (preset,
617 "deserialization of value '%s' for property '%s' failed", str,
620 g_value_unset (&gvalue);
630 GST_WARNING_OBJECT (preset, "no presets");
635 GST_WARNING_OBJECT (preset, "no preset named '%s'", name);
640 GST_INFO_OBJECT (preset, "no properties");
645 /* save the presets file. A copy of the existing presets file is stored in a
648 gst_preset_default_save_presets_file (GstPreset * preset)
651 const gchar *preset_path;
652 GError *error = NULL;
653 gchar *bak_file_name;
654 gboolean backup = TRUE;
658 preset_get_paths (preset, &preset_path, NULL, NULL);
660 /* get the presets from the type */
661 if (!(presets = preset_get_keyfile (preset)))
664 GST_DEBUG_OBJECT (preset, "saving preset file: '%s'", preset_path);
666 /* create backup if possible */
667 bak_file_name = g_strdup_printf ("%s.bak", preset_path);
668 if (g_file_test (bak_file_name, G_FILE_TEST_EXISTS)) {
669 if (g_unlink (bak_file_name)) {
671 GST_INFO_OBJECT (preset, "cannot remove old backup file : %s",
676 if (g_rename (preset_path, bak_file_name)) {
677 GST_INFO_OBJECT (preset, "cannot backup file : %s -> %s", preset_path,
681 g_free (bak_file_name);
683 /* update gstreamer version */
684 g_key_file_set_string (presets, PRESET_HEADER, PRESET_HEADER_VERSION,
687 /* get new contents, wee need this to save it */
688 if (!(data = g_key_file_to_data (presets, &data_size, &error)))
692 if (!g_file_set_contents (preset_path, data, data_size, &error))
702 GST_WARNING_OBJECT (preset,
703 "no presets, trying to unlink possibly existing preset file: '%s'",
705 g_unlink (preset_path);
710 GST_WARNING_OBJECT (preset, "can not get the keyfile contents: %s",
712 g_error_free (error);
718 GST_WARNING_OBJECT (preset, "Unable to store preset file %s: %s",
719 preset_path, error->message);
720 g_error_free (error);
726 /* save the preset with the given name */
728 gst_preset_default_save_preset (GstPreset * preset, const gchar * name)
733 GObjectClass *gclass;
734 gboolean is_child_proxy;
736 GST_INFO_OBJECT (preset, "saving new preset: %s", name);
738 /* get the presets from the type */
739 if (!(presets = preset_get_keyfile (preset)))
742 /* take copies of current gobject properties from preset */
743 if (!(props = gst_preset_get_property_names (preset)))
746 gclass = G_OBJECT_CLASS (GST_ELEMENT_GET_CLASS (preset));
747 is_child_proxy = GST_IS_CHILD_PROXY (preset);
749 /* loop over the object properties and store the property value in the
751 for (i = 0; props[i]; i++) {
752 GValue gvalue = { 0, };
754 GParamSpec *property = NULL;
756 if (is_child_proxy) {
757 gst_child_proxy_lookup ((GstChildProxy *) preset, props[i], NULL,
760 property = g_object_class_find_property (gclass, props[i]);
763 /* the element said it supported the property but then it does not have
764 * that property. This should not happen. */
765 GST_WARNING_OBJECT (preset, "property '%s' not in object", props[i]);
769 g_value_init (&gvalue, property->value_type);
770 if (is_child_proxy) {
771 gst_child_proxy_get_property ((GstChildProxy *) preset, props[i],
774 g_object_get_property ((GObject *) preset, props[i], &gvalue);
777 if ((str = gst_value_serialize (&gvalue))) {
778 g_key_file_set_string (presets, name, props[i], (gpointer) str);
781 GST_WARNING_OBJECT (preset, "serialization for property '%s' failed",
784 g_value_unset (&gvalue);
786 GST_INFO_OBJECT (preset, " saved");
789 /* save updated version */
790 return gst_preset_default_save_presets_file (preset);
795 GST_WARNING_OBJECT (preset, "no presets");
800 GST_INFO_OBJECT (preset, "no properties");
805 /* copies all keys and comments from one group to another, deleting the old
808 gst_preset_default_rename_preset (GstPreset * preset, const gchar * old_name,
809 const gchar * new_name)
816 /* get the presets from the type */
817 if (!(presets = preset_get_keyfile (preset)))
820 if (!g_key_file_has_group (presets, old_name))
823 /* copy group comment if there is any */
824 if ((str = g_key_file_get_comment (presets, old_name, NULL, NULL))) {
825 g_key_file_set_comment (presets, new_name, NULL, str, NULL);
829 /* get all keys from the old group and copy them in the new group */
830 keys = g_key_file_get_keys (presets, old_name, &num_keys, NULL);
831 for (i = 0; i < num_keys; i++) {
832 /* copy key comment if there is any */
833 if ((str = g_key_file_get_comment (presets, old_name, keys[i], NULL))) {
834 g_key_file_set_comment (presets, new_name, keys[i], str, NULL);
838 str = g_key_file_get_value (presets, old_name, keys[i], NULL);
839 g_key_file_set_value (presets, new_name, keys[i], str);
844 /* remove old group */
845 g_key_file_remove_group (presets, old_name, NULL);
847 /* save updated version */
848 return gst_preset_default_save_presets_file (preset);
853 GST_WARNING_OBJECT (preset, "no presets");
858 GST_WARNING_OBJECT (preset, "no preset named %s", old_name);
863 /* delete a group from the keyfile */
865 gst_preset_default_delete_preset (GstPreset * preset, const gchar * name)
869 /* get the presets from the type */
870 if (!(presets = preset_get_keyfile (preset)))
874 if (!g_key_file_has_group (presets, name))
877 /* remove the group */
878 g_key_file_remove_group (presets, name, NULL);
880 /* save updated version */
881 return gst_preset_default_save_presets_file (preset);
886 GST_WARNING_OBJECT (preset, "no presets");
891 GST_WARNING_OBJECT (preset, "no preset named %s", name);
897 gst_preset_default_set_meta (GstPreset * preset, const gchar * name,
898 const gchar * tag, const gchar * value)
903 /* get the presets from the type */
904 if (!(presets = preset_get_keyfile (preset)))
907 key = g_strdup_printf ("_meta/%s", tag);
908 if (value && *value) {
909 g_key_file_set_value (presets, name, key, value);
911 g_key_file_remove_key (presets, name, key, NULL);
915 /* save updated keyfile */
916 return gst_preset_default_save_presets_file (preset);
921 GST_WARNING_OBJECT (preset, "no presets");
926 /* the caller must free @value after usage */
928 gst_preset_default_get_meta (GstPreset * preset, const gchar * name,
929 const gchar * tag, gchar ** value)
934 /* get the presets from the type */
935 if (!(presets = preset_get_keyfile (preset)))
938 key = g_strdup_printf ("_meta/%s", tag);
939 *value = g_key_file_get_value (presets, name, key, NULL);
947 GST_WARNING_OBJECT (preset, "no presets");
956 * gst_preset_get_preset_names:
957 * @preset: a #GObject that implements #GstPreset
959 * Get a copy of preset names as a %NULL terminated string array.
961 * Returns: (transfer full) (array zero-terminated=1) (element-type gchar*):
962 * list with names, use g_strfreev() after usage.
965 gst_preset_get_preset_names (GstPreset * preset)
967 g_return_val_if_fail (GST_IS_PRESET (preset), NULL);
969 return (GST_PRESET_GET_INTERFACE (preset)->get_preset_names (preset));
973 * gst_preset_get_property_names:
974 * @preset: a #GObject that implements #GstPreset
976 * Get a the names of the GObject properties that can be used for presets.
978 * Returns: (transfer full) (array zero-terminated=1) (element-type gchar*): an
979 * array of property names which should be freed with g_strfreev() after use.
982 gst_preset_get_property_names (GstPreset * preset)
984 g_return_val_if_fail (GST_IS_PRESET (preset), NULL);
986 return (GST_PRESET_GET_INTERFACE (preset)->get_property_names (preset));
990 * gst_preset_load_preset:
991 * @preset: a #GObject that implements #GstPreset
992 * @name: preset name to load
994 * Load the given preset.
996 * Returns: %TRUE for success, %FALSE if e.g. there is no preset with that @name
999 gst_preset_load_preset (GstPreset * preset, const gchar * name)
1001 g_return_val_if_fail (GST_IS_PRESET (preset), FALSE);
1002 g_return_val_if_fail (name, FALSE);
1004 return (GST_PRESET_GET_INTERFACE (preset)->load_preset (preset, name));
1008 * gst_preset_save_preset:
1009 * @preset: a #GObject that implements #GstPreset
1010 * @name: preset name to save
1012 * Save the current object settings as a preset under the given name. If there
1013 * is already a preset by this @name it will be overwritten.
1015 * Returns: %TRUE for success, %FALSE
1018 gst_preset_save_preset (GstPreset * preset, const gchar * name)
1020 g_return_val_if_fail (GST_IS_PRESET (preset), FALSE);
1021 g_return_val_if_fail (name, FALSE);
1023 return (GST_PRESET_GET_INTERFACE (preset)->save_preset (preset, name));
1027 * gst_preset_rename_preset:
1028 * @preset: a #GObject that implements #GstPreset
1029 * @old_name: current preset name
1030 * @new_name: new preset name
1032 * Renames a preset. If there is already a preset by the @new_name it will be
1035 * Returns: %TRUE for success, %FALSE if e.g. there is no preset with @old_name
1038 gst_preset_rename_preset (GstPreset * preset, const gchar * old_name,
1039 const gchar * new_name)
1041 g_return_val_if_fail (GST_IS_PRESET (preset), FALSE);
1042 g_return_val_if_fail (old_name, FALSE);
1043 g_return_val_if_fail (new_name, FALSE);
1045 return (GST_PRESET_GET_INTERFACE (preset)->rename_preset (preset, old_name,
1050 * gst_preset_delete_preset:
1051 * @preset: a #GObject that implements #GstPreset
1052 * @name: preset name to remove
1054 * Delete the given preset.
1056 * Returns: %TRUE for success, %FALSE if e.g. there is no preset with that @name
1059 gst_preset_delete_preset (GstPreset * preset, const gchar * name)
1061 g_return_val_if_fail (GST_IS_PRESET (preset), FALSE);
1062 g_return_val_if_fail (name, FALSE);
1064 return (GST_PRESET_GET_INTERFACE (preset)->delete_preset (preset, name));
1068 * gst_preset_set_meta:
1069 * @preset: a #GObject that implements #GstPreset
1070 * @name: preset name
1071 * @tag: meta data item name
1074 * Sets a new @value for an existing meta data item or adds a new item. Meta
1075 * data @tag names can be something like e.g. "comment". Supplying %NULL for the
1076 * @value will unset an existing value.
1078 * Returns: %TRUE for success, %FALSE if e.g. there is no preset with that @name
1081 gst_preset_set_meta (GstPreset * preset, const gchar * name, const gchar * tag,
1082 const gchar * value)
1084 g_return_val_if_fail (GST_IS_PRESET (preset), FALSE);
1085 g_return_val_if_fail (name, FALSE);
1086 g_return_val_if_fail (tag, FALSE);
1088 return GST_PRESET_GET_INTERFACE (preset)->set_meta (preset, name, tag, value);
1092 * gst_preset_get_meta:
1093 * @preset: a #GObject that implements #GstPreset
1094 * @name: preset name
1095 * @tag: meta data item name
1096 * @value: (out callee-allocates): value
1098 * Gets the @value for an existing meta data @tag. Meta data @tag names can be
1099 * something like e.g. "comment". Returned values need to be released when done.
1101 * Returns: %TRUE for success, %FALSE if e.g. there is no preset with that @name
1102 * or no value for the given @tag
1105 gst_preset_get_meta (GstPreset * preset, const gchar * name, const gchar * tag,
1108 g_return_val_if_fail (GST_IS_PRESET (preset), FALSE);
1109 g_return_val_if_fail (name, FALSE);
1110 g_return_val_if_fail (tag, FALSE);
1111 g_return_val_if_fail (value, FALSE);
1113 return GST_PRESET_GET_INTERFACE (preset)->get_meta (preset, name, tag, value);
1117 * gst_preset_set_app_dir:
1118 * @app_dir: the application specific preset dir
1120 * Sets an extra directory as an absolute path that should be considered when
1121 * looking for presets. Any presets in the application dir will shadow the
1124 * Returns: %TRUE for success, %FALSE if the dir already has been set
1127 gst_preset_set_app_dir (const gchar * app_dir)
1129 g_return_val_if_fail (app_dir, FALSE);
1131 if (!preset_app_dir) {
1132 preset_app_dir = g_strdup (app_dir);
1139 * gst_preset_get_app_dir:
1141 * Gets the directory for application specific presets if set by the
1144 * Returns: (nullable): the directory or %NULL, don't free or modify
1148 gst_preset_get_app_dir (void)
1150 return preset_app_dir;
1153 /* class internals */
1156 gst_preset_class_init (GstPresetInterface * iface)
1158 iface->get_preset_names = gst_preset_default_get_preset_names;
1159 iface->get_property_names = gst_preset_default_get_property_names;
1161 iface->load_preset = gst_preset_default_load_preset;
1162 iface->save_preset = gst_preset_default_save_preset;
1163 iface->rename_preset = gst_preset_default_rename_preset;
1164 iface->delete_preset = gst_preset_default_delete_preset;
1166 iface->set_meta = gst_preset_default_set_meta;
1167 iface->get_meta = gst_preset_default_get_meta;
1171 gst_preset_base_init (gpointer g_class)
1173 static gboolean initialized = FALSE;
1176 /* init default implementation */
1177 GST_DEBUG_CATEGORY_INIT (GST_CAT_DEFAULT, "preset",
1178 GST_DEBUG_FG_WHITE | GST_DEBUG_BG_BLACK, "preset interface");
1180 /* create quarks for use with g_type_{g,s}et_qdata() */
1181 preset_quark = g_quark_from_static_string ("GstPreset::presets");
1182 preset_user_path_quark =
1183 g_quark_from_static_string ("GstPreset::user_path");
1184 preset_app_path_quark = g_quark_from_static_string ("GstPreset::app_path");
1185 preset_system_path_quark =
1186 g_quark_from_static_string ("GstPreset::system_path");
1189 property_list_quark = g_quark_from_static_string ("GstPreset::properties");
1191 /* create interface properties, each element would need to override this
1192 * g_object_class_override_property(gobject_class, PROP_PRESET_NAME, "preset-name");
1193 * and in _set_property() do
1194 * case PROP_PRESET_NAME: {
1195 * gchar *name = g_value_get_string (value);
1197 * gst_preset_load_preset(preset, name);
1200 g_object_interface_install_property (g_class,
1201 g_param_spec_string ("preset-name",
1202 "preset-name property",
1203 "load given preset", NULL, G_PARAM_WRITABLE));
1211 gst_preset_get_type (void)
1213 static volatile gsize type = 0;
1215 if (g_once_init_enter (&type)) {
1217 const GTypeInfo info = {
1218 sizeof (GstPresetInterface),
1219 (GBaseInitFunc) gst_preset_base_init, /* base_init */
1220 NULL, /* base_finalize */
1221 (GClassInitFunc) gst_preset_class_init, /* class_init */
1222 NULL, /* class_finalize */
1223 NULL, /* class_data */
1225 0, /* n_preallocs */
1226 NULL /* instance_init */
1228 _type = g_type_register_static (G_TYPE_INTERFACE, "GstPreset", &info, 0);
1229 g_once_init_leave (&type, _type);