-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathledd.py
130 lines (105 loc) · 3.47 KB
/
ledd.py
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#!/usr/bin/python3
# LEDD Project
# Copyright (C) 2015 LEDD Team
#
# This program 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.
#
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
"""LedD Daemon
Usage:
ledd.py [--detach] [-d | --debug] [-v | --verbose]
ledd.py -h | --help
ledd.py --version
Options:
-h --help Show this screen.
--version Show version.
-d --debug Show debug output. (not recommended)
-v --verbose Be verbose.
--detach Detach after start.
"""
import logging
import sys
import os
from pkgutil import iter_modules
import coloredlogs
from docopt import docopt
import ledd.daemon
import ledd
if "smbus" not in (name for loader, name, ispkg in iter_modules()):
print("smbus not found, installing replacement")
class SMBus:
def __init__(self, i2c_address):
self.i2c_address = i2c_address
self.channels = {}
def write_word_data(self, addr, cmd, val):
if (cmd - 6) % 4 == 0:
self.channels[(cmd - 6) // 4] = val
def read_word_data(self, addr, cmd):
if (cmd - 8) // 4 not in self.channels:
self.channels[(cmd - 8) // 4] = 0
return self.channels[(cmd - 8) // 4]
class SMBusModule:
SMBus = SMBus
sys.modules['smbus'] = SMBusModule
sys.modules['smbus'].SMBus = SMBus
def pid_exists(processid):
if processid < 0:
return False
try:
os.kill(processid, 0)
except ProcessLookupError:
return False
except PermissionError:
return True
else:
return True
if __name__ == "__main__":
arguments = docopt(__doc__, version='LedD Daemon ' + ledd.VERSION)
lvl = logging.WARNING
if arguments['--verbose']:
lvl = logging.INFO
if arguments['--debug']:
lvl = logging.DEBUG
log = logging.getLogger(__name__)
coloredlogs.install(level=lvl)
try:
with open('ledd.pid', 'r') as f:
spid = f.read()
if spid:
if pid_exists(int(spid)):
log.fatal("A instance of the program is already running, exiting...")
sys.exit(5)
else:
log.warning("Found stale pid file, assuming unclean shutdown.")
except FileNotFoundError:
pass
if arguments['--detach']:
wdir = os.path.dirname(os.path.realpath(__file__))
try:
pid = os.fork()
if pid == 0:
os.setsid()
pid2 = os.fork()
if pid2 == 0:
os.umask(0)
os.chdir(wdir)
with open("ledd.pid", 'w') as pidf:
pidf.write(str(os.getpid()) + '\n')
ledd.daemon.run()
else:
sys.exit()
else:
sys.exit()
except OSError as e:
log.fatal("Start failed: %s", e)
else:
ledd.daemon.run()