new camera worker functional in standalone mode

This commit is contained in:
Alexander Minges 2019-01-31 17:17:37 +01:00
parent 30bb211324
commit e65ed89053

View file

@ -1,48 +1,62 @@
import io import io
import os import os
import sys import sys
import stat
import subprocess import subprocess
import signal import signal
from enum import Enum
from phytopi import db, models, app from phytopi import db, models, app
# map commands
camera_cmds = {
'start_timelapse': 'tl 1',
'stop_timelapse': 'tl 0',
}
class CameraStatus(Enum):
STOPPED = 0
IDLE = 1
TIMELAPSE = 2
VIDEO = 3
class CameraWorker(object): class CameraWorker(object):
def __init__(self, pidfile='/tmp/raspimjpeg.pid', executable='/usr/local/bin/raspimjpeg', fifo='/dev/shm/mjpeg/mjpeg_fifo', app=None): def __init__(self, pidfile='/tmp/raspimjpeg.pid', executable='/usr/local/bin/raspimjpeg', fifo='/dev/shm/mjpeg/FIFO', app=None):
self.pidfile = pidfile self.pidfile = pidfile
self.executable = executable self.executable = executable
self.fifo = fifo self.fifo = fifo
self.proc = None self.proc = None
self.pid = None self.pid = None
self.app = app self.app = app
self.status = CameraStatus.STOPPED
def start(self): def start(self):
# create FIFO if not existent # create FIFO
if not os.path.isfile(self.fifo): os.mkfifo(self.fifo)
os.mkfifo(self.fifo)
# check if process is already running # check if process is already running
if os.path.isfile(self.pidfile): if os.path.isfile(self.pidfile):
with open(self.pidfile) as fh: with open(self.pidfile, 'r') as fh:
self.pid = int(fh.read()) self.pid = int(fh.read())
# if not, spawn new process and create pid file # if not, spawn new process and create pid file
self.proc = subprocess.Popen(self.executable, stdout=subprocess.PIPE) self.proc = subprocess.Popen([self.executable])
self.pid = self.proc.pid self.pid = self.proc.pid
with open(self.pidfile) as fh: with open(self.pidfile, 'w') as fh:
fh.write(self.pid) fh.write(str(self.pid))
self.status = CameraStatus.IDLE
def stop(self): def stop(self):
# if process was spawned by this instance, killing is easy os.killpg(os.getpgid(self.pid), signal.SIGTERM)
if self.proc:
self.proc.kill()
else:
# otherwise send SIGTERM to pid
os.kill(self.pid, signal.SIGTERM)
os.unlink(self.fifo) os.unlink(self.fifo)
os.unlink(self.pidfile)
self.status = CameraStatus.STOPPED
def send_cmd(self, cmd): def send_cmd(self, cmd):
with open(self.fifo, 'w') as fh: if cmd in camera_cmds:
fh.write(cmd) with open(self.fifo, 'w') as fh:
fh.write(cmd)
def read_output(self): if cmd == camera_cmds['start_timelapse']:
return self.proc.stdout.readlines() self.status = CameraStatus.TIMELAPSE
if cmd == camera_cmds['stop_timelapse']:
self.status = CameraStatus.IDLE