2 * Copyright © 2009-10 Sam Thursfield
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
17 * Author: Sam Thursfield <ssssam@gmail.com>
20 /* GRegistryBackend implementation notes:
22 * - All settings are stored under the path:
23 * HKEY_CURRENT_USER\Software\GSettings\
24 * This means all settings are per-user. Permissions and system-wide
25 * defaults are not implemented and will probably always be out of scope of
26 * the Windows port of GLib.
28 * - The registry type system is limited. Most GVariant types are stored as
29 * literals via g_variant_print/parse(). Strings are stored without the
30 * quotes that GVariant requires. Integer types are stored as native
31 * REG_DWORD or REG_QWORD. The REG_MULTI_SZ (string array) type could be
32 * used to avoid flattening container types.
34 * - Notifications are handled; the change event is watched for in a separate
35 * thread (Windows does not provide a callback API) which sends them with
36 * g_idle_add to the GLib main loop. The threading is done using Windows
37 * API functions, so there is no dependence on GThread.
39 * - Windows doesn't tell us which value has changed. This means we have to
40 * maintain a cache of every stored value so we can play spot the
41 * difference. This should not be a performance issue because if you are
42 * storing thousands of values in GSettings, you are probably using it
45 * - The cache stores the value as a registry type. Because many variants are
46 * stored as string representations, values which have changed equality but
47 * not equivalence may trigger spurious change notifications. GSettings
48 * users must already deal with this possibility and converting all data to
49 * GVariant values would be more effort.
51 * - Because we have to cache every registry value locally, reads are done
52 * from the cache rather than directly from the registry. Writes update
53 * both. This means that the backend will not work if the watch thread is
54 * not running. A GSettings object always subscribes to changes so we can
55 * be sure that the watch thread will be running, but if for some reason
56 * the backend is being used directly you should bear that in mind.
58 * - The registry is totally user-editable, so we are very forgiving about
59 * errors in the data we get.
61 * - The registry uses backslashes as path separators. GSettings keys only
62 * allow [A-Za-z\-] so no escaping is needed. No attempt is made to solve
63 * clashes between keys differing only in case.
65 * - RegCreateKeyW is used - We should always make the UTF-8 -> UTF-16
66 * conversion ourselves to avoid problems when the system language changes.
68 * - The Windows registry has the following limitations: a key may not exceed
69 * 255 characters, an entry's value may not exceed 16,383 characters, and
70 * all the values of a key may not exceed 65,535 characters.
73 * * in GSettings, a 'key' is eg. /desktop/gnome/background/primary-color
74 * * in the registry, the 'key' is path, which contains some 'values'.
75 * * in this file, any GSettings key is a 'key', while a registry key is
76 * termed a 'path', which contains 'values'.
78 * - My set of tests for this backend are currently at:
79 * http://gitorious.org/gsettings-gtk/gsettings-test.git
81 * - There is an undocumented function in ntdll.dll which might be more
82 * than RegNotifyChangeKeyValue(), NtNotifyChangeKey:
83 * http://source.winehq.org/source/dlls/ntdll/reg.c#L618
84 * http://undocumented.ntinternals.net/UserMode/Undocumented%20Functions/NT%20Objects/Key/NtNotifyChangeKey.html
86 * - If updating the cache ever becomes a performance issue it may make sense
87 * to use a red-black tree, but I don't currently think it's worth the time
92 #include "gregistrysettingsbackend.h"
93 #include "gsettingsbackend.h"
94 #include "giomodule.h"
100 /* GSettings' limit */
101 #define MAX_KEY_NAME_LENGTH 32
103 /* Testing (on Windows XP SP3) shows that WaitForMultipleObjects fails with
104 * "The parameter is incorrect" after 64 watches. We need one for the
105 * message_sent cond, which is allowed for in the way the watches_remaining
108 #define MAX_WATCHES 64
110 /* A watch on one registry path and its subkeys */
119 /* Simple message passing for the watch thread. Not enough traffic to
125 WATCH_THREAD_ADD_WATCH
,
126 WATCH_THREAD_REMOVE_WATCH
,
128 } WatchThreadMessageType
;
132 WatchThreadMessageType type
;
134 } WatchThreadMessage
;
138 GSettingsBackend
*owner
;
141 /* Details of the things we are watching. */
142 int watches_remaining
;
143 GPtrArray
*events
, *handles
, *prefixes
, *cache_nodes
;
145 /* Communication with the main thread. Only one message is stored at a time,
146 * to make sure that messages are acknowledged before being overwritten we
147 * create two events - one is signalled when a new message is set, the
148 * other is signalled by the thread when it has processed the message.
150 WatchThreadMessage message
;
151 CRITICAL_SECTION
*message_lock
;
152 HANDLE message_sent_event
, message_received_event
;
155 #define G_TYPE_REGISTRY_BACKEND (g_registry_backend_get_type ())
156 #define G_REGISTRY_BACKEND(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
157 G_TYPE_REGISTRY_BACKEND, GRegistryBackend))
158 #define G_IS_REGISTRY_BACKEND(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
159 G_TYPE_REGISTRY_BACKEND))
161 typedef GSettingsBackendClass GRegistryBackendClass
;
164 GSettingsBackend parent_instance
;
167 gunichar2
*base_pathw
;
169 /* A stored copy of the whole tree being watched. When we receive a change notification
170 * we have to check against this to see what has changed ... every time ...*/
171 CRITICAL_SECTION
*cache_lock
;
174 WatchThreadState
*watch
;
177 G_DEFINE_TYPE_WITH_CODE (GRegistryBackend
,
179 G_TYPE_SETTINGS_BACKEND
,
180 g_io_extension_point_implement (G_SETTINGS_BACKEND_EXTENSION_POINT_NAME
,
181 g_define_type_id
, "registry", 90))
183 /**********************************************************************************
185 **********************************************************************************/
189 trace (const char *format
,
193 va_list va
; va_start (va
, format
);
194 vprintf (format
, va
);
200 /* g_message including a windows error message. It is not useful to have an
201 * equivalent function for g_warning because none of the registry errors can
202 * result from programmer error (Microsoft programmers don't count), instead
203 * they will mostly occur from people messing with the registry by hand. */
205 g_message_win32_error (DWORD result_code
,
212 gchar
*win32_message
;
214 g_return_if_fail (result_code
!= 0);
216 va_start (va
, format
);
217 message
= g_strdup_vprintf (format
, va
);
218 win32_error
= g_win32_error_message (result_code
);
219 win32_message
= g_strdup_printf ("%s: %s", message
, win32_error
);
221 g_free (win32_error
);
223 if (result_code
== ERROR_KEY_DELETED
)
224 trace ("(%s)", win32_message
);
226 g_message ("%s", win32_message
);
228 g_free (win32_message
);
231 /* Make gsettings key into a registry path & value pair.
233 * Note that the return value *only* needs freeing - registry_value_name
234 * is a pointer to further inside the same block of memory.
237 parse_key (const gchar
*key_name
,
238 const gchar
*registry_prefix
,
241 gchar
*path_name
, *c
;
243 /* All key paths are treated as absolute; gsettings doesn't seem to enforce a
246 if (key_name
[0] == '/')
249 if (registry_prefix
== NULL
)
250 path_name
= g_strdup (key_name
);
252 path_name
= g_strjoin ("/", registry_prefix
, key_name
, NULL
);
254 /* Prefix is expected to be in registry format (\ separators) so don't escape that. */
255 for (c
= path_name
+ (registry_prefix
? strlen (registry_prefix
) : 0); *c
!= 0; c
++)
271 g_variant_get_as_dword (GVariant
*variant
)
273 switch (g_variant_get_type_string (variant
)[0])
276 return g_variant_get_boolean (variant
);
278 return g_variant_get_byte (variant
);
280 return g_variant_get_int16 (variant
);
282 return g_variant_get_uint16 (variant
);
284 return g_variant_get_int32 (variant
);
286 return g_variant_get_uint32 (variant
);
288 g_warn_if_reached ();
294 g_variant_get_as_qword (GVariant
*variant
)
296 switch (g_variant_get_type_string (variant
)[0])
299 return g_variant_get_int64 (variant
);
301 return g_variant_get_uint64 (variant
);
303 g_warn_if_reached ();
309 handle_read_error (LONG result
,
310 const gchar
*path_name
,
311 const gchar
*value_name
)
313 /* file not found means key value not set, this isn't an error for us. */
314 if (result
!= ERROR_FILE_NOT_FOUND
)
315 g_message_win32_error (result
, "Unable to query value %s/%s: %s.\n",
316 path_name
, value_name
);
319 /***************************************************************************
320 * Cache of registry values
321 ***************************************************************************/
323 /* Generic container for registry values */
328 gint dword
; /* FIXME: could inline QWORD on 64-bit systems too */
334 registry_value_dump (RegistryValue value
)
336 if (value
.type
== REG_DWORD
)
337 return g_strdup_printf ("%d", value
.dword
);
338 else if (value
.type
== REG_QWORD
)
339 return g_strdup_printf ("%"G_GINT64_FORMAT
, value
.ptr
== NULL
? 0: *(DWORDLONG
*)value
.ptr
);
340 else if (value
.type
== REG_SZ
)
341 return g_strdup_printf ("%s", (char *)value
.ptr
);
342 else if (value
.type
== REG_NONE
)
343 return g_strdup_printf ("<empty>");
345 return g_strdup_printf ("<invalid>");
349 registry_value_free (RegistryValue value
)
351 if (value
.type
== REG_SZ
|| value
.type
== REG_QWORD
)
354 value
.type
= REG_NONE
;
358 /* The registry cache is stored as a tree, for easy traversal. Right now we
359 * don't sort it in a clever way. Each node corresponds to a path element
360 * ('key' in registry terms) or a value.
362 * Each subscription uses the same cache. Because GSettings can subscribe to
363 * the tree at any node any number of times, we need to reference count the
368 /* Component of path that this node represents */
371 /* If a watch is subscribed at this point (subscription_count > 0) we can
372 * block its next notification. This is useful because if two watches cover
373 * the same path, both will trigger when it changes. It also allows changes
374 * done by the application to be ignored by the watch thread.
376 gint32 block_count
: 8;
378 /* Number of times g_settings_subscribe has been called for this location
379 * (I guess you can't subscribe more than 16383 times) */
380 gint32 subscription_count
: 14;
382 gint32 ref_count
: 9;
389 registry_cache_add_item (GNode
*parent
,
394 RegistryCacheItem
*item
;
397 g_return_val_if_fail (name
!= NULL
, NULL
);
398 g_return_val_if_fail (parent
!= NULL
, NULL
);
400 item
= g_slice_new (RegistryCacheItem
);
402 /* Ref count should be the number of watch points above this node */
403 item
->ref_count
= ref_count
;
405 item
->name
= g_strdup (name
);
407 item
->subscription_count
= 0;
408 item
->block_count
= 0;
409 item
->readable
= FALSE
;
411 trace ("\treg cache: adding %s to %s\n",
412 name
, ((RegistryCacheItem
*)parent
->data
)->name
);
414 cache_node
= g_node_new (item
);
415 g_node_append (parent
, cache_node
);
420 /* The reference counting of cache tree nodes works like this: when a node is
421 * subscribed to (GSettings wants us to watch that path and everything below
422 * it) the reference count of that node and everything below is increased, as
423 * well as each parent up to the root.
427 _ref_down (GNode
*node
)
429 RegistryCacheItem
*item
= node
->data
;
431 g_node_children_foreach (node
, G_TRAVERSE_ALL
,
432 (GNodeForeachFunc
)_ref_down
, NULL
);
437 registry_cache_ref_tree (GNode
*tree
)
439 RegistryCacheItem
*item
= tree
->data
;
440 GNode
*node
= tree
->parent
;
442 g_return_if_fail (tree
!= NULL
);
446 g_node_children_foreach (tree
, G_TRAVERSE_ALL
,
447 (GNodeForeachFunc
)_ref_down
, NULL
);
449 for (node
= tree
->parent
; node
; node
= node
->parent
)
457 registry_cache_item_free (RegistryCacheItem
*item
)
459 trace ("\t -- Free node %s\n", item
->name
);
462 registry_value_free (item
->value
);
463 g_slice_free (RegistryCacheItem
, item
);
466 /* Unreferencing has to be done bottom-up */
468 _unref_node (GNode
*node
)
470 RegistryCacheItem
*item
= node
->data
;
474 g_warn_if_fail (item
->ref_count
>= 0);
476 if (item
->ref_count
== 0)
478 registry_cache_item_free (item
);
479 g_node_destroy (node
);
484 _unref_down (GNode
*node
)
486 g_node_children_foreach (node
, G_TRAVERSE_ALL
,
487 (GNodeForeachFunc
)_unref_down
, NULL
);
492 registry_cache_unref_tree (GNode
*tree
)
494 GNode
*parent
= tree
->parent
, *next_parent
;
500 next_parent
= parent
->parent
;
501 _unref_node (parent
);
502 parent
= next_parent
;
508 registry_cache_dump (GNode
*cache_node
,
511 RegistryCacheItem
*item
= cache_node
->data
;
513 int depth
= GPOINTER_TO_INT(data
),
517 g_return_if_fail (cache_node
!= NULL
);
519 for (i
=0; i
<depth
; i
++)
522 g_print ("*root*\n");
524 g_print ("'%s' [%i] @ %x = %s\n", item
->name
, item
->ref_count
, (guint
)cache_node
,
525 registry_value_dump (item
->value
));
526 g_node_children_foreach (cache_node
, G_TRAVERSE_ALL
, registry_cache_dump
,
527 GINT_TO_POINTER (new_depth
));
535 } RegistryCacheSearch
;
538 registry_cache_find_compare (GNode
*node
,
541 RegistryCacheSearch
*search
= data
;
542 RegistryCacheItem
*item
= node
->data
;
544 if (item
== NULL
) /* root node */
547 g_return_val_if_fail (search
->name
!= NULL
, FALSE
);
548 g_return_val_if_fail (item
->name
!= NULL
, FALSE
);
550 if (strcmp (search
->name
, item
->name
) == 0)
552 search
->result
= node
;
560 registry_cache_find_immediate_child (GNode
*node
,
563 RegistryCacheSearch search
;
565 search
.result
= NULL
;
568 g_node_traverse (node
, G_POST_ORDER
, G_TRAVERSE_ALL
, 2,
569 registry_cache_find_compare
, &search
);
571 return search
.result
;
575 registry_cache_get_node_for_key_recursive (GNode
*node
,
577 gboolean create_if_not_found
,
578 gint n_parent_watches
)
580 RegistryCacheItem
*item
;
581 gchar
*component
= key_name
;
582 gchar
*c
= strchr (component
, '/');
588 /* We count up how many watch points we travel through finding this node,
589 * because a new node should have as many references as there are watches at
590 * points above it in the tree.
593 if (item
->subscription_count
> 0)
596 child
= registry_cache_find_immediate_child (node
, component
);
597 if (child
== NULL
&& create_if_not_found
)
599 RegistryValue null_value
= { REG_NONE
, {0} };
601 child
= registry_cache_add_item (node
, component
,
602 null_value
, n_parent_watches
);
604 trace ("\tget node for key recursive: new %x = %s.\n", node
, component
);
607 /* We are done if there are no more path components. Allow for a trailing /. */
608 if (child
== NULL
|| c
== NULL
|| *(c
+ 1) == 0)
611 trace ("get node for key recursive: next: %s.\n", c
+ 1);
613 return registry_cache_get_node_for_key_recursive (child
, c
+ 1,
618 /* Look up a GSettings key in the cache. */
620 registry_cache_get_node_for_key (GNode
*root
,
621 const gchar
*key_name
,
622 gboolean create_if_not_found
)
625 GNode
*result
= NULL
;
626 gchar
*component
, *c
;
628 g_return_val_if_fail (key_name
!= NULL
, NULL
);
630 if (key_name
[0] == '/')
633 /* Ignore preceding / */
634 component
= g_strdup (key_name
);
635 c
= strchr (component
, '/');
646 child
= registry_cache_find_immediate_child (root
, component
);
647 if (child
== NULL
&& create_if_not_found
)
649 RegistryValue null_value
= { REG_NONE
, {0} };
651 /* Reference count is set to 0, tree should be referenced by the caller */
652 child
= registry_cache_add_item (root
, component
,
655 trace ("get_node_for_key: New node for component '%s'\n", component
);
660 else if (child
!= NULL
)
661 result
= registry_cache_get_node_for_key_recursive (child
, c
+ 1,
662 create_if_not_found
, 0);
669 /* Check the cache node against the registry key it represents. Return TRUE if
670 * they differ, and update the cache with the new value.
673 registry_cache_update_node (GNode
*cache_node
,
674 RegistryValue registry_value
)
676 RegistryCacheItem
*cache_item
;
678 g_return_val_if_fail (cache_node
!= NULL
, FALSE
);
679 g_return_val_if_fail (cache_node
->data
!= NULL
, FALSE
);
681 cache_item
= cache_node
->data
;
683 if (registry_value
.type
!= cache_item
->value
.type
)
685 /* The type has changed. Update cache item and register it as changed.
686 * Either the schema has changed and this is entirely legitimate, or
687 * whenever the app reads the key it will get the default value due to
690 cache_item
->value
= registry_value
;
694 switch (registry_value
.type
)
698 if (cache_item
->value
.dword
== registry_value
.dword
)
702 cache_item
->value
.dword
= registry_value
.dword
;
708 g_return_val_if_fail (registry_value
.ptr
!= NULL
&&
709 cache_item
->value
.ptr
!= NULL
, FALSE
);
711 if (memcmp (registry_value
.ptr
, cache_item
->value
.ptr
, 8)==0)
713 g_free (registry_value
.ptr
);
718 g_free (cache_item
->value
.ptr
);
719 cache_item
->value
.ptr
= registry_value
.ptr
;
725 /* Value should not exist if it is NULL, an empty string is "" */
726 g_return_val_if_fail (cache_item
->value
.ptr
!= NULL
, FALSE
);
727 g_return_val_if_fail (registry_value
.ptr
!= NULL
, FALSE
);
729 if (strcmp (registry_value
.ptr
, cache_item
->value
.ptr
) == 0)
731 g_free (registry_value
.ptr
);
736 g_free (cache_item
->value
.ptr
);
737 cache_item
->value
.ptr
= registry_value
.ptr
;
742 g_warning ("gregistrybackend: registry_cache_update_node: Unhandled value type");
747 /* Blocking notifications is a useful optimisation. When a change is made
748 * through GSettings we update the cache manually, but a notifcation is
749 * triggered as well. This function is also used for nested notifications,
750 * eg. if /test and /test/foo are watched, and /test/foo/value is changed then
751 * we will get notified both for /test/foo and /test and it is helpful to block
755 registry_cache_block_notification (GNode
*node
)
757 RegistryCacheItem
*item
= node
->data
;
759 g_return_if_fail (node
!= NULL
);
761 if (item
->subscription_count
> 0)
764 if (node
->parent
!= NULL
)
765 registry_cache_block_notification (node
->parent
);
768 static void registry_cache_destroy_tree (GNode
*node
,
769 WatchThreadState
*self
);
771 /***************************************************************************
772 * Reading and writing
773 ***************************************************************************/
776 registry_read (HKEY hpath
,
777 const gchar
*path_name
,
778 const gchar
*value_name
,
779 RegistryValue
*p_value
)
782 DWORD value_data_size
;
784 gunichar2
*value_namew
;
786 g_return_val_if_fail (p_value
!= NULL
, FALSE
);
788 p_value
->type
= REG_NONE
;
791 value_namew
= g_utf8_to_utf16 (value_name
, -1, NULL
, NULL
, NULL
);
793 result
= RegQueryValueExW (hpath
, value_namew
, 0, &p_value
->type
, NULL
, &value_data_size
);
794 if (result
!= ERROR_SUCCESS
)
796 handle_read_error (result
, path_name
, value_name
);
797 g_free (value_namew
);
801 if (p_value
->type
== REG_SZ
&& value_data_size
== 0)
803 p_value
->ptr
= g_strdup ("");
804 g_free (value_namew
);
808 if (p_value
->type
== REG_DWORD
)
809 /* REG_DWORD is inlined */
810 buffer
= (void *)&p_value
->dword
;
812 buffer
= p_value
->ptr
= g_malloc (value_data_size
);
814 result
= RegQueryValueExW (hpath
, value_namew
, 0, NULL
, (LPBYTE
)buffer
, &value_data_size
);
815 g_free (value_namew
);
817 if (result
!= ERROR_SUCCESS
)
819 handle_read_error (result
, path_name
, value_name
);
821 if (p_value
->type
!= REG_DWORD
)
827 if (p_value
->type
== REG_SZ
)
829 gchar
*valueu8
= g_utf16_to_utf8 (p_value
->ptr
, -1, NULL
, NULL
, NULL
);
830 g_free (p_value
->ptr
);
831 p_value
->ptr
= valueu8
;
838 g_registry_backend_read (GSettingsBackend
*backend
,
839 const gchar
*key_name
,
840 const GVariantType
*expected_type
,
841 gboolean default_value
)
843 GRegistryBackend
*self
= G_REGISTRY_BACKEND (backend
);
845 RegistryValue registry_value
;
846 GVariant
*gsettings_value
= NULL
;
847 gchar
*gsettings_type
;
849 g_return_val_if_fail (expected_type
!= NULL
, NULL
);
854 /* Simply read from the cache, which is updated from the registry by the
855 * watch thread as soon as changes can propagate. Any changes not yet in the
856 * cache will have the 'changed' signal emitted after this function returns.
858 EnterCriticalSection (self
->cache_lock
);
859 cache_node
= registry_cache_get_node_for_key (self
->cache_root
, key_name
, FALSE
);
860 LeaveCriticalSection (self
->cache_lock
);
862 trace ("Reading key %s, cache node %x\n", key_name
, cache_node
);
864 /* Maybe it's not set, we can return to default */
865 if (cache_node
== NULL
)
868 trace ("\t- cached value %s\n", registry_value_dump (((RegistryCacheItem
*)cache_node
->data
)->value
));
870 registry_value
= ((RegistryCacheItem
*)cache_node
->data
)->value
;
872 gsettings_type
= g_variant_type_dup_string (expected_type
);
874 /* The registry is user-editable, so we need to be fault-tolerant here. */
875 switch (gsettings_type
[0])
883 if (registry_value
.type
== REG_DWORD
)
884 gsettings_value
= g_variant_new (gsettings_type
, registry_value
.dword
);
889 if (registry_value
.type
== REG_QWORD
)
891 DWORDLONG qword_value
= *(DWORDLONG
*)registry_value
.ptr
;
892 gsettings_value
= g_variant_new (gsettings_type
, qword_value
);
897 if (registry_value
.type
== REG_SZ
)
899 if (gsettings_type
[0] == 's')
900 gsettings_value
= g_variant_new_string ((char *)registry_value
.ptr
);
903 GError
*error
= NULL
;
905 gsettings_value
= g_variant_parse (expected_type
, registry_value
.ptr
,
909 g_message ("gregistrysettingsbackend: error parsing key %s: %s",
910 key_name
, error
->message
);
916 g_free (gsettings_type
);
918 return gsettings_value
;
924 GRegistryBackend
*self
;
929 g_registry_backend_write_one (const char *key_name
,
933 GRegistryBackend
*self
;
934 RegistryWrite
*action
;
939 gunichar2
*path_namew
;
940 gchar
*value_name
= NULL
;
941 gunichar2
*value_namew
;
942 DWORD value_data_size
;
944 gunichar2
*value_dataw
;
948 const gchar
*type_string
;
950 type_string
= g_variant_get_type_string (variant
);
952 self
= G_REGISTRY_BACKEND (action
->self
);
953 hroot
= action
->hroot
;
955 value
.type
= REG_NONE
;
958 switch (type_string
[0])
966 value
.type
= REG_DWORD
;
967 value
.dword
= g_variant_get_as_dword (variant
);
969 value_data
= &value
.dword
;
974 value
.type
= REG_QWORD
;
975 value
.ptr
= g_malloc (8);
976 *(DWORDLONG
*)value
.ptr
= g_variant_get_as_qword (variant
);
978 value_data
= value
.ptr
;
983 if (type_string
[0] == 's')
986 value
.ptr
= g_strdup (g_variant_get_string (variant
, &length
));
987 value_data_size
= length
+ 1;
988 value_data
= value
.ptr
;
992 GString
*value_string
;
993 value_string
= g_variant_print_string (variant
, NULL
, FALSE
);
994 value_data_size
= value_string
->len
+ 1;
995 value
.ptr
= value_data
= g_string_free (value_string
, FALSE
);
1000 /* First update the cache, because the value may not have changed and we can
1003 * If 'value' has changed then its memory will not be freed by update_node(),
1004 * because it will be stored in the node.
1006 EnterCriticalSection (self
->cache_lock
);
1007 node
= registry_cache_get_node_for_key (self
->cache_root
, key_name
, TRUE
);
1008 changed
= registry_cache_update_node (node
, value
);
1009 LeaveCriticalSection (self
->cache_lock
);
1014 /* Block the next notification to any watch points above this location,
1015 * because they will each get triggered on a change that is already updated
1018 registry_cache_block_notification (node
);
1020 path_name
= parse_key (key_name
, NULL
, &value_name
);
1022 trace ("Set key: %s / %s\n", path_name
, value_name
);
1024 path_namew
= g_utf8_to_utf16 (path_name
, -1, NULL
, NULL
, NULL
);
1026 /* Store the value in the registry */
1027 result
= RegCreateKeyExW (hroot
, path_namew
, 0, NULL
, 0, KEY_WRITE
, NULL
, &hpath
, NULL
);
1028 if (result
!= ERROR_SUCCESS
)
1030 g_message_win32_error (result
, "gregistrybackend: opening key %s failed",
1032 registry_value_free (value
);
1033 g_free (path_namew
);
1038 g_free (path_namew
);
1040 value_namew
= g_utf8_to_utf16 (value_name
, -1, NULL
, NULL
, NULL
);
1044 switch (type_string
[0])
1056 value_dataw
= g_utf8_to_utf16 (value_data
, -1, NULL
, NULL
, NULL
);
1057 value_data
= value_dataw
;
1058 value_data_size
= (DWORD
)((wcslen (value_data
) + 1) * sizeof (gunichar2
));
1062 result
= RegSetValueExW (hpath
, value_namew
, 0, value
.type
, value_data
, value_data_size
);
1064 if (result
!= ERROR_SUCCESS
)
1065 g_message_win32_error (result
, "gregistrybackend: setting value %s\\%s\\%s failed.\n",
1066 self
->base_path
, path_name
, value_name
);
1068 /* If the write fails then it will seem like the value has changed until the
1069 * next execution (because we wrote to the cache first). There's no reason
1070 * for it to fail unless something is weirdly broken, however.
1073 RegCloseKey (hpath
);
1075 g_free (value_namew
);
1076 g_free (value_dataw
);
1081 /* The dconf write policy is to do the write while making out it succeeded,
1082 * and then backtrack if it didn't. The registry functions are synchronous so
1083 * we can't do that. */
1086 g_registry_backend_write (GSettingsBackend
*backend
,
1087 const gchar
*key_name
,
1089 gpointer origin_tag
)
1091 GRegistryBackend
*self
= G_REGISTRY_BACKEND (backend
);
1094 RegistryWrite action
;
1096 result
= RegCreateKeyExW (HKEY_CURRENT_USER
, self
->base_pathw
, 0, NULL
, 0,
1097 KEY_WRITE
, NULL
, &hroot
, NULL
);
1098 if (result
!= ERROR_SUCCESS
)
1100 trace ("Error opening/creating key %s.\n", self
->base_path
);
1105 action
.hroot
= hroot
;
1106 g_registry_backend_write_one (key_name
, value
, &action
);
1107 g_settings_backend_changed (backend
, key_name
, origin_tag
);
1109 RegCloseKey (hroot
);
1115 g_registry_backend_write_tree (GSettingsBackend
*backend
,
1117 gpointer origin_tag
)
1119 GRegistryBackend
*self
= G_REGISTRY_BACKEND (backend
);
1122 RegistryWrite action
;
1124 result
= RegCreateKeyExW (HKEY_CURRENT_USER
, self
->base_pathw
, 0, NULL
, 0,
1125 KEY_WRITE
, NULL
, &hroot
, NULL
);
1126 if (result
!= ERROR_SUCCESS
)
1128 trace ("Error opening/creating key %s.\n", self
->base_path
);
1133 action
.hroot
= hroot
;
1134 g_tree_foreach (values
, (GTraverseFunc
)g_registry_backend_write_one
,
1137 g_settings_backend_changed_tree (backend
, values
, origin_tag
);
1138 RegCloseKey (hroot
);
1144 g_registry_backend_reset (GSettingsBackend
*backend
,
1145 const gchar
*key_name
,
1146 gpointer origin_tag
)
1148 GRegistryBackend
*self
= G_REGISTRY_BACKEND (backend
);
1150 gunichar2
*path_namew
;
1151 gchar
*value_name
= NULL
;
1152 gunichar2
*value_namew
;
1157 /* Remove from cache */
1158 EnterCriticalSection (self
->cache_lock
);
1159 cache_node
= registry_cache_get_node_for_key (self
->cache_root
, key_name
, FALSE
);
1161 registry_cache_destroy_tree (cache_node
, self
->watch
);
1162 LeaveCriticalSection (self
->cache_lock
);
1164 /* Remove from the registry */
1165 path_name
= parse_key (key_name
, self
->base_path
, &value_name
);
1166 path_namew
= g_utf8_to_utf16 (path_name
, -1, NULL
, NULL
, NULL
);
1168 result
= RegOpenKeyExW (HKEY_CURRENT_USER
, path_namew
, 0, KEY_SET_VALUE
, &hpath
);
1169 g_free (path_namew
);
1171 if (result
!= ERROR_SUCCESS
)
1173 g_message_win32_error (result
, "Registry: resetting key '%s'", path_name
);
1178 value_namew
= g_utf8_to_utf16 (value_name
, -1, NULL
, NULL
, NULL
);
1180 result
= RegDeleteValueW (hpath
, value_namew
);
1181 g_free (value_namew
);
1182 RegCloseKey (hpath
);
1184 if (result
!= ERROR_SUCCESS
)
1186 g_message_win32_error (result
, "Registry: resetting key '%s'", path_name
);
1193 g_settings_backend_changed (backend
, key_name
, origin_tag
);
1197 g_registry_backend_get_writable (GSettingsBackend
*backend
,
1198 const gchar
*key_name
)
1200 GRegistryBackend
*self
= G_REGISTRY_BACKEND (backend
);
1202 gunichar2
*path_namew
;
1207 path_name
= parse_key (key_name
, self
->base_path
, &value_name
);
1208 path_namew
= g_utf8_to_utf16 (path_name
, -1, NULL
, NULL
, NULL
);
1210 /* Note: we create the key if it wasn't created yet, but it is not much
1211 * of a problem since at the end of the day we have to create it anyway
1212 * to read or to write from it
1214 result
= RegCreateKeyExW (HKEY_CURRENT_USER
, path_namew
, 0, NULL
, 0,
1215 KEY_WRITE
, NULL
, &hpath
, NULL
);
1216 g_free (path_namew
);
1218 if (result
!= ERROR_SUCCESS
)
1220 trace ("Error opening/creating key to check writability: %s.\n",
1228 RegCloseKey (hpath
);
1233 /********************************************************************************
1234 * Spot-the-difference engine
1235 ********************************************************************************/
1238 _free_watch (WatchThreadState
*self
,
1243 registry_cache_item_reset_readable (GNode
*node
,
1246 RegistryCacheItem
*item
= node
->data
;
1247 item
->readable
= FALSE
;
1250 /* Delete a node and any children, for when it has been deleted from the registry */
1252 registry_cache_destroy_tree (GNode
*node
,
1253 WatchThreadState
*self
)
1255 RegistryCacheItem
*item
= node
->data
;
1257 g_node_children_foreach (node
, G_TRAVERSE_ALL
,
1258 (GNodeForeachFunc
)registry_cache_destroy_tree
, self
);
1260 if (item
->subscription_count
> 0)
1264 /* There must be some watches active if this node is a watch point */
1265 g_warn_if_fail (self
->cache_nodes
->len
> 1);
1267 /* This is a watch point that has been deleted. Let's free the watch! */
1268 for (i
= 1; i
< self
->cache_nodes
->len
; i
++)
1270 if (g_ptr_array_index (self
->cache_nodes
, i
) == node
)
1274 if (i
>= self
->cache_nodes
->len
)
1275 g_warning ("watch thread: a watch point was deleted, but unable to "
1276 "find '%s' in the list of %i watch nodes\n", item
->name
,
1277 self
->cache_nodes
->len
- 1);
1280 _free_watch (self
, i
, node
);
1281 g_atomic_int_inc (&self
->watches_remaining
);
1284 registry_cache_item_free (node
->data
);
1285 g_node_destroy (node
);
1288 /* One of these is sent down the pipe when something happens in the registry. */
1291 GRegistryBackend
*self
;
1292 gchar
*prefix
; /* prefix is a gsettings path, all items are subkeys of this. */
1293 GPtrArray
*items
; /* each item is a subkey below prefix that has changed. */
1298 RegistryEvent
*event
;
1299 gchar
*current_key_name
;
1303 mark_all_subkeys_as_changed (GNode
*node
,
1306 RegistryCacheItem
*item
= node
->data
;
1307 DeletedItemData
*item_data
= data
;
1309 if (item_data
->current_key_name
== NULL
)
1310 item_data
->current_key_name
= g_strdup (item
->name
);
1315 name
= g_build_path ("/", item_data
->current_key_name
, item
->name
, NULL
);
1316 g_free (item_data
->current_key_name
);
1317 item_data
->current_key_name
= name
;
1320 /* Iterate until we find an item that is a value */
1321 if (item
->value
.type
== REG_NONE
)
1322 g_node_children_foreach (node
, G_TRAVERSE_ALL
,
1323 mark_all_subkeys_as_changed
, data
);
1325 g_ptr_array_add (item_data
->event
->items
, item_data
->current_key_name
);
1329 registry_cache_remove_deleted (GNode
*node
,
1332 RegistryCacheItem
*item
= node
->data
;
1333 RegistryEvent
*event
= data
;
1335 if (!item
->readable
)
1337 DeletedItemData item_data
;
1339 item_data
.event
= event
;
1340 item_data
.current_key_name
= NULL
;
1342 mark_all_subkeys_as_changed (node
, &item_data
);
1343 registry_cache_destroy_tree (node
, event
->self
->watch
);
1347 /* Update cache from registry, and optionally report on the changes.
1349 * This function is sometimes called from the watch thread, with no locking. It
1350 * does call g_registry_backend functions, but this is okay because they only
1351 * access self->base which is constant.
1353 * When looking at this code bear in mind the terminology: in the registry, keys
1354 * are containers that contain values, and other keys. Keys have a 'default'
1355 * value which we always ignore.
1357 * n_parent_watches: a counter used to set the reference count of any new nodes
1358 * that are created - they should have as many references as
1359 * there are notifications that are watching them.
1362 registry_cache_update (GRegistryBackend
*self
,
1364 const gchar
*prefix
,
1365 const gchar
*partial_key_name
,
1368 RegistryEvent
*event
)
1370 gunichar2 bufferw
[MAX_KEY_NAME_LENGTH
+ 1];
1375 RegistryCacheItem
*item
;
1377 item
= cache_node
->data
;
1379 if (item
->subscription_count
> 0)
1382 /* prefix is the level that all changes occur below; partial_key_name should
1383 * be NULL on the first call to this function */
1384 key_name
= g_build_path ("/", prefix
, partial_key_name
, NULL
);
1386 trace ("registry cache update: %s. Node %x has %i children\n", key_name
,
1387 cache_node
, g_node_n_children (cache_node
));
1389 /* Start by zeroing 'readable' flag. When the registry traversal is done, any unreadable nodes
1390 * must have been deleted from the registry.
1392 g_node_children_foreach (cache_node
, G_TRAVERSE_ALL
,
1393 registry_cache_item_reset_readable
, NULL
);
1395 /* Recurse into each subpath at the current level, if any */
1399 DWORD bufferw_size
= MAX_KEY_NAME_LENGTH
+ 1;
1402 result
= RegEnumKeyExW (hpath
, i
++, bufferw
, &bufferw_size
, NULL
, NULL
, NULL
, NULL
);
1403 if (result
!= ERROR_SUCCESS
)
1406 result
= RegOpenKeyExW (hpath
, bufferw
, 0, KEY_READ
, &hsubpath
);
1407 if (result
== ERROR_SUCCESS
)
1410 RegistryCacheItem
*child_item
;
1411 gchar
*new_partial_key_name
;
1413 buffer
= g_utf16_to_utf8 (bufferw
, -1, NULL
, NULL
, NULL
);
1417 subkey_node
= registry_cache_find_immediate_child (cache_node
, buffer
);
1418 if (subkey_node
== NULL
)
1420 RegistryValue null_value
= {REG_NONE
, {0}};
1421 subkey_node
= registry_cache_add_item (cache_node
, buffer
,
1422 null_value
, n_watches
);
1425 new_partial_key_name
= g_build_path ("/", partial_key_name
, buffer
, NULL
);
1426 registry_cache_update (self
, hsubpath
, prefix
, new_partial_key_name
,
1427 subkey_node
, n_watches
, event
);
1428 g_free (new_partial_key_name
);
1430 child_item
= subkey_node
->data
;
1431 child_item
->readable
= TRUE
;
1434 RegCloseKey (hsubpath
);
1438 if (result
!= ERROR_NO_MORE_ITEMS
)
1439 g_message_win32_error (result
, "gregistrybackend: error enumerating subkeys for cache.");
1441 /* Enumerate each value at 'path' and check if it has changed */
1445 DWORD bufferw_size
= MAX_KEY_NAME_LENGTH
+ 1;
1446 GNode
*cache_child_node
;
1447 RegistryCacheItem
*child_item
;
1448 RegistryValue value
;
1449 gboolean changed
= FALSE
;
1451 result
= RegEnumValueW (hpath
, i
++, bufferw
, &bufferw_size
, NULL
, NULL
, NULL
, NULL
);
1452 if (result
!= ERROR_SUCCESS
)
1455 buffer
= g_utf16_to_utf8 (bufferw
, -1, NULL
, NULL
, NULL
);
1457 if (buffer
== NULL
|| buffer
[0] == 0)
1459 /* This is the key's 'default' value, for which we have no use. */
1464 cache_child_node
= registry_cache_find_immediate_child (cache_node
, buffer
);
1466 if (!registry_read (hpath
, key_name
, buffer
, &value
))
1472 trace ("\tgot value %s for %s, node %x\n",
1473 registry_value_dump (value
), buffer
, cache_child_node
);
1475 if (cache_child_node
== NULL
)
1477 /* This is a new value */
1478 cache_child_node
= registry_cache_add_item (cache_node
, buffer
, value
,
1484 /* For efficiency, instead of converting every value back to a GVariant to
1485 * compare it, we compare them as registry values (integers, or string
1486 * representations of the variant). The spurious change notifications that may
1487 * result should not be a big issue.
1489 * Note that 'value' is swallowed or freed.
1491 changed
= registry_cache_update_node (cache_child_node
, value
);
1494 child_item
= cache_child_node
->data
;
1495 child_item
->readable
= TRUE
;
1496 if (changed
&& event
!= NULL
)
1500 if (partial_key_name
== NULL
)
1501 item
= g_strdup (buffer
);
1503 item
= g_build_path ("/", partial_key_name
, buffer
, NULL
);
1505 g_ptr_array_add (event
->items
, item
);
1511 if (result
!= ERROR_NO_MORE_ITEMS
)
1512 g_message_win32_error (result
, "gregistrybackend: error enumerating values for cache");
1514 /* Any nodes now left unreadable must have been deleted, remove them from cache */
1515 g_node_children_foreach (cache_node
, G_TRAVERSE_ALL
,
1516 registry_cache_remove_deleted
, event
);
1518 trace ("registry cache update complete.\n");
1523 /***********************************************************************************
1524 * Thread to watch for registry change events
1525 ***********************************************************************************/
1527 /* Called by watch thread. Apply for notifications on a registry key and its subkeys. */
1529 registry_watch_key (HKEY hpath
,
1532 return RegNotifyChangeKeyValue (hpath
, TRUE
,
1533 REG_NOTIFY_CHANGE_NAME
| REG_NOTIFY_CHANGE_LAST_SET
,
1537 /* This handler runs in the main thread to emit the changed signals */
1539 watch_handler (RegistryEvent
*event
)
1541 trace ("Watch handler: got event in %s, items %i.\n", event
->prefix
, event
->items
->len
);
1543 /* GSettings requires us to NULL-terminate the array. */
1544 g_ptr_array_add (event
->items
, NULL
);
1545 g_settings_backend_keys_changed (G_SETTINGS_BACKEND (event
->self
), event
->prefix
,
1546 (gchar
const **)event
->items
->pdata
, NULL
);
1548 g_ptr_array_free (event
->items
, TRUE
);
1549 g_free (event
->prefix
);
1550 g_object_unref (event
->self
);
1551 g_slice_free (RegistryEvent
, event
);
1553 return G_SOURCE_REMOVE
;
1557 _free_watch (WatchThreadState
*self
,
1565 g_return_if_fail (index
> 0 && index
< self
->events
->len
);
1567 cond
= g_ptr_array_index (self
->events
, index
);
1568 hpath
= g_ptr_array_index (self
->handles
, index
);
1569 prefix
= g_ptr_array_index (self
->prefixes
, index
);
1571 trace ("Freeing watch %i [%s]\n", index
, prefix
);
1573 /* These can be NULL if the watch was already dead, this can happen when eg.
1574 * a key is deleted but GSettings is still subscribed to it - the watch is
1575 * kept alive so that the unsubscribe function works properly, but does not
1579 RegCloseKey (hpath
);
1581 if (cache_node
!= NULL
)
1583 //registry_cache_dump (G_REGISTRY_BACKEND (self->owner)->cache_root, NULL);
1584 registry_cache_unref_tree (cache_node
);
1590 /* As long as we remove from each array at the same time, it doesn't matter that
1591 * their orders get messed up - they all get messed up the same.
1593 g_ptr_array_remove_index_fast (self
->handles
, index
);
1594 g_ptr_array_remove_index_fast (self
->events
, index
);
1595 g_ptr_array_remove_index_fast (self
->prefixes
, index
);
1596 g_ptr_array_remove_index_fast (self
->cache_nodes
, index
);
1600 watch_thread_handle_message (WatchThreadState
*self
)
1602 switch (self
->message
.type
)
1604 case WATCH_THREAD_NONE
:
1605 trace ("watch thread: you woke me up for nothin', man!");
1608 case WATCH_THREAD_ADD_WATCH
:
1610 RegistryWatch
*watch
= &self
->message
.watch
;
1613 result
= registry_watch_key (watch
->hpath
, watch
->event
);
1615 if (result
== ERROR_SUCCESS
)
1617 g_ptr_array_add (self
->events
, watch
->event
);
1618 g_ptr_array_add (self
->handles
, watch
->hpath
);
1619 g_ptr_array_add (self
->prefixes
, watch
->prefix
);
1620 g_ptr_array_add (self
->cache_nodes
, watch
->cache_node
);
1622 trace ("watch thread: new watch on %s, %i total\n", watch
->prefix
,
1627 g_message_win32_error (result
, "watch thread: could not watch %s", watch
->prefix
);
1629 CloseHandle (watch
->event
);
1630 RegCloseKey (watch
->hpath
);
1631 g_free (watch
->prefix
);
1632 registry_cache_unref_tree (watch
->cache_node
);
1637 case WATCH_THREAD_REMOVE_WATCH
:
1640 RegistryCacheItem
*cache_item
;
1643 for (i
= 1; i
< self
->prefixes
->len
; i
++)
1645 if (strcmp (g_ptr_array_index (self
->prefixes
, i
),
1646 self
->message
.watch
.prefix
) == 0)
1650 if (i
>= self
->prefixes
->len
)
1652 /* Don't make a fuss if the prefix is not being watched because
1653 * maybe the path was deleted so we removed the watch.
1655 trace ("unsubscribe: prefix %s is not being watched [%i things are]!\n",
1656 self
->message
.watch
.prefix
, self
->prefixes
->len
);
1657 g_free (self
->message
.watch
.prefix
);
1661 cache_node
= g_ptr_array_index (self
->cache_nodes
, i
);
1663 trace ("watch thread: unsubscribe: freeing node %p, prefix %s, index %i\n",
1664 cache_node
, self
->message
.watch
.prefix
, i
);
1666 if (cache_node
!= NULL
)
1668 cache_item
= cache_node
->data
;
1670 /* There may be more than one GSettings object subscribed to this
1671 * path, only free the watch when the last one unsubscribes.
1673 cache_item
->subscription_count
--;
1674 if (cache_item
->subscription_count
> 0)
1678 _free_watch (self
, i
, cache_node
);
1679 g_free (self
->message
.watch
.prefix
);
1681 g_atomic_int_inc (&self
->watches_remaining
);
1685 case WATCH_THREAD_STOP
:
1689 /* Free any remaining cache and watch handles */
1690 for (i
= 1; i
< self
->events
->len
; i
++)
1691 _free_watch (self
, i
, g_ptr_array_index (self
->cache_nodes
, i
));
1693 SetEvent (self
->message_received_event
);
1698 self
->message
.type
= WATCH_THREAD_NONE
;
1699 SetEvent (self
->message_received_event
);
1702 /* Thread which watches for win32 registry events */
1704 watch_thread_function (LPVOID parameter
)
1706 WatchThreadState
*self
= (WatchThreadState
*)parameter
;
1709 self
->events
= g_ptr_array_new ();
1710 self
->handles
= g_ptr_array_new ();
1711 self
->prefixes
= g_ptr_array_new ();
1712 self
->cache_nodes
= g_ptr_array_new ();
1713 g_ptr_array_add (self
->events
, self
->message_sent_event
);
1714 g_ptr_array_add (self
->handles
, NULL
);
1715 g_ptr_array_add (self
->prefixes
, NULL
);
1716 g_ptr_array_add (self
->cache_nodes
, NULL
);
1720 trace ("watch thread: going to sleep; %i events watched.\n", self
->events
->len
);
1721 result
= WaitForMultipleObjects (self
->events
->len
, self
->events
->pdata
, FALSE
, INFINITE
);
1723 if (result
== WAIT_OBJECT_0
)
1725 /* A message to you. The sender (main thread) will block until we signal the received
1726 * event, so there should be no danger of it sending another before we receive the
1729 watch_thread_handle_message (self
);
1731 else if (result
> WAIT_OBJECT_0
&& result
<= WAIT_OBJECT_0
+ self
->events
->len
)
1737 RegistryCacheItem
*cache_item
;
1738 RegistryEvent
*event
;
1741 /* One of our notifications has triggered. All we know is which one, and which key
1742 * this is for. We do most of the processing here, because we may as well. If the
1743 * registry changes further while we are processing it doesn't matter - we will then
1744 * receive another change notification from the OS anyway.
1746 notify_index
= result
- WAIT_OBJECT_0
;
1747 hpath
= g_ptr_array_index (self
->handles
, notify_index
);
1748 cond
= g_ptr_array_index (self
->events
, notify_index
);
1749 prefix
= g_ptr_array_index (self
->prefixes
, notify_index
);
1750 cache_node
= g_ptr_array_index (self
->cache_nodes
, notify_index
);
1752 trace ("Watch thread: notify received on prefix %i: %s.\n", notify_index
, prefix
);
1754 if (cache_node
== NULL
)
1756 /* This path has been deleted */
1757 trace ("Notify received on a path that was deleted\n");
1761 /* Firstly we need to reapply for the notification, because (what a
1762 * sensible API) we won't receive any more. MSDN is pretty
1763 * inconsistent on this matter:
1764 * http://msdn.microsoft.com/en-us/library/ms724892%28VS.85%29.aspx
1765 * http://support.microsoft.com/kb/236570
1766 * But my tests (on Windows XP SP3) show that we need to reapply
1769 result
= registry_watch_key (hpath
, cond
);
1771 if (result
!= ERROR_SUCCESS
)
1773 /* Watch failed, most likely because the key has just been
1774 * deleted. Free the watch and unref the cache nodes.
1776 if (result
!= ERROR_KEY_DELETED
)
1777 g_message_win32_error (result
, "watch thread: failed to watch %s", prefix
);
1779 _free_watch (self
, notify_index
, cache_node
);
1780 g_atomic_int_inc (&self
->watches_remaining
);
1784 /* The notification may have been blocked because we just changed
1785 * some data ourselves.
1787 cache_item
= cache_node
->data
;
1788 if (cache_item
->block_count
)
1790 cache_item
->block_count
--;
1791 trace ("Watch thread: notify blocked at %s\n", prefix
);
1795 /* Now we update our stored cache from registry data, and find which keys have
1796 * actually changed. If more changes happen while we are processing, we will get
1797 * another event because we have reapplied for change notifications already.
1799 * Working here rather than in the main thread is preferable because the UI is less
1800 * likely to block (only when changing notification subscriptions).
1802 event
= g_slice_new (RegistryEvent
);
1803 event
->self
= g_object_ref (self
->owner
);
1804 event
->prefix
= g_strdup (prefix
);
1805 event
->items
= g_ptr_array_new_with_free_func (g_free
);
1807 EnterCriticalSection (G_REGISTRY_BACKEND (self
->owner
)->cache_lock
);
1808 registry_cache_update (G_REGISTRY_BACKEND (self
->owner
), hpath
,
1809 prefix
, NULL
, cache_node
, 0, event
);
1810 LeaveCriticalSection (G_REGISTRY_BACKEND (self
->owner
)->cache_lock
);
1812 if (event
->items
->len
> 0)
1813 g_idle_add ((GSourceFunc
) watch_handler
, event
);
1816 g_object_unref (event
->self
);
1817 g_free (event
->prefix
);
1818 g_ptr_array_free (event
->items
, TRUE
);
1819 g_slice_free (RegistryEvent
, event
);
1824 /* God knows what has happened */
1825 g_message_win32_error (GetLastError(), "watch thread: WaitForMultipleObjects error");
1833 watch_start (GRegistryBackend
*self
)
1835 WatchThreadState
*watch
;
1837 g_return_val_if_fail (self
->watch
== NULL
, FALSE
);
1839 watch
= g_slice_new (WatchThreadState
);
1840 watch
->owner
= G_SETTINGS_BACKEND (self
);
1842 watch
->watches_remaining
= MAX_WATCHES
;
1844 watch
->message_lock
= g_slice_new (CRITICAL_SECTION
);
1845 InitializeCriticalSection (watch
->message_lock
);
1846 watch
->message_sent_event
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
1847 watch
->message_received_event
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
1848 if (watch
->message_sent_event
== NULL
|| watch
->message_received_event
== NULL
)
1850 g_message_win32_error (GetLastError (), "gregistrybackend: Failed to create sync objects.");
1854 /* Use a small stack to make the thread more lightweight. */
1855 watch
->thread
= CreateThread (NULL
, 1024, watch_thread_function
, watch
, 0, NULL
);
1856 if (watch
->thread
== NULL
)
1858 g_message_win32_error (GetLastError (), "gregistrybackend: Failed to create notify watch thread.");
1862 self
->watch
= watch
;
1867 DeleteCriticalSection (watch
->message_lock
);
1868 g_slice_free (CRITICAL_SECTION
, watch
->message_lock
);
1869 if (watch
->message_sent_event
!= NULL
)
1870 CloseHandle (watch
->message_sent_event
);
1871 if (watch
->message_received_event
!= NULL
)
1872 CloseHandle (watch
->message_received_event
);
1873 g_slice_free (WatchThreadState
, watch
);
1878 /* This function assumes you hold the message lock! */
1880 watch_stop_unlocked (GRegistryBackend
*self
)
1882 WatchThreadState
*watch
= self
->watch
;
1885 g_return_if_fail (watch
!= NULL
);
1887 watch
->message
.type
= WATCH_THREAD_STOP
;
1888 SetEvent (watch
->message_sent_event
);
1890 /* This is signalled as soon as the message is received. We must not return
1891 * while the watch thread is still firing off callbacks. Freeing all of the
1892 * memory is done in the watch thread after this is signalled.
1894 result
= WaitForSingleObject (watch
->message_received_event
, INFINITE
);
1895 if (result
!= WAIT_OBJECT_0
)
1897 g_warning ("gregistrybackend: unable to stop watch thread.");
1901 LeaveCriticalSection (watch
->message_lock
);
1902 DeleteCriticalSection (watch
->message_lock
);
1903 g_slice_free (CRITICAL_SECTION
, watch
->message_lock
);
1904 CloseHandle (watch
->message_sent_event
);
1905 CloseHandle (watch
->message_received_event
);
1906 CloseHandle (watch
->thread
);
1907 g_slice_free (WatchThreadState
, watch
);
1909 trace ("\nwatch thread: %x: all data freed.\n", self
);
1914 watch_add_notify (GRegistryBackend
*self
,
1917 gchar
*gsettings_prefix
)
1919 WatchThreadState
*watch
= self
->watch
;
1921 RegistryCacheItem
*cache_item
;
1926 g_return_val_if_fail (watch
!= NULL
, FALSE
);
1928 trace ("watch_add_notify: prefix %s.\n", gsettings_prefix
);
1930 /* Duplicate tree into the cache in the main thread, before we add the notify: if we do it in the
1931 * thread we can miss changes while we are caching.
1933 EnterCriticalSection (self
->cache_lock
);
1934 cache_node
= registry_cache_get_node_for_key (self
->cache_root
, gsettings_prefix
, TRUE
);
1936 if (cache_node
== NULL
|| cache_node
->data
== NULL
)
1938 LeaveCriticalSection (self
->cache_lock
);
1939 g_warn_if_reached ();
1943 cache_item
= cache_node
->data
;
1945 cache_item
->subscription_count
++;
1946 if (cache_item
->subscription_count
> 1)
1948 trace ("watch_add_notify: prefix %s already watched, %i subscribers.\n",
1949 gsettings_prefix
, cache_item
->subscription_count
);
1950 LeaveCriticalSection (self
->cache_lock
);
1954 registry_cache_ref_tree (cache_node
);
1955 registry_cache_update (self
, hpath
, gsettings_prefix
, NULL
, cache_node
, 0, NULL
);
1956 //registry_cache_dump (self->cache_root, NULL);
1957 LeaveCriticalSection (self
->cache_lock
);
1959 EnterCriticalSection (watch
->message_lock
);
1960 watch
->message
.type
= WATCH_THREAD_ADD_WATCH
;
1961 watch
->message
.watch
.event
= event
;
1962 watch
->message
.watch
.hpath
= hpath
;
1963 watch
->message
.watch
.prefix
= gsettings_prefix
;
1964 watch
->message
.watch
.cache_node
= cache_node
;
1966 SetEvent (watch
->message_sent_event
);
1968 /* Wait for the received event in return, to avoid sending another message before the first
1969 * one was received. If it takes > 200ms there is a possible race but the worst outcome is
1970 * a notification is ignored.
1975 WaitForSingleObject (watch
->message_received_event
, 200);
1977 if (result
!= WAIT_OBJECT_0
)
1978 trace ("watch thread is slow to respond - notification may not be added.");
1981 LeaveCriticalSection (watch
->message_lock
);
1987 watch_remove_notify (GRegistryBackend
*self
,
1988 const gchar
*key_name
)
1990 WatchThreadState
*watch
= self
->watch
;
1993 if (self
->watch
== NULL
)
1994 /* Here we assume that the unsubscribe message is for somewhere that was
1995 * deleted, and so it has already been removed and the watch thread has
2000 EnterCriticalSection (watch
->message_lock
);
2001 watch
->message
.type
= WATCH_THREAD_REMOVE_WATCH
;
2002 watch
->message
.watch
.prefix
= g_strdup (key_name
);
2004 SetEvent (watch
->message_sent_event
);
2006 /* Wait for the received event in return, to avoid sending another message before the first
2009 result
= WaitForSingleObject (watch
->message_received_event
, INFINITE
);
2011 if (result
!= ERROR_SUCCESS
)
2012 g_warning ("unsubscribe from %s: message not acknowledged", key_name
);
2014 if (g_atomic_int_get (&watch
->watches_remaining
) >= MAX_WATCHES
)
2015 /* Stop it before any new ones can get added and confuse things */
2016 watch_stop_unlocked (self
);
2018 LeaveCriticalSection (watch
->message_lock
);
2021 /* dconf semantics are: if the key ends in /, watch the keys underneath it - if not, watch that
2022 * key. Our job is easier because keys and values are separate.
2025 g_registry_backend_subscribe (GSettingsBackend
*backend
,
2026 const char *key_name
)
2028 GRegistryBackend
*self
= G_REGISTRY_BACKEND (backend
);
2030 gunichar2
*path_namew
;
2031 gchar
*value_name
= NULL
;
2036 if (self
->watch
== NULL
&& !watch_start (self
))
2039 if (g_atomic_int_dec_and_test (&self
->watch
->watches_remaining
))
2041 g_atomic_int_inc (&self
->watch
->watches_remaining
);
2042 g_warning ("subscribe() failed: only %i different paths may be watched.", MAX_WATCHES
);
2046 path_name
= parse_key (key_name
, self
->base_path
, &value_name
);
2048 /* Must check for this, otherwise strange crashes occur because the cache
2049 * node that is being watched gets freed. All path names to subscribe must
2052 if (value_name
!= NULL
&& *value_name
!= 0)
2053 g_warning ("subscribe() failed: path must end in a /, got %s", key_name
);
2055 trace ("Subscribing to %s [registry %s / %s] - watch %x\n", key_name
, path_name
, value_name
, self
->watch
);
2057 path_namew
= g_utf8_to_utf16 (path_name
, -1, NULL
, NULL
, NULL
);
2060 /* Give the caller the benefit of the doubt if the key doesn't exist and create it. The caller
2061 * is almost certainly a new g_settings with this path as base path. */
2062 result
= RegCreateKeyExW (HKEY_CURRENT_USER
, path_namew
, 0, NULL
, 0, KEY_READ
, NULL
, &hpath
,
2064 g_free (path_namew
);
2066 if (result
!= ERROR_SUCCESS
)
2068 g_message_win32_error (result
, "gregistrybackend: Unable to subscribe to key %s.", key_name
);
2069 g_atomic_int_inc (&self
->watch
->watches_remaining
);
2073 event
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
2076 g_message_win32_error (result
, "gregistrybackend: CreateEvent failed.");
2077 g_atomic_int_inc (&self
->watch
->watches_remaining
);
2078 RegCloseKey (hpath
);
2082 /* The actual watch is added by the thread, which has to re-subscribe each time it
2083 * receives a change. */
2084 if (!watch_add_notify (self
, event
, hpath
, g_strdup (key_name
)))
2086 g_atomic_int_inc (&self
->watch
->watches_remaining
);
2087 RegCloseKey (hpath
);
2088 CloseHandle (event
);
2093 g_registry_backend_unsubscribe (GSettingsBackend
*backend
,
2094 const char *key_name
)
2096 trace ("unsubscribe: %s.\n", key_name
);
2098 watch_remove_notify (G_REGISTRY_BACKEND (backend
), key_name
);
2101 /********************************************************************************
2102 * Object management junk
2103 ********************************************************************************/
2106 g_registry_backend_finalize (GObject
*object
)
2108 GRegistryBackend
*self
= G_REGISTRY_BACKEND (object
);
2109 RegistryCacheItem
*item
;
2111 item
= self
->cache_root
->data
;
2112 g_warn_if_fail (item
->ref_count
== 1);
2114 registry_cache_item_free (item
);
2115 g_node_destroy (self
->cache_root
);
2117 if (self
->watch
!= NULL
)
2119 EnterCriticalSection (self
->watch
->message_lock
);
2120 watch_stop_unlocked (self
);
2123 DeleteCriticalSection (self
->cache_lock
);
2124 g_slice_free (CRITICAL_SECTION
, self
->cache_lock
);
2126 g_free (self
->base_path
);
2127 g_free (self
->base_pathw
);
2131 g_registry_backend_class_init (GRegistryBackendClass
*class)
2133 GSettingsBackendClass
*backend_class
= G_SETTINGS_BACKEND_CLASS (class);
2134 GObjectClass
*object_class
= G_OBJECT_CLASS (class);
2136 object_class
->finalize
= g_registry_backend_finalize
;
2138 backend_class
->read
= g_registry_backend_read
;
2139 backend_class
->write
= g_registry_backend_write
;
2140 backend_class
->write_tree
= g_registry_backend_write_tree
;
2141 backend_class
->reset
= g_registry_backend_reset
;
2142 backend_class
->get_writable
= g_registry_backend_get_writable
;
2143 backend_class
->subscribe
= g_registry_backend_subscribe
;
2144 backend_class
->unsubscribe
= g_registry_backend_unsubscribe
;
2148 g_registry_backend_init (GRegistryBackend
*self
)
2150 RegistryCacheItem
*item
;
2152 self
->base_path
= g_strdup_printf ("Software\\GSettings");
2153 self
->base_pathw
= g_utf8_to_utf16 (self
->base_path
, -1, NULL
, NULL
, NULL
);
2155 item
= g_slice_new (RegistryCacheItem
);
2156 item
->value
.type
= REG_NONE
;
2157 item
->value
.ptr
= NULL
;
2158 item
->name
= g_strdup ("<root>");
2159 item
->ref_count
= 1;
2160 self
->cache_root
= g_node_new (item
);
2162 self
->cache_lock
= g_slice_new (CRITICAL_SECTION
);
2163 InitializeCriticalSection (self
->cache_lock
);