@@ -21,6 +21,14 @@ struct signal_actioninvoked {
21
21
GDBusConnection * conn ;
22
22
};
23
23
24
+ struct signal_propertieschanged {
25
+ gchar * interface ;
26
+ GVariant * array_dict_sv_data ;
27
+ GVariant * array_s_data ;
28
+ guint subscription_id ;
29
+ GDBusConnection * conn ;
30
+ };
31
+
24
32
struct signal_closed {
25
33
guint32 id ;
26
34
guint32 reason ;
@@ -81,6 +89,73 @@ void dbus_signal_unsubscribe_actioninvoked(struct signal_actioninvoked *actionin
81
89
actioninvoked -> subscription_id = -1 ;
82
90
}
83
91
92
+ void dbus_signal_cb_propertieschanged (GDBusConnection * connection ,
93
+ const gchar * sender_name ,
94
+ const gchar * object_path ,
95
+ const gchar * interface_name ,
96
+ const gchar * signal_name ,
97
+ GVariant * parameters ,
98
+ gpointer user_data )
99
+ {
100
+ g_return_if_fail (user_data );
101
+
102
+ gchar * interface ;
103
+ GVariant * array_dict_sv_data ;
104
+ GVariant * array_s_data ;
105
+
106
+ struct signal_propertieschanged * sig = (struct signal_propertieschanged * ) user_data ;
107
+
108
+ g_variant_get (parameters , "(s@a{sv}@as)" , & interface , & array_dict_sv_data , & array_s_data );
109
+
110
+ if (g_strcmp0 (interface , DUNST_IFAC ) == 0 ) {
111
+ sig -> interface = interface ;
112
+ sig -> array_dict_sv_data = array_dict_sv_data ;
113
+ sig -> array_s_data = array_s_data ;
114
+ }
115
+
116
+ }
117
+
118
+ void dbus_signal_subscribe_propertieschanged (struct signal_propertieschanged * propertieschanged )
119
+ {
120
+ assert (propertieschanged );
121
+
122
+ propertieschanged -> conn = g_bus_get_sync (G_BUS_TYPE_SESSION , NULL , NULL );
123
+ propertieschanged -> subscription_id =
124
+ g_dbus_connection_signal_subscribe (
125
+ // GDBusConnection *connection,
126
+ propertieschanged -> conn ,
127
+ // const gchar *sender,
128
+ FDN_NAME ,
129
+ // const gchar *interface_name,
130
+ PROPERTIES_IFAC ,
131
+ // const gchar *member,
132
+ "PropertiesChanged" ,
133
+ // const gchar *object_path,
134
+ FDN_PATH ,
135
+ // const gchar *arg0,
136
+ NULL ,
137
+ // GDBusSignalFlags flags,
138
+ G_DBUS_SIGNAL_FLAGS_NONE ,
139
+ // GDBusSignalCallback callback,
140
+ dbus_signal_cb_propertieschanged ,
141
+ // gpointer user_data,
142
+ propertieschanged ,
143
+ // GDestroyNotify user_data_free_func
144
+ NULL );
145
+
146
+ }
147
+
148
+ void dbus_signal_unsubscribe_propertieschanged (struct signal_propertieschanged * propertieschanged )
149
+ {
150
+ assert (propertieschanged );
151
+
152
+ g_dbus_connection_signal_unsubscribe (propertieschanged -> conn , propertieschanged -> subscription_id );
153
+ g_object_unref (propertieschanged -> conn );
154
+
155
+ propertieschanged -> conn = NULL ;
156
+ propertieschanged -> subscription_id = -1 ;
157
+ }
158
+
84
159
void dbus_signal_cb_closed (GDBusConnection * connection ,
85
160
const gchar * sender_name ,
86
161
const gchar * object_path ,
@@ -740,6 +815,47 @@ TEST test_signal_actioninvoked(void)
740
815
PASS ();
741
816
}
742
817
818
+ TEST test_signal_length_propertieschanged (void )
819
+ {
820
+ struct dbus_notification * n_dbus ;
821
+ struct signal_propertieschanged sig = {NULL , NULL , NULL , -1 };
822
+
823
+ dbus_signal_subscribe_propertieschanged (& sig );
824
+
825
+ n_dbus = dbus_notification_new ();
826
+ n_dbus -> app_name = "dunstteststack" ;
827
+ n_dbus -> app_icon = "NONE2" ;
828
+ n_dbus -> summary = "Headline for New" ;
829
+ n_dbus -> body = "Text" ;
830
+ g_hash_table_insert (n_dbus -> actions , g_strdup ("actionkey" ), g_strdup ("Print this text" ));
831
+
832
+ guint id ;
833
+ ASSERT (dbus_notification_fire (n_dbus , & id ));
834
+ ASSERT (id != 0 );
835
+
836
+ queues_update (STATUS_NORMAL , time_monotonic_now ());
837
+
838
+ uint waiting = 0 ;
839
+ while (!sig .interface && waiting < 2000 ) {
840
+ usleep (500 );
841
+ waiting ++ ;
842
+ }
843
+
844
+ ASSERT_STR_EQ (sig .interface , DUNST_IFAC );
845
+
846
+ guint32 displayed_length ;
847
+ g_variant_lookup (sig .array_dict_sv_data , "displayedLength" , "u" , & displayed_length );
848
+
849
+ ASSERT_EQ (displayed_length , queues_length_displayed ());
850
+
851
+ g_free (sig .interface );
852
+ g_variant_unref (sig .array_dict_sv_data );
853
+ g_variant_unref (sig .array_s_data );
854
+ dbus_notification_free (n_dbus );
855
+ dbus_signal_unsubscribe_propertieschanged (& sig );
856
+ PASS ();
857
+ }
858
+
743
859
TEST test_close_and_signal (void )
744
860
{
745
861
GVariant * data , * ret ;
@@ -928,6 +1044,7 @@ gpointer run_threaded_tests(gpointer data)
928
1044
RUN_TESTp (test_server_caps , MARKUP_NO );
929
1045
RUN_TEST (test_close_and_signal );
930
1046
RUN_TEST (test_signal_actioninvoked );
1047
+ RUN_TEST (test_signal_length_propertieschanged );
931
1048
RUN_TEST (test_timeout_overflow );
932
1049
RUN_TEST (test_override_dbus_timeout );
933
1050
RUN_TEST (test_match_dbus_timeout );
0 commit comments