mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02:00
Stop service with app shutdown, but persist on UI close
This commit is contained in:
parent
bec6bda2f6
commit
8b275cbe7f
@ -317,6 +317,12 @@ class SidebandApp(MDApp):
|
|||||||
self.sideband.setstate("app.foreground", False)
|
self.sideband.setstate("app.foreground", False)
|
||||||
|
|
||||||
def final_exit(dt):
|
def final_exit(dt):
|
||||||
|
RNS.log("Stopping service...")
|
||||||
|
self.sideband.setstate("wants.service_stop", True)
|
||||||
|
while self.sideband.service_available():
|
||||||
|
time.sleep(0.2)
|
||||||
|
RNS.log("Service stopped")
|
||||||
|
|
||||||
RNS.exit()
|
RNS.exit()
|
||||||
MDApp.get_running_app().stop()
|
MDApp.get_running_app().stop()
|
||||||
Window.close()
|
Window.close()
|
||||||
|
@ -177,7 +177,7 @@ public class PythonService extends Service implements Runnable {
|
|||||||
super.onTaskRemoved(rootIntent);
|
super.onTaskRemoved(rootIntent);
|
||||||
//sticky servcie runtime/restart is managed by the OS. leave it running when app is closed
|
//sticky servcie runtime/restart is managed by the OS. leave it running when app is closed
|
||||||
if (startType() != START_STICKY) {
|
if (startType() != START_STICKY) {
|
||||||
stopSelf();
|
//stopSelf();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,10 +26,6 @@ if RNS.vendor.platformutils.get_platform() == "android":
|
|||||||
else:
|
else:
|
||||||
from sbapp.sideband.core import SidebandCore
|
from sbapp.sideband.core import SidebandCore
|
||||||
|
|
||||||
class AppProxy():
|
|
||||||
def __init__(self):
|
|
||||||
pass
|
|
||||||
|
|
||||||
class SidebandService():
|
class SidebandService():
|
||||||
def android_notification(self, title="", content="", ticker="", group=None, context_id=None):
|
def android_notification(self, title="", content="", ticker="", group=None, context_id=None):
|
||||||
package_name = "io.unsigned.sideband"
|
package_name = "io.unsigned.sideband"
|
||||||
@ -81,7 +77,6 @@ class SidebandService():
|
|||||||
notification_intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP)
|
notification_intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP)
|
||||||
notification_intent.setAction(Intent.ACTION_MAIN)
|
notification_intent.setAction(Intent.ACTION_MAIN)
|
||||||
notification_intent.addCategory(Intent.CATEGORY_LAUNCHER)
|
notification_intent.addCategory(Intent.CATEGORY_LAUNCHER)
|
||||||
|
|
||||||
self.notification_intent = PendingIntent.getActivity(self.app_context, 0, notification_intent, 0)
|
self.notification_intent = PendingIntent.getActivity(self.app_context, 0, notification_intent, 0)
|
||||||
|
|
||||||
notification.setContentIntent(self.notification_intent)
|
notification.setContentIntent(self.notification_intent)
|
||||||
@ -97,11 +92,10 @@ class SidebandService():
|
|||||||
self.wake_lock = None
|
self.wake_lock = None
|
||||||
self.should_run = False
|
self.should_run = False
|
||||||
|
|
||||||
self.app_proxy = AppProxy()
|
|
||||||
|
|
||||||
self.android_service = None
|
self.android_service = None
|
||||||
self.app_context = None
|
self.app_context = None
|
||||||
self.wifi_manager = None
|
self.wifi_manager = None
|
||||||
|
self.power_manager = None
|
||||||
|
|
||||||
self.notification_service = None
|
self.notification_service = None
|
||||||
self.notification_channel = None
|
self.notification_channel = None
|
||||||
@ -112,9 +106,10 @@ class SidebandService():
|
|||||||
self.android_service = autoclass('org.kivy.android.PythonService').mService
|
self.android_service = autoclass('org.kivy.android.PythonService').mService
|
||||||
self.app_context = self.android_service.getApplication().getApplicationContext()
|
self.app_context = self.android_service.getApplication().getApplicationContext()
|
||||||
self.wifi_manager = self.app_context.getSystemService(Context.WIFI_SERVICE)
|
self.wifi_manager = self.app_context.getSystemService(Context.WIFI_SERVICE)
|
||||||
|
self.power_manager = self.app_context.getSystemService(Context.POWER_SERVICE)
|
||||||
# The returned instance /\ is an android.net.wifi.WifiManager
|
# The returned instance /\ is an android.net.wifi.WifiManager
|
||||||
|
|
||||||
self.sideband = SidebandCore(self.app_proxy, is_service=True, android_app_dir=self.app_dir)
|
self.sideband = SidebandCore(self, is_service=True, android_app_dir=self.app_dir)
|
||||||
self.sideband.service_context = self.android_service
|
self.sideband.service_context = self.android_service
|
||||||
self.sideband.owner_service = self
|
self.sideband.owner_service = self
|
||||||
self.sideband.start()
|
self.sideband.start()
|
||||||
@ -137,18 +132,33 @@ class SidebandService():
|
|||||||
self.multicast_lock.acquire()
|
self.multicast_lock.acquire()
|
||||||
RNS.log("Took lock")
|
RNS.log("Took lock")
|
||||||
|
|
||||||
|
if self.wake_lock == None:
|
||||||
|
self.wake_lock = self.power_manager.newWakeLock(self.power_manager.PARTIAL_WAKE_LOCK, "sideband_service")
|
||||||
|
|
||||||
def release_locks():
|
if not self.wake_lock.isHeld():
|
||||||
|
RNS.log("Taking wake lock")
|
||||||
|
self.wake_lock.acquire()
|
||||||
|
RNS.log("Took lock")
|
||||||
|
|
||||||
|
def release_locks(self):
|
||||||
if RNS.vendor.platformutils.get_platform() == "android":
|
if RNS.vendor.platformutils.get_platform() == "android":
|
||||||
if not self.multicast_lock == None and self.multicast_lock.isHeld():
|
if not self.multicast_lock == None and self.multicast_lock.isHeld():
|
||||||
self.multicast_lock.release()
|
self.multicast_lock.release()
|
||||||
|
|
||||||
|
if not self.wake_lock == None and self.wake_lock.isHeld():
|
||||||
|
self.wake_lock.release()
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
while self.should_run:
|
while self.should_run:
|
||||||
|
sleep_time = 1
|
||||||
self.sideband.setstate("service.heartbeat", time.time())
|
self.sideband.setstate("service.heartbeat", time.time())
|
||||||
time.sleep(1)
|
|
||||||
|
if self.sideband.getstate("wants.service_stop"):
|
||||||
|
self.should_run = False
|
||||||
|
sleep_time = 0
|
||||||
|
|
||||||
|
time.sleep(sleep_time)
|
||||||
|
|
||||||
self.release_locks()
|
self.release_locks()
|
||||||
|
|
||||||
sbs = SidebandService()
|
SidebandService().start()
|
||||||
sbs.start()
|
|
Loading…
Reference in New Issue
Block a user