mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-25 02:06:09 +00:00
Wrap service in try/except
Move service_entry_point to resources
This commit is contained in:
parent
dd12a6a937
commit
26f5fb8d36
2 changed files with 290 additions and 272 deletions
281
resources/lib/service_entry.py
Normal file
281
resources/lib/service_entry.py
Normal file
|
@ -0,0 +1,281 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
#################################################################################################
|
||||||
|
|
||||||
|
import logging
|
||||||
|
import sys
|
||||||
|
import _strptime # Workaround for threads using datetime: _striptime is locked
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
import xbmc
|
||||||
|
|
||||||
|
import userclient
|
||||||
|
import clientinfo
|
||||||
|
import initialsetup
|
||||||
|
import kodimonitor
|
||||||
|
import librarysync
|
||||||
|
import player
|
||||||
|
import videonodes
|
||||||
|
import websocket_client as wsc
|
||||||
|
from utils import window, settings, dialog, language as lang
|
||||||
|
|
||||||
|
#################################################################################################
|
||||||
|
|
||||||
|
log = logging.getLogger("EMBY."+__name__)
|
||||||
|
|
||||||
|
#################################################################################################
|
||||||
|
|
||||||
|
|
||||||
|
class Service(object):
|
||||||
|
|
||||||
|
welcome_msg = True
|
||||||
|
server_online = True
|
||||||
|
warn_auth = True
|
||||||
|
|
||||||
|
userclient_running = False
|
||||||
|
websocket_running = False
|
||||||
|
library_running = False
|
||||||
|
kodimonitor_running = False
|
||||||
|
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
|
||||||
|
self.client_info = clientinfo.ClientInfo()
|
||||||
|
self.addon_name = self.client_info.get_addon_name()
|
||||||
|
log_level = settings('logLevel')
|
||||||
|
self.monitor = xbmc.Monitor()
|
||||||
|
|
||||||
|
window('emby_logLevel', value=str(log_level))
|
||||||
|
window('emby_kodiProfile', value=xbmc.translatePath('special://profile'))
|
||||||
|
context_menu = "true" if settings('enableContext') == "true" else ""
|
||||||
|
window('emby_context', value=context_menu)
|
||||||
|
|
||||||
|
# Initial logging
|
||||||
|
log.warn("======== START %s ========", self.addon_name)
|
||||||
|
log.warn("Python Version: %s", sys.version)
|
||||||
|
log.warn("Platform: %s", self.client_info.get_platform())
|
||||||
|
log.warn("KODI Version: %s", xbmc.getInfoLabel('System.BuildVersion'))
|
||||||
|
log.warn("%s Version: %s", self.addon_name, self.client_info.get_version())
|
||||||
|
log.warn("Using plugin paths: %s", settings('useDirectPaths') == "0")
|
||||||
|
log.warn("Log Level: %s", log_level)
|
||||||
|
|
||||||
|
# Reset window props for profile switch
|
||||||
|
properties = [
|
||||||
|
|
||||||
|
"emby_online", "emby_serverStatus", "emby_onWake",
|
||||||
|
"emby_syncRunning", "emby_dbCheck", "emby_kodiScan",
|
||||||
|
"emby_shouldStop", "emby_currUser", "emby_dbScan", "emby_sessionId",
|
||||||
|
"emby_initialScan", "emby_customplaylist", "emby_playbackProps"
|
||||||
|
]
|
||||||
|
for prop in properties:
|
||||||
|
window(prop, clear=True)
|
||||||
|
|
||||||
|
# Clear video nodes properties
|
||||||
|
videonodes.VideoNodes().clearProperties()
|
||||||
|
|
||||||
|
# Set the minimum database version
|
||||||
|
window('emby_minDBVersion', value="1.1.63")
|
||||||
|
|
||||||
|
|
||||||
|
def service_entry_point(self):
|
||||||
|
|
||||||
|
# Important: Threads depending on abortRequest will not trigger
|
||||||
|
# if profile switch happens more than once.
|
||||||
|
monitor = self.monitor
|
||||||
|
kodiProfile = xbmc.translatePath('special://profile')
|
||||||
|
|
||||||
|
# Server auto-detect
|
||||||
|
initialsetup.InitialSetup().setup()
|
||||||
|
|
||||||
|
# Initialize important threads
|
||||||
|
user = userclient.UserClient()
|
||||||
|
ws = wsc.WebSocketClient()
|
||||||
|
library = librarysync.LibrarySync()
|
||||||
|
kplayer = player.Player()
|
||||||
|
# Sync and progress report
|
||||||
|
lastProgressUpdate = datetime.today()
|
||||||
|
|
||||||
|
while not monitor.abortRequested():
|
||||||
|
|
||||||
|
if window('emby_kodiProfile') != kodiProfile:
|
||||||
|
# Profile change happened, terminate this thread and others
|
||||||
|
log.info("Kodi profile was: %s and changed to: %s. Terminating old Emby thread.",
|
||||||
|
kodiProfile, window('emby_kodiProfile'))
|
||||||
|
break
|
||||||
|
|
||||||
|
# Before proceeding, need to make sure:
|
||||||
|
# 1. Server is online
|
||||||
|
# 2. User is set
|
||||||
|
# 3. User has access to the server
|
||||||
|
|
||||||
|
if window('emby_online') == "true":
|
||||||
|
|
||||||
|
# Emby server is online
|
||||||
|
# Verify if user is set and has access to the server
|
||||||
|
if user.get_user() is not None and user.get_access():
|
||||||
|
|
||||||
|
# If an item is playing
|
||||||
|
if xbmc.Player().isPlaying():
|
||||||
|
try:
|
||||||
|
# Update and report progress
|
||||||
|
playtime = xbmc.Player().getTime()
|
||||||
|
totalTime = xbmc.Player().getTotalTime()
|
||||||
|
currentFile = kplayer.currentFile
|
||||||
|
|
||||||
|
# Update positionticks
|
||||||
|
if kplayer.played_info.get(currentFile) is not None:
|
||||||
|
kplayer.played_info[currentFile]['currentPosition'] = playtime
|
||||||
|
|
||||||
|
td = datetime.today() - lastProgressUpdate
|
||||||
|
secDiff = td.seconds
|
||||||
|
|
||||||
|
# Report progress to Emby server
|
||||||
|
if (secDiff > 3):
|
||||||
|
kplayer.reportPlayback()
|
||||||
|
lastProgressUpdate = datetime.today()
|
||||||
|
|
||||||
|
elif window('emby_command') == "true":
|
||||||
|
# Received a remote control command that
|
||||||
|
# requires updating immediately
|
||||||
|
window('emby_command', clear=True)
|
||||||
|
kplayer.reportPlayback()
|
||||||
|
lastProgressUpdate = datetime.today()
|
||||||
|
|
||||||
|
except Exception:
|
||||||
|
log.exception("Exception in Playback Monitor Service")
|
||||||
|
else:
|
||||||
|
# Start up events
|
||||||
|
self.warn_auth = True
|
||||||
|
if settings('connectMsg') == "true" and self.welcome_msg:
|
||||||
|
# Reset authentication warnings
|
||||||
|
self.welcome_msg = False
|
||||||
|
# Get additional users
|
||||||
|
additionalUsers = settings('additionalUsers')
|
||||||
|
if additionalUsers:
|
||||||
|
add = ", %s" % ", ".join(additionalUsers.split(','))
|
||||||
|
else:
|
||||||
|
add = ""
|
||||||
|
dialog(type_="notification",
|
||||||
|
heading="{emby}",
|
||||||
|
message=("%s %s%s!"
|
||||||
|
% (lang(33000), user.get_username().decode('utf-8'),
|
||||||
|
add.decode('utf-8'))),
|
||||||
|
icon="{emby}",
|
||||||
|
time=2000,
|
||||||
|
sound=False)
|
||||||
|
|
||||||
|
# Start monitoring kodi events
|
||||||
|
if not self.kodimonitor_running:
|
||||||
|
self.kodimonitor_running = kodimonitor.KodiMonitor()
|
||||||
|
|
||||||
|
# Start the Websocket Client
|
||||||
|
if not self.websocket_running:
|
||||||
|
self.websocket_running = True
|
||||||
|
ws.start()
|
||||||
|
# Start the syncing thread
|
||||||
|
if not self.library_running:
|
||||||
|
self.library_running = True
|
||||||
|
library.start()
|
||||||
|
else:
|
||||||
|
|
||||||
|
if (user.get_user() is None) and self.warn_auth:
|
||||||
|
# Alert user is not authenticated and suppress future warning
|
||||||
|
self.warn_auth = False
|
||||||
|
log.info("Not authenticated yet.")
|
||||||
|
|
||||||
|
# User access is restricted.
|
||||||
|
# Keep verifying until access is granted
|
||||||
|
# unless server goes offline or Kodi is shut down.
|
||||||
|
while not user.get_access():
|
||||||
|
# Verify access with an API call
|
||||||
|
if window('emby_online') != "true":
|
||||||
|
# Server went offline
|
||||||
|
break
|
||||||
|
|
||||||
|
if monitor.waitForAbort(5):
|
||||||
|
# Abort was requested while waiting. We should exit
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
# Wait until Emby server is online
|
||||||
|
# or Kodi is shut down.
|
||||||
|
while not monitor.abortRequested():
|
||||||
|
|
||||||
|
if user.get_server() is None:
|
||||||
|
# No server info set in add-on settings
|
||||||
|
pass
|
||||||
|
|
||||||
|
elif not user.verify_server():
|
||||||
|
# Server is offline.
|
||||||
|
# Alert the user and suppress future warning
|
||||||
|
if self.server_online:
|
||||||
|
log.info("Server is offline.")
|
||||||
|
window('emby_online', value="false")
|
||||||
|
|
||||||
|
if settings('offlineMsg') == "true":
|
||||||
|
dialog(type_="notification",
|
||||||
|
heading=lang(33001),
|
||||||
|
message="%s %s" % (self.addon_name, lang(33002)),
|
||||||
|
icon="{emby}",
|
||||||
|
sound=False)
|
||||||
|
|
||||||
|
self.server_online = False
|
||||||
|
|
||||||
|
elif window('emby_online') == "sleep":
|
||||||
|
# device going to sleep
|
||||||
|
if self.websocket_running:
|
||||||
|
ws.stop_client()
|
||||||
|
ws = wsc.WebSocketClient()
|
||||||
|
self.websocket_running = False
|
||||||
|
|
||||||
|
if self.library_running:
|
||||||
|
library.stopThread()
|
||||||
|
library = librarysync.LibrarySync()
|
||||||
|
self.library_running = False
|
||||||
|
|
||||||
|
else:
|
||||||
|
# Server is online
|
||||||
|
if not self.server_online:
|
||||||
|
# Server was offline when Kodi started.
|
||||||
|
# Wait for server to be fully established.
|
||||||
|
if monitor.waitForAbort(5):
|
||||||
|
# Abort was requested while waiting.
|
||||||
|
break
|
||||||
|
# Alert the user that server is online.
|
||||||
|
dialog(type_="notification",
|
||||||
|
heading="{emby}",
|
||||||
|
message=lang(33003),
|
||||||
|
icon="{emby}",
|
||||||
|
time=2000,
|
||||||
|
sound=False)
|
||||||
|
|
||||||
|
self.server_online = True
|
||||||
|
log.info("Server is online and ready.")
|
||||||
|
window('emby_online', value="true")
|
||||||
|
|
||||||
|
# Start the userclient thread
|
||||||
|
if not self.userclient_running:
|
||||||
|
self.userclient_running = True
|
||||||
|
user.start()
|
||||||
|
|
||||||
|
break
|
||||||
|
|
||||||
|
if monitor.waitForAbort(1):
|
||||||
|
# Abort was requested while waiting.
|
||||||
|
break
|
||||||
|
|
||||||
|
if monitor.waitForAbort(1):
|
||||||
|
# Abort was requested while waiting. We should exit
|
||||||
|
break
|
||||||
|
|
||||||
|
##### Emby thread is terminating. #####
|
||||||
|
|
||||||
|
if self.userclient_running:
|
||||||
|
user.stop_client()
|
||||||
|
|
||||||
|
if self.library_running:
|
||||||
|
library.stopThread()
|
||||||
|
|
||||||
|
if self.websocket_running:
|
||||||
|
ws.stop_client()
|
||||||
|
|
||||||
|
log.warn("======== STOP %s ========", self.addon_name)
|
281
service.py
281
service.py
|
@ -5,8 +5,6 @@
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import _strptime # Workaround for threads using datetime: _striptime is locked
|
|
||||||
from datetime import datetime
|
|
||||||
|
|
||||||
import xbmc
|
import xbmc
|
||||||
import xbmcaddon
|
import xbmcaddon
|
||||||
|
@ -20,287 +18,26 @@ sys.path.append(_BASE_LIB)
|
||||||
|
|
||||||
#################################################################################################
|
#################################################################################################
|
||||||
|
|
||||||
import userclient
|
|
||||||
import clientinfo
|
|
||||||
import initialsetup
|
|
||||||
import kodimonitor
|
|
||||||
import librarysync
|
|
||||||
import loghandler
|
import loghandler
|
||||||
import player
|
from service_entry import Service
|
||||||
import videonodes
|
from utils import settings
|
||||||
import websocket_client as wsc
|
|
||||||
from utils import window, settings, dialog, language as lang
|
|
||||||
|
|
||||||
#################################################################################################
|
#################################################################################################
|
||||||
|
|
||||||
loghandler.config()
|
loghandler.config()
|
||||||
log = logging.getLogger("EMBY.service")
|
log = logging.getLogger("EMBY.service")
|
||||||
|
DELAY = int(settings('startupDelay'))
|
||||||
|
|
||||||
#################################################################################################
|
#################################################################################################
|
||||||
|
|
||||||
|
|
||||||
class Service(object):
|
|
||||||
|
|
||||||
welcome_msg = True
|
|
||||||
server_online = True
|
|
||||||
warn_auth = True
|
|
||||||
|
|
||||||
userclient_running = False
|
|
||||||
websocket_running = False
|
|
||||||
library_running = False
|
|
||||||
kodimonitor_running = False
|
|
||||||
|
|
||||||
|
|
||||||
def __init__(self):
|
|
||||||
|
|
||||||
self.client_info = clientinfo.ClientInfo()
|
|
||||||
self.addon_name = self.client_info.get_addon_name()
|
|
||||||
log_level = settings('logLevel')
|
|
||||||
self.monitor = xbmc.Monitor()
|
|
||||||
|
|
||||||
window('emby_logLevel', value=str(log_level))
|
|
||||||
window('emby_kodiProfile', value=xbmc.translatePath('special://profile'))
|
|
||||||
context_menu = "true" if settings('enableContext') == "true" else ""
|
|
||||||
window('emby_context', value=context_menu)
|
|
||||||
|
|
||||||
# Initial logging
|
|
||||||
log.warn("======== START %s ========", self.addon_name)
|
|
||||||
log.warn("Python Version: %s", sys.version)
|
|
||||||
log.warn("Platform: %s", self.client_info.get_platform())
|
|
||||||
log.warn("KODI Version: %s", xbmc.getInfoLabel('System.BuildVersion'))
|
|
||||||
log.warn("%s Version: %s", self.addon_name, self.client_info.get_version())
|
|
||||||
log.warn("Using plugin paths: %s", settings('useDirectPaths') == "0")
|
|
||||||
log.warn("Log Level: %s", log_level)
|
|
||||||
|
|
||||||
# Reset window props for profile switch
|
|
||||||
properties = [
|
|
||||||
|
|
||||||
"emby_online", "emby_serverStatus", "emby_onWake",
|
|
||||||
"emby_syncRunning", "emby_dbCheck", "emby_kodiScan",
|
|
||||||
"emby_shouldStop", "emby_currUser", "emby_dbScan", "emby_sessionId",
|
|
||||||
"emby_initialScan", "emby_customplaylist", "emby_playbackProps"
|
|
||||||
]
|
|
||||||
for prop in properties:
|
|
||||||
window(prop, clear=True)
|
|
||||||
|
|
||||||
# Clear video nodes properties
|
|
||||||
videonodes.VideoNodes().clearProperties()
|
|
||||||
|
|
||||||
# Set the minimum database version
|
|
||||||
window('emby_minDBVersion', value="1.1.63")
|
|
||||||
|
|
||||||
|
|
||||||
def service_entry_point(self):
|
|
||||||
|
|
||||||
# Important: Threads depending on abortRequest will not trigger
|
|
||||||
# if profile switch happens more than once.
|
|
||||||
monitor = self.monitor
|
|
||||||
kodiProfile = xbmc.translatePath('special://profile')
|
|
||||||
|
|
||||||
# Server auto-detect
|
|
||||||
initialsetup.InitialSetup().setup()
|
|
||||||
|
|
||||||
# Initialize important threads
|
|
||||||
user = userclient.UserClient()
|
|
||||||
ws = wsc.WebSocketClient()
|
|
||||||
library = librarysync.LibrarySync()
|
|
||||||
kplayer = player.Player()
|
|
||||||
# Sync and progress report
|
|
||||||
lastProgressUpdate = datetime.today()
|
|
||||||
|
|
||||||
while not monitor.abortRequested():
|
|
||||||
|
|
||||||
if window('emby_kodiProfile') != kodiProfile:
|
|
||||||
# Profile change happened, terminate this thread and others
|
|
||||||
log.info("Kodi profile was: %s and changed to: %s. Terminating old Emby thread.",
|
|
||||||
kodiProfile, window('emby_kodiProfile'))
|
|
||||||
break
|
|
||||||
|
|
||||||
# Before proceeding, need to make sure:
|
|
||||||
# 1. Server is online
|
|
||||||
# 2. User is set
|
|
||||||
# 3. User has access to the server
|
|
||||||
|
|
||||||
if window('emby_online') == "true":
|
|
||||||
|
|
||||||
# Emby server is online
|
|
||||||
# Verify if user is set and has access to the server
|
|
||||||
if user.get_user() is not None and user.get_access():
|
|
||||||
|
|
||||||
# If an item is playing
|
|
||||||
if xbmc.Player().isPlaying():
|
|
||||||
try:
|
|
||||||
# Update and report progress
|
|
||||||
playtime = xbmc.Player().getTime()
|
|
||||||
totalTime = xbmc.Player().getTotalTime()
|
|
||||||
currentFile = kplayer.currentFile
|
|
||||||
|
|
||||||
# Update positionticks
|
|
||||||
if kplayer.played_info.get(currentFile) is not None:
|
|
||||||
kplayer.played_info[currentFile]['currentPosition'] = playtime
|
|
||||||
|
|
||||||
td = datetime.today() - lastProgressUpdate
|
|
||||||
secDiff = td.seconds
|
|
||||||
|
|
||||||
# Report progress to Emby server
|
|
||||||
if (secDiff > 3):
|
|
||||||
kplayer.reportPlayback()
|
|
||||||
lastProgressUpdate = datetime.today()
|
|
||||||
|
|
||||||
elif window('emby_command') == "true":
|
|
||||||
# Received a remote control command that
|
|
||||||
# requires updating immediately
|
|
||||||
window('emby_command', clear=True)
|
|
||||||
kplayer.reportPlayback()
|
|
||||||
lastProgressUpdate = datetime.today()
|
|
||||||
|
|
||||||
except Exception:
|
|
||||||
log.exception("Exception in Playback Monitor Service")
|
|
||||||
else:
|
|
||||||
# Start up events
|
|
||||||
self.warn_auth = True
|
|
||||||
if settings('connectMsg') == "true" and self.welcome_msg:
|
|
||||||
# Reset authentication warnings
|
|
||||||
self.welcome_msg = False
|
|
||||||
# Get additional users
|
|
||||||
additionalUsers = settings('additionalUsers')
|
|
||||||
if additionalUsers:
|
|
||||||
add = ", %s" % ", ".join(additionalUsers.split(','))
|
|
||||||
else:
|
|
||||||
add = ""
|
|
||||||
dialog(type_="notification",
|
|
||||||
heading="{emby}",
|
|
||||||
message=("%s %s%s!"
|
|
||||||
% (lang(33000), user.get_username().decode('utf-8'),
|
|
||||||
add.decode('utf-8'))),
|
|
||||||
icon="{emby}",
|
|
||||||
time=2000,
|
|
||||||
sound=False)
|
|
||||||
|
|
||||||
# Start monitoring kodi events
|
|
||||||
if not self.kodimonitor_running:
|
|
||||||
self.kodimonitor_running = kodimonitor.KodiMonitor()
|
|
||||||
|
|
||||||
# Start the Websocket Client
|
|
||||||
if not self.websocket_running:
|
|
||||||
self.websocket_running = True
|
|
||||||
ws.start()
|
|
||||||
# Start the syncing thread
|
|
||||||
if not self.library_running:
|
|
||||||
self.library_running = True
|
|
||||||
library.start()
|
|
||||||
else:
|
|
||||||
|
|
||||||
if (user.get_user() is None) and self.warn_auth:
|
|
||||||
# Alert user is not authenticated and suppress future warning
|
|
||||||
self.warn_auth = False
|
|
||||||
log.info("Not authenticated yet.")
|
|
||||||
|
|
||||||
# User access is restricted.
|
|
||||||
# Keep verifying until access is granted
|
|
||||||
# unless server goes offline or Kodi is shut down.
|
|
||||||
while not user.get_access():
|
|
||||||
# Verify access with an API call
|
|
||||||
if window('emby_online') != "true":
|
|
||||||
# Server went offline
|
|
||||||
break
|
|
||||||
|
|
||||||
if monitor.waitForAbort(5):
|
|
||||||
# Abort was requested while waiting. We should exit
|
|
||||||
break
|
|
||||||
else:
|
|
||||||
# Wait until Emby server is online
|
|
||||||
# or Kodi is shut down.
|
|
||||||
while not monitor.abortRequested():
|
|
||||||
|
|
||||||
if user.get_server() is None:
|
|
||||||
# No server info set in add-on settings
|
|
||||||
pass
|
|
||||||
|
|
||||||
elif not user.verify_server():
|
|
||||||
# Server is offline.
|
|
||||||
# Alert the user and suppress future warning
|
|
||||||
if self.server_online:
|
|
||||||
log.info("Server is offline.")
|
|
||||||
window('emby_online', value="false")
|
|
||||||
|
|
||||||
if settings('offlineMsg') == "true":
|
|
||||||
dialog(type_="notification",
|
|
||||||
heading=lang(33001),
|
|
||||||
message="%s %s" % (self.addon_name, lang(33002)),
|
|
||||||
icon="{emby}",
|
|
||||||
sound=False)
|
|
||||||
|
|
||||||
self.server_online = False
|
|
||||||
|
|
||||||
elif window('emby_online') == "sleep":
|
|
||||||
# device going to sleep
|
|
||||||
if self.websocket_running:
|
|
||||||
ws.stop_client()
|
|
||||||
ws = wsc.WebSocketClient()
|
|
||||||
self.websocket_running = False
|
|
||||||
|
|
||||||
if self.library_running:
|
|
||||||
library.stopThread()
|
|
||||||
library = librarysync.LibrarySync()
|
|
||||||
self.library_running = False
|
|
||||||
|
|
||||||
else:
|
|
||||||
# Server is online
|
|
||||||
if not self.server_online:
|
|
||||||
# Server was offline when Kodi started.
|
|
||||||
# Wait for server to be fully established.
|
|
||||||
if monitor.waitForAbort(5):
|
|
||||||
# Abort was requested while waiting.
|
|
||||||
break
|
|
||||||
# Alert the user that server is online.
|
|
||||||
dialog(type_="notification",
|
|
||||||
heading="{emby}",
|
|
||||||
message=lang(33003),
|
|
||||||
icon="{emby}",
|
|
||||||
time=2000,
|
|
||||||
sound=False)
|
|
||||||
|
|
||||||
self.server_online = True
|
|
||||||
log.info("Server is online and ready.")
|
|
||||||
window('emby_online', value="true")
|
|
||||||
|
|
||||||
# Start the userclient thread
|
|
||||||
if not self.userclient_running:
|
|
||||||
self.userclient_running = True
|
|
||||||
user.start()
|
|
||||||
|
|
||||||
break
|
|
||||||
|
|
||||||
if monitor.waitForAbort(1):
|
|
||||||
# Abort was requested while waiting.
|
|
||||||
break
|
|
||||||
|
|
||||||
if monitor.waitForAbort(1):
|
|
||||||
# Abort was requested while waiting. We should exit
|
|
||||||
break
|
|
||||||
|
|
||||||
##### Emby thread is terminating. #####
|
|
||||||
|
|
||||||
if self.userclient_running:
|
|
||||||
user.stop_client()
|
|
||||||
|
|
||||||
if self.library_running:
|
|
||||||
library.stopThread()
|
|
||||||
|
|
||||||
if self.websocket_running:
|
|
||||||
ws.stop_client()
|
|
||||||
|
|
||||||
log.warn("======== STOP %s ========", self.addon_name)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
# Delay option
|
|
||||||
DELAY = int(settings('startupDelay'))
|
|
||||||
log.warn("Delaying emby startup by: %s sec...", DELAY)
|
log.warn("Delaying emby startup by: %s sec...", DELAY)
|
||||||
|
|
||||||
if DELAY and xbmc.Monitor().waitForAbort(DELAY):
|
try:
|
||||||
|
if DELAY and xbmc.Monitor().waitForAbort(DELAY):
|
||||||
|
raise RuntimeError("Abort event while waiting to start Emby for kodi")
|
||||||
# Start the service
|
# Start the service
|
||||||
log.warn("Abort requested while waiting. Emby for kodi not started.")
|
|
||||||
else:
|
|
||||||
Service().service_entry_point()
|
Service().service_entry_point()
|
||||||
|
except Exception as error:
|
||||||
|
log.exception(error)
|
||||||
|
|
Loading…
Reference in a new issue