craftbeerpi4-pione/core/controller/actor_controller.py

176 lines
4.9 KiB
Python
Raw Normal View History

2018-12-13 21:45:33 +01:00
import pprint
from asyncio import Future
import asyncio
2018-11-01 19:50:04 +01:00
from aiohttp import web
2018-11-16 20:35:59 +01:00
from core.api.actor import CBPiActor
2018-11-04 01:55:54 +01:00
from core.api.decorator import on_event, request_mapping
2018-11-01 19:50:04 +01:00
from core.controller.crud_controller import CRUDController
from core.database.model import ActorModel
from core.http_endpoints.http_api import HttpAPI
2018-11-16 20:35:59 +01:00
from core.utils import parse_props
2018-11-01 19:50:04 +01:00
2018-11-01 21:25:42 +01:00
class ActorHttp(HttpAPI):
2018-11-01 19:50:04 +01:00
2018-11-18 23:09:17 +01:00
@request_mapping(path="/{id:\d+}/on", auth_required=False)
2018-11-01 21:25:42 +01:00
async def http_on(self, request) -> web.Response:
"""
2018-11-16 20:35:59 +01:00
:param request:
:return:
"""
id = int(request.match_info['id'])
2018-12-13 21:45:33 +01:00
result = await self.cbpi.bus.fire2(topic="actor/%s/switch/on" % id, id=id, power=99)
print(result.timeout)
for key, value in result.results.items():
print(key, value.result)
2018-11-16 20:35:59 +01:00
return web.Response(status=204)
2018-11-01 21:25:42 +01:00
2018-11-18 23:09:17 +01:00
@request_mapping(path="/{id:\d+}/off", auth_required=False)
2018-11-16 20:35:59 +01:00
async def http_off(self, request) -> web.Response:
"""
2018-11-01 21:25:42 +01:00
:param request:
:return:
"""
2018-11-16 20:35:59 +01:00
id = int(request.match_info['id'])
2018-12-13 21:45:33 +01:00
await self.cbpi.bus.fire(topic="actor/%s/off" % id, id=id)
2018-11-01 21:25:42 +01:00
return web.Response(status=204)
2018-11-01 19:50:04 +01:00
2018-11-18 23:09:17 +01:00
@request_mapping(path="/{id:\d+}/toggle", auth_required=False)
2018-11-16 20:35:59 +01:00
async def http_toggle(self, request) -> web.Response:
"""
:param request:
:return:
"""
id = int(request.match_info['id'])
print("ID", id)
2018-12-13 21:45:33 +01:00
await self.cbpi.bus.fire(topic="actor/%s/toggle" % id, id=id)
2018-11-16 20:35:59 +01:00
return web.Response(status=204)
class ActorController(ActorHttp, CRUDController):
2018-11-01 19:50:04 +01:00
2018-11-16 20:35:59 +01:00
'''
The main actor controller
'''
2018-11-01 21:25:42 +01:00
model = ActorModel
2018-11-01 19:50:04 +01:00
def __init__(self, cbpi):
super(ActorController, self).__init__(cbpi)
self.cbpi = cbpi
self.state = False;
self.cbpi.register(self, "/actor")
self.types = {}
self.actors = {}
2018-11-16 20:35:59 +01:00
async def init(self):
'''
This method initializes all actors during startup. It creates actor instances
:return:
'''
2018-11-01 19:50:04 +01:00
await super(ActorController, self).init()
2018-11-18 15:40:10 +01:00
2018-11-01 19:50:04 +01:00
for id, value in self.cache.items():
2018-12-13 21:45:33 +01:00
await self._init_actor(value)
2018-11-01 19:50:04 +01:00
2018-12-13 21:45:33 +01:00
async def _init_actor(self, actor):
if actor.type in self.types:
cfg = actor.config.copy()
cfg.update(dict(cbpi=self.cbpi, id=id, name=actor.name))
clazz = self.types[actor.type]["class"];
2018-11-18 23:09:17 +01:00
2018-12-13 21:45:33 +01:00
self.cache[actor.id].instance = clazz(**cfg)
self.cache[actor.id].instance.init()
await self.cbpi.bus.fire(topic="actor/%s/initialized" % actor.id, id=actor.id)
2018-11-18 15:40:10 +01:00
2018-11-16 20:35:59 +01:00
2018-12-13 21:45:33 +01:00
async def _stop_actor(self, actor):
actor.instance.stop()
await self.cbpi.bus.fire(topic="actor/%s/stopped" % actor.id, id=actor.id)
2018-11-29 21:59:08 +01:00
2018-11-16 20:35:59 +01:00
2018-11-04 00:47:26 +01:00
2018-12-03 22:16:03 +01:00
@on_event(topic="actor/+/switch/on")
2018-12-13 21:45:33 +01:00
async def on(self, id , future: Future, power=100, **kwargs) -> None:
2018-11-18 15:40:10 +01:00
'''
Method to switch an actor on.
Supporting Event Topic "actor/+/on"
2018-11-29 21:59:08 +01:00
:param actor_id: the actor id
2018-11-18 15:40:10 +01:00
:param power: as integer value between 1 and 100
:param kwargs:
:return:
'''
2018-11-16 20:35:59 +01:00
id = int(id)
if id in self.cache:
print("POWER ON")
2018-11-29 21:59:08 +01:00
actor = self.cache[id ].instance
2018-12-13 21:45:33 +01:00
await self.cbpi.bus.fire("actor/%s/on/ok" % id)
2018-11-16 20:35:59 +01:00
actor.on(power)
2018-12-13 21:45:33 +01:00
future.set_result("OK")
2018-11-16 20:35:59 +01:00
@on_event(topic="actor/+/toggle")
2018-12-13 21:45:33 +01:00
async def toggle(self, id, power=100, **kwargs) -> None:
2018-11-18 15:40:10 +01:00
'''
Method to toggle an actor on or off
Supporting Event Topic "actor/+/toggle"
2018-12-08 14:21:00 +01:00
:param id: the actor id
:param power: the power as interger between 0 and 100
2018-11-18 15:40:10 +01:00
:return:
'''
2018-11-16 20:35:59 +01:00
id = int(id)
if id in self.cache:
actor = self.cache[id].instance
if actor.state is True:
actor.off()
else:
actor.on()
2018-11-01 19:50:04 +01:00
2018-11-01 21:25:42 +01:00
@on_event(topic="actor/+/off")
2018-12-13 21:45:33 +01:00
async def off(self, id, **kwargs) -> None:
2018-11-01 21:25:42 +01:00
"""
2018-11-18 15:40:10 +01:00
Method to switch and actor off
Supporting Event Topic "actor/+/off"
2018-12-08 14:21:00 +01:00
:param id: the actor id
2018-11-01 21:25:42 +01:00
:param kwargs:
"""
2018-11-16 20:35:59 +01:00
id = int(id)
if id in self.cache:
actor = self.cache[id].instance
actor.off()
2018-12-13 21:45:33 +01:00
async def _post_add_callback(self, m):
'''
:param m:
:return:
'''
await self._init_actor(m)
pass
async def _pre_delete_callback(self, actor_id):
if int(actor_id) not in self.cache:
return
if self.cache[int(actor_id)].instance is not None:
await self._stop_actor(self.cache[int(actor_id)])
async def _pre_update_callback(self, actor):
if actor.instance is not None:
await self._stop_actor(actor)
async def _post_update_callback(self, actor):
self._init_actor(actor)