jellyfin-kodi/service.py

50 lines
1.3 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
#################################################################################################
import logging
import os
import sys
2015-03-13 21:24:59 +00:00
import xbmc
import xbmcaddon
2015-03-13 21:24:59 +00:00
#################################################################################################
2018-09-06 08:36:32 +00:00
__addon__ = xbmcaddon.Addon(id='plugin.video.emby').getAddonInfo('path').decode('utf-8')
__base__ = xbmc.translatePath(os.path.join(__addon__, 'resources', 'lib')).decode('utf-8')
sys.path.append(__base__)
2015-03-13 21:24:59 +00:00
#################################################################################################
2018-09-06 08:36:32 +00:00
from entrypoint import Service
from helper import settings
from emby import Emby
#################################################################################################
2018-09-06 08:36:32 +00:00
LOG = logging.getLogger("EMBY.service")
DELAY = int(settings('startupDelay') or 0)
2015-04-06 17:17:32 +00:00
#################################################################################################
2018-09-06 08:36:32 +00:00
2016-09-09 03:13:25 +00:00
if __name__ == "__main__":
2018-09-06 19:41:02 +00:00
LOG.warn("--->[ service ]")
2018-09-06 08:36:32 +00:00
LOG.warn("Delay startup by %s seconds.", DELAY)
session = Service()
2016-09-09 03:13:25 +00:00
try:
if DELAY and xbmc.Monitor().waitForAbort(DELAY):
2018-09-06 08:36:32 +00:00
raise Exception("Aborted during startup delay")
2018-09-06 08:36:32 +00:00
session.service()
except Exception as error:
2018-09-06 08:36:32 +00:00
LOG.exception(error)
session.shutdown()
2018-09-06 19:41:02 +00:00
LOG.warn("---<[ service ]")