blob: 00115cfca89039b3b15cf700f913e4c09f5f6525 [file] [log] [blame]
Brad Bishop2d39a062019-10-28 08:33:36 -04001Fix fail to enable bluetooth issue
2
3When launch blueman-manager while bluetooth is disable, it may fails
4with error:
5
6 Failed to enable bluetooth
7
8Because when get bluetooth status right after change its status, the
9status may not be updated that plugin applet/KillSwitch.py sets the
10bluetooth status via method of another dbus service which doesn't return
11immediately.
12
13Provides a new dbus method for PowerManager which checks whether dbus
14method SetBluetoothStatus() has finished. Then it makes sure to get
15right bluetooth status.
16
17Upstream-Status: Inappropriate
18Send to upstream but not accepted:
19https://github.com/blueman-project/blueman/pull/1121
20
21Signed-off-by: Kai Kang <kai.kang@windriver.com>
22---
23 blueman/Functions.py | 12 +++++++++++-
24 blueman/plugins/applet/PowerManager.py | 4 ++++
25 2 files changed, 15 insertions(+), 1 deletion(-)
26
27diff --git a/blueman/Functions.py b/blueman/Functions.py
28index 3b76271..c5eeb27 100644
29--- a/blueman/Functions.py
30+++ b/blueman/Functions.py
31@@ -17,7 +17,7 @@
32 # You should have received a copy of the GNU General Public License
33 # along with this program. If not, see <http://www.gnu.org/licenses/>.
34 #
35-from time import sleep
36+from time import sleep, time
37 import re
38 import os
39 import signal
40@@ -86,6 +86,16 @@ def check_bluetooth_status(message, exitfunc):
41 return
42
43 applet.SetBluetoothStatus('(b)', True)
44+
45+ timeout = time() + 10
46+ while applet.GetRequestStatus():
47+ sleep(0.1)
48+ if time() > timeout:
49+ # timeout 5s has been set in applet/PowerManager.py
50+ # so it should NOT reach timeout here
51+ logging.warning('Should NOT reach timeout.')
52+ break
53+
54 if not applet.GetBluetoothStatus():
55 print('Failed to enable bluetooth')
56 exitfunc()
57diff --git a/blueman/plugins/applet/PowerManager.py b/blueman/plugins/applet/PowerManager.py
58index 8ec9fc4..29a0fb0 100644
59--- a/blueman/plugins/applet/PowerManager.py
60+++ b/blueman/plugins/applet/PowerManager.py
61@@ -48,6 +48,7 @@ class PowerManager(AppletPlugin):
62 self._add_dbus_signal("BluetoothStatusChanged", "b")
63 self._add_dbus_method("SetBluetoothStatus", ("b",), "", self.request_power_state)
64 self._add_dbus_method("GetBluetoothStatus", (), "b", self.get_bluetooth_status)
65+ self._add_dbus_method("GetRequestStatus", (), "b", self.get_request_status)
66
67 def on_unload(self):
68 self.parent.Plugins.Menu.unregister(self)
69@@ -182,6 +183,9 @@ class PowerManager(AppletPlugin):
70 def get_bluetooth_status(self):
71 return self.current_state
72
73+ def get_request_status(self):
74+ return self.request_in_progress
75+
76 def on_adapter_property_changed(self, _path, key, value):
77 if key == "Powered":
78 if value and not self.current_state:
79--
802.20.1
81