-
Notifications
You must be signed in to change notification settings - Fork 0
/
radiomated
executable file
·63 lines (49 loc) · 1.44 KB
/
radiomated
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
# vim:fileencoding=utf-8:nomodified
# $Id$
#
# Copyright 2010 Claudio Pisa (clauz at ninux dot org)
#
# This file is part of RadioMate
#
# RadioMate is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# RadioMate is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with RadioMate. If not, see <http://www.gnu.org/licenses/>.
#
# The RadioMate scheduling daemon
import signal
import sys
import time
from radiomate.jukebox import *
def main():
CHECKINTERVAL = 10
jb = JukeBox()
def termhndlr(signum, frame):
"catch a TERM signal. Quit."
print >> sys.stderr, "SIGTERM received."
jb.stopcurrent()
jb.gracefulKill()
jb.wait()
raise SystemExit("Quit.")
signal.signal(signal.SIGTERM, termhndlr)
signal.signal(signal.SIGINT, termhndlr)
jb.run(main=True)
while True:
jb.selecta()
if jb.poll(): # the main jukeslot is dead !?
jb.run()
time.sleep(CHECKINTERVAL)
sys.exit(1)
try:
main()
except Exception, e:
raise SystemExit(str(e))