1 import beacon
, httpserver
, ConfigParser
2 import win32serviceutil
8 class PyTivoService(win32serviceutil
.ServiceFramework
):
10 _svc_display_name_
= 'pyTivo'
12 def __init__(self
, args
):
13 win32serviceutil
.ServiceFramework
.__init
__(self
, args
)
14 self
.stop_event
= win32event
.CreateEvent(None, 0, 0, None)
20 from Config
import config
22 p
= os
.path
.dirname(__file__
)
24 f
= open(os
.path
.join(p
, 'log.txt'), 'w')
29 port
= config
.get('Server', 'Port')
31 httpd
= httpserver
.TivoHTTPServer(('', int(port
)), httpserver
.TivoHTTPHandler
)
33 for section
in Config
.getShares():
35 settings
.update(config
.items(section
))
36 httpd
.add_container(section
, settings
)
39 b
.add_service('TiVoMediaServer:' + str(port
) + '/http')
44 (rx
, tx
, er
) = select
.select((httpd
,), (), (), 5)
47 rc
= win32event
.WaitForSingleObject(self
.stop_event
, 5)
48 if rc
== win32event
.WAIT_OBJECT_0
:
53 win32event
.SetEvent(self
.stop_event
)
55 if __name__
== '__main__':
56 win32serviceutil
.HandleCommandLine(PyTivoService
)