blob: 6601b8cea8927c8da87c21a3a35b25e0cfb04d81 (
plain)
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
|
import threading
import platform
import time
if platform.system() == 'Linux':
from src.linux import ogOperations
class ogProcess():
def processOperation(self, op, URI):
if ("poweroff" in URI):
self.process_poweroff()
return 1
elif ("reboot" in URI):
self.process_reboot()
return 1
elif ("probe" in URI):
return 1
return 0
def process_reboot(self):
# Rebooting thread
def rebt():
ogOperations.reboot()
threading.Thread(target=rebt).start()
def process_poweroff(self):
# Powering off thread
def pwoff():
time.sleep(2)
ogOperations.poweroff()
threading.Thread(target=pwoff).start()
|