aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2023-11-10 12:16:44 +0100
committerRobert Tari <robert@tari.in>2023-11-10 12:29:51 +0100
commit45b41bc72a5b14ebf8bd663ff44360c7264f6458 (patch)
tree76db5d906e895116794dc76c3073dbbafa322481
parent76499b4a6a3fb2227d8945bc88842725bf3a8cf5 (diff)
downloadayatana-indicator-sound-45b41bc72a5b14ebf8bd663ff44360c7264f6458.tar.gz
ayatana-indicator-sound-45b41bc72a5b14ebf8bd663ff44360c7264f6458.tar.bz2
ayatana-indicator-sound-45b41bc72a5b14ebf8bd663ff44360c7264f6458.zip
src/accounts-service-access.vala: Refactor code for easier debugging
-rw-r--r--src/accounts-service-access.vala130
1 files changed, 96 insertions, 34 deletions
diff --git a/src/accounts-service-access.vala b/src/accounts-service-access.vala
index c6b53d7..7f01b7c 100644
--- a/src/accounts-service-access.vala
+++ b/src/accounts-service-access.vala
@@ -90,24 +90,32 @@ public class AccountsServiceAccess : Object
private void accountsservice_props_changed_cb (DBusProxy proxy, Variant changed_properties, string[]? invalidated_properties)
{
Variant volume_variant = changed_properties.lookup_value ("Volume", VariantType.DOUBLE);
- if (volume_variant != null) {
+
+ if (volume_variant != null)
+ {
var volume = volume_variant.get_double ();
- if (volume >= 0 && _volume != volume) {
+
+ if (volume >= 0 && _volume != volume)
+ {
_volume = volume;
- this.notify_property("volume");
+ this.notify_property ("volume");
}
}
Variant mute_variant = changed_properties.lookup_value ("Muted", VariantType.BOOLEAN);
- if (mute_variant != null) {
+
+ if (mute_variant != null)
+ {
_mute = mute_variant.get_boolean ();
- this.notify_property("mute");
+ this.notify_property ("mute");
}
Variant last_running_player_variant = changed_properties.lookup_value ("LastRunningPlayer", VariantType.STRING);
- if (last_running_player_variant != null) {
+
+ if (last_running_player_variant != null)
+ {
_last_running_player = last_running_player_variant.get_string ();
- this.notify_property("last-running-player");
+ this.notify_property ("last-running-player");
}
}
@@ -117,40 +125,60 @@ public class AccountsServiceAccess : Object
_user_proxy = null;
// Look up currently selected greeter user, if asked
- if (username == null) {
- try {
+ if (username == null)
+ {
+ try
+ {
username = yield _greeter_proxy.get_active_entry ();
+
if (username == "" || username == null)
+ {
return;
- } catch (GLib.Error e) {
+ }
+ }
+ catch (GLib.Error e)
+ {
warning ("unable to find Accounts path for user %s: %s", username == null ? "null" : username, e.message);
+
return;
}
}
// Get master AccountsService object
DBusProxy accounts_proxy;
- try {
+
+ try
+ {
accounts_proxy = yield new DBusProxy.for_bus (BusType.SYSTEM, DBusProxyFlags.DO_NOT_LOAD_PROPERTIES | DBusProxyFlags.DO_NOT_CONNECT_SIGNALS, null, "org.freedesktop.Accounts", "/org/freedesktop/Accounts", "org.freedesktop.Accounts");
- } catch (GLib.Error e) {
+ }
+ catch (GLib.Error e)
+ {
warning ("unable to get greeter proxy: %s", e.message);
+
return;
}
// Find user's AccountsService object
- try {
+ try
+ {
var user_path_variant = yield accounts_proxy.call ("FindUserByName", new Variant ("(s)", username), DBusCallFlags.NONE, -1);
string user_path;
- if (user_path_variant.check_format_string ("(o)", true)) {
+
+ if (user_path_variant.check_format_string ("(o)", true))
+ {
user_path_variant.get ("(o)", out user_path);
#if LOMIRI_FEATURES_ENABLED
_user_proxy = yield new DBusProxy.for_bus (BusType.SYSTEM, DBusProxyFlags.GET_INVALIDATED_PROPERTIES, null, "org.freedesktop.Accounts", user_path, "com.lomiri.AccountsService.Sound");
#endif
- } else {
+ }
+ else
+ {
warning ("Unable to find user name after calling FindUserByName. Expected type: %s and obtained %s", "(o)", user_path_variant.get_type_string () );
return;
}
- } catch (GLib.Error e) {
+ }
+ catch (GLib.Error e)
+ {
warning ("unable to find Accounts path for user %s: %s", username, e.message);
return;
}
@@ -159,17 +187,26 @@ public class AccountsServiceAccess : Object
{
// Get current values and listen for changes
_user_proxy.g_properties_changed.connect (accountsservice_props_changed_cb);
- try {
+
+ try
+ {
var props_variant = yield _user_proxy.get_connection ().call (_user_proxy.get_name (), _user_proxy.get_object_path (), "org.freedesktop.DBus.Properties", "GetAll", new Variant ("(s)", _user_proxy.get_interface_name ()), null, DBusCallFlags.NONE, -1);
- if (props_variant.check_format_string ("(@a{sv})", true)) {
+
+ if (props_variant.check_format_string ("(@a{sv})", true))
+ {
Variant props;
props_variant.get ("(@a{sv})", out props);
- accountsservice_props_changed_cb(_user_proxy, props, null);
- } else {
- warning ("Unable to get accounts service properties after calling GetAll. Expected type: %s and obtained %s", "(@a{sv})", props_variant.get_type_string () );
+ accountsservice_props_changed_cb (_user_proxy, props, null);
+ }
+ else
+ {
+ warning ("Unable to get accounts service properties after calling GetAll. Expected type: %s and obtained %s", "(@a{sv})", props_variant.get_type_string ());
+
return;
}
- } catch (GLib.Error e) {
+ }
+ catch (GLib.Error e)
+ {
debug("Unable to get properties for user %s at first try: %s", username, e.message);
}
}
@@ -182,19 +219,28 @@ public class AccountsServiceAccess : Object
private async void setup_accountsservice ()
{
- if (Environment.get_variable ("XDG_SESSION_CLASS") == "greeter") {
- try {
+ if (Environment.get_variable ("XDG_SESSION_CLASS") == "greeter")
+ {
+ try
+ {
_greeter_proxy = yield Bus.get_proxy (BusType.SESSION, "org.ayatana.Greeter", "/list");
- } catch (GLib.Error e) {
+ }
+ catch (GLib.Error e)
+ {
warning ("unable to get greeter proxy: %s", e.message);
+
return;
}
+
_greeter_proxy.entry_selected.connect (greeter_user_changed);
yield setup_user_proxy ();
- } else {
- // We are in a user session. We just need our own proxy
+ }
+ else
+ {
unowned string username = Environment.get_variable ("USER");
- if (username != null && username != "") {
+
+ if (username != null && username != "")
+ {
yield setup_user_proxy (username);
}
}
@@ -203,24 +249,35 @@ public class AccountsServiceAccess : Object
private async void sync_last_running_player_to_accountsservice (string last_running_player)
{
if (_user_proxy == null)
+ {
return;
+ }
- try {
+ try
+ {
yield _user_proxy.get_connection ().call (_user_proxy.get_name (), _user_proxy.get_object_path (), "org.freedesktop.DBus.Properties", "Set", new Variant ("(ssv)", _user_proxy.get_interface_name (), "LastRunningPlayer", new Variant ("s", last_running_player)), null, DBusCallFlags.NONE, -1, _dbus_call_cancellable);
- } catch (GLib.Error e) {
+ }
+ catch (GLib.Error e)
+ {
warning ("unable to sync last running player %s to AccountsService: %s",last_running_player, e.message);
}
+
_last_running_player = last_running_player;
}
private async void sync_volume_to_accountsservice (double volume)
{
if (_user_proxy == null)
+ {
return;
+ }
- try {
+ try
+ {
yield _user_proxy.get_connection ().call (_user_proxy.get_name (), _user_proxy.get_object_path (), "org.freedesktop.DBus.Properties", "Set", new Variant ("(ssv)", _user_proxy.get_interface_name (), "Volume", new Variant ("d", volume)), null, DBusCallFlags.NONE, -1, _dbus_call_cancellable);
- } catch (GLib.Error e) {
+ }
+ catch (GLib.Error e)
+ {
warning ("unable to sync volume %f to AccountsService: %s", volume, e.message);
}
}
@@ -228,11 +285,16 @@ public class AccountsServiceAccess : Object
private async void sync_mute_to_accountsservice (bool mute)
{
if (_user_proxy == null)
+ {
return;
+ }
- try {
+ try
+ {
yield _user_proxy.get_connection ().call (_user_proxy.get_name (), _user_proxy.get_object_path (), "org.freedesktop.DBus.Properties", "Set", new Variant ("(ssv)", _user_proxy.get_interface_name (), "Muted", new Variant ("b", mute)), null, DBusCallFlags.NONE, -1, _dbus_call_cancellable);
- } catch (GLib.Error e) {
+ }
+ catch (GLib.Error e)
+ {
warning ("unable to sync mute %s to AccountsService: %s", mute ? "true" : "false", e.message);
}
}