2018-12-03 22:16:03 +01:00
|
|
|
import asyncio
|
|
|
|
from aiohttp import web
|
|
|
|
from core.api import on_event, request_mapping
|
2018-12-08 14:21:00 +01:00
|
|
|
from core.controller.crud_controller import CRUDController
|
|
|
|
from core.database.model import StepModel
|
|
|
|
from core.http_endpoints.http_api import HttpAPI
|
2018-12-03 22:16:03 +01:00
|
|
|
|
2018-12-08 14:21:00 +01:00
|
|
|
|
|
|
|
class StepController(HttpAPI, CRUDController):
|
2018-12-09 22:20:33 +01:00
|
|
|
'''
|
|
|
|
The Step Controller. This controller is responsible to start and stop the brewing steps.
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
2018-12-08 14:21:00 +01:00
|
|
|
|
|
|
|
model = StepModel
|
2018-11-29 21:59:08 +01:00
|
|
|
|
2018-12-03 22:16:03 +01:00
|
|
|
def __init__(self, cbpi):
|
2018-12-08 14:21:00 +01:00
|
|
|
super(StepController, self).__init__(cbpi)
|
|
|
|
|
2018-12-03 22:16:03 +01:00
|
|
|
self.cbpi = cbpi
|
2018-12-05 07:31:12 +01:00
|
|
|
self.current_task = None
|
2018-12-03 22:16:03 +01:00
|
|
|
self.types = {}
|
2018-12-08 14:21:00 +01:00
|
|
|
|
2018-12-03 22:16:03 +01:00
|
|
|
self.current_step = None
|
|
|
|
self.cbpi.register(self, "/step")
|
2018-11-29 21:59:08 +01:00
|
|
|
|
2018-12-03 22:16:03 +01:00
|
|
|
async def init(self):
|
2018-12-09 22:20:33 +01:00
|
|
|
'''
|
|
|
|
Initializer of the the Step Controller.
|
|
|
|
:return:
|
|
|
|
'''
|
2018-12-08 14:21:00 +01:00
|
|
|
await super(StepController, self).init()
|
2018-11-29 21:59:08 +01:00
|
|
|
pass
|
|
|
|
|
2018-12-06 23:46:06 +01:00
|
|
|
@request_mapping(path="/action", auth_required=False)
|
|
|
|
async def http_action(self, request):
|
2018-12-09 22:20:33 +01:00
|
|
|
|
|
|
|
'''
|
|
|
|
HTTP Endpoint to call an action on the current step.
|
|
|
|
|
|
|
|
:param request: web requset
|
|
|
|
:return: web.Response(text="OK"
|
|
|
|
'''
|
2018-12-13 21:45:33 +01:00
|
|
|
await self.cbpi.bus.fire("step/action", action="test")
|
2018-12-06 23:46:06 +01:00
|
|
|
return web.Response(text="OK")
|
|
|
|
|
|
|
|
|
2018-12-03 22:16:03 +01:00
|
|
|
@request_mapping(path="/start", auth_required=False)
|
|
|
|
async def http_start(self, request):
|
2018-12-09 22:20:33 +01:00
|
|
|
|
|
|
|
'''
|
|
|
|
HTTP Endpoint to start the brewing process.
|
|
|
|
|
|
|
|
:param request:
|
|
|
|
:return:
|
|
|
|
'''
|
|
|
|
|
2018-12-13 21:45:33 +01:00
|
|
|
await self.cbpi.bus.fire("step/start")
|
2018-12-03 22:16:03 +01:00
|
|
|
return web.Response(text="OK")
|
|
|
|
|
|
|
|
@request_mapping(path="/reset", auth_required=False)
|
|
|
|
async def http_reset(self, request):
|
2018-12-09 22:20:33 +01:00
|
|
|
'''
|
|
|
|
HTTP Endpoint to call reset on the current step.
|
|
|
|
|
|
|
|
:param request:
|
|
|
|
:return:
|
|
|
|
'''
|
2018-12-13 21:45:33 +01:00
|
|
|
await self.cbpi.bus.fire("step/reset")
|
2018-12-03 22:16:03 +01:00
|
|
|
return web.Response(text="OK")
|
|
|
|
|
2018-12-07 23:57:32 +01:00
|
|
|
@request_mapping(path="/next", auth_required=False)
|
2018-12-09 22:20:33 +01:00
|
|
|
async def http_next(self, request):
|
|
|
|
|
|
|
|
'''
|
|
|
|
HTTP Endpoint to start the next step. The current step will be stopped
|
|
|
|
|
|
|
|
:param request:
|
|
|
|
:return:
|
|
|
|
'''
|
2018-12-13 21:45:33 +01:00
|
|
|
await self.cbpi.bus.fire("step/next")
|
2018-12-07 23:57:32 +01:00
|
|
|
return web.Response(text="OK")
|
|
|
|
|
2018-12-06 23:46:06 +01:00
|
|
|
@on_event("step/action")
|
2018-12-13 21:45:33 +01:00
|
|
|
async def handle_action(self, action, **kwargs):
|
2018-12-09 22:20:33 +01:00
|
|
|
|
|
|
|
'''
|
|
|
|
Event Handler for "step/action".
|
|
|
|
It invokes the provided method name on the current step
|
|
|
|
|
|
|
|
|
|
|
|
:param action: the method name which will be invoked
|
|
|
|
:param kwargs:
|
|
|
|
:return: None
|
|
|
|
'''
|
2018-12-06 23:46:06 +01:00
|
|
|
if self.current_step is not None:
|
|
|
|
self.current_step.__getattribute__(action)()
|
2018-12-09 22:20:33 +01:00
|
|
|
|
2018-12-06 23:46:06 +01:00
|
|
|
|
2018-12-07 23:57:32 +01:00
|
|
|
@on_event("step/next")
|
2018-12-13 21:45:33 +01:00
|
|
|
async def handle_next(self, **kwargs):
|
2018-12-09 22:20:33 +01:00
|
|
|
'''
|
|
|
|
Event Handler for "step/next".
|
|
|
|
It start the next step
|
|
|
|
|
|
|
|
:param kwargs:
|
|
|
|
:return: None
|
|
|
|
'''
|
2018-12-07 23:57:32 +01:00
|
|
|
if self.current_step is not None:
|
|
|
|
self.current_step.next()
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2018-12-06 23:46:06 +01:00
|
|
|
|
2018-12-03 22:16:03 +01:00
|
|
|
@on_event("step/start")
|
2018-12-13 21:45:33 +01:00
|
|
|
async def handle_start(self, **kwargs):
|
2018-12-09 22:20:33 +01:00
|
|
|
'''
|
|
|
|
Event Handler for "step/start".
|
|
|
|
It starts the brewing process
|
|
|
|
|
|
|
|
:param kwargs:
|
|
|
|
:return: None
|
|
|
|
'''
|
2018-12-13 21:45:33 +01:00
|
|
|
await self.start()
|
2018-12-03 22:16:03 +01:00
|
|
|
|
|
|
|
@on_event("step/reset")
|
2018-12-13 21:45:33 +01:00
|
|
|
async def handle_reset(self, **kwargs):
|
2018-12-09 22:20:33 +01:00
|
|
|
'''
|
|
|
|
Event Handler for "step/reset".
|
|
|
|
Resets the current step
|
|
|
|
|
|
|
|
:param kwargs:
|
|
|
|
:return: None
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
2018-12-05 07:31:12 +01:00
|
|
|
if self.current_step is not None:
|
|
|
|
self.current_task.cancel()
|
|
|
|
self.current_step.reset()
|
2018-12-07 23:57:32 +01:00
|
|
|
|
2018-12-05 07:31:12 +01:00
|
|
|
self.steps[self.current_step.id]["state"] = None
|
|
|
|
self.current_step = None
|
|
|
|
self.current_task = None
|
2018-12-13 21:45:33 +01:00
|
|
|
await self.start()
|
2018-12-05 07:31:12 +01:00
|
|
|
|
|
|
|
@on_event("step/stop")
|
2018-12-13 21:45:33 +01:00
|
|
|
async def handle_stop(self, **kwargs):
|
2018-12-09 22:20:33 +01:00
|
|
|
'''
|
|
|
|
Event Handler for "step/stop".
|
|
|
|
Stops the current step
|
|
|
|
|
|
|
|
|
|
|
|
:param kwargs:
|
|
|
|
:return: None
|
|
|
|
'''
|
2018-12-05 07:31:12 +01:00
|
|
|
if self.current_step is not None:
|
|
|
|
self.current_step.stop()
|
|
|
|
|
2018-12-08 14:21:00 +01:00
|
|
|
for key, step in self.cache.items():
|
|
|
|
step.state = None
|
2018-12-03 22:16:03 +01:00
|
|
|
|
2018-12-05 07:31:12 +01:00
|
|
|
self.current_step = None
|
2018-12-03 22:16:03 +01:00
|
|
|
|
|
|
|
@on_event("step/+/done")
|
2018-12-13 21:45:33 +01:00
|
|
|
async def handle_done(self, topic, **kwargs):
|
2018-12-09 22:20:33 +01:00
|
|
|
|
|
|
|
'''
|
|
|
|
Event Handler for "step/+/done".
|
|
|
|
Starts the next step
|
|
|
|
|
|
|
|
:param topic:
|
|
|
|
:param kwargs:
|
|
|
|
:return:
|
|
|
|
'''
|
2018-12-13 21:45:33 +01:00
|
|
|
await self.start()
|
2018-12-03 22:16:03 +01:00
|
|
|
|
|
|
|
def _step_done(self, task):
|
2018-12-05 07:31:12 +01:00
|
|
|
|
|
|
|
if task.cancelled() == False:
|
2018-12-08 14:21:00 +01:00
|
|
|
self.cache[self.current_step.id].state = "D"
|
2018-12-05 07:31:12 +01:00
|
|
|
step_id = self.current_step.id
|
|
|
|
self.current_step = None
|
2018-12-13 21:45:33 +01:00
|
|
|
self.cbpi.bus.sync_fire("step/%s/done" % step_id)
|
2018-12-05 07:31:12 +01:00
|
|
|
|
2018-12-09 22:20:33 +01:00
|
|
|
def _get_manged_fields_as_array(self, type_cfg):
|
2018-12-05 07:31:12 +01:00
|
|
|
print("tYPE", type_cfg)
|
|
|
|
result = []
|
|
|
|
for f in type_cfg.get("properties"):
|
|
|
|
result.append(f.get("name"))
|
|
|
|
|
|
|
|
return result
|
2018-12-03 22:16:03 +01:00
|
|
|
|
2018-12-13 21:45:33 +01:00
|
|
|
async def start(self):
|
2018-12-03 22:16:03 +01:00
|
|
|
|
2018-12-09 22:20:33 +01:00
|
|
|
'''
|
|
|
|
Start the first step
|
|
|
|
|
|
|
|
:return:None
|
|
|
|
'''
|
|
|
|
|
2018-12-03 22:16:03 +01:00
|
|
|
if self.current_step is None:
|
|
|
|
loop = asyncio.get_event_loop()
|
|
|
|
open_step = False
|
2018-12-08 14:21:00 +01:00
|
|
|
for key, step in self.cache.items():
|
|
|
|
if step.state is None:
|
2018-12-10 22:13:28 +01:00
|
|
|
step_type = self.types["CustomStepCBPi"]
|
2018-12-05 07:31:12 +01:00
|
|
|
print("----------")
|
|
|
|
print(step_type)
|
|
|
|
print("----------")
|
2018-12-09 22:20:33 +01:00
|
|
|
config = dict(cbpi = self.cbpi, id=key, name=step.name, managed_fields=self._get_manged_fields_as_array(step_type))
|
2018-12-05 07:31:12 +01:00
|
|
|
self.current_step = step_type["class"](**config)
|
2018-12-07 23:57:32 +01:00
|
|
|
self.current_task = loop.create_task(self.current_step.run())
|
2018-12-05 07:31:12 +01:00
|
|
|
self.current_task.add_done_callback(self._step_done)
|
2018-12-03 22:16:03 +01:00
|
|
|
open_step = True
|
|
|
|
break
|
|
|
|
if open_step == False:
|
2018-12-13 21:45:33 +01:00
|
|
|
await self.cbpi.bus.fire("step/berwing/finished")
|
2018-12-09 22:20:33 +01:00
|
|
|
|
2018-11-29 21:59:08 +01:00
|
|
|
async def stop(self):
|
|
|
|
pass
|