mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
51 lines
No EOL
1.6 KiB
Python
51 lines
No EOL
1.6 KiB
Python
import json
|
|
import logging
|
|
import os
|
|
from logging.handlers import TimedRotatingFileHandler
|
|
from core.utils.encoder import ComplexEncoder
|
|
from core.job.aiohttp import get_scheduler_from_app
|
|
from cbpi_api import *
|
|
from core.controller.crud_controller import CRUDController
|
|
from core.database.model import SensorModel
|
|
from core.http_endpoints.http_api import HttpAPI
|
|
|
|
|
|
class SensorController(CRUDController, HttpAPI):
|
|
|
|
model = SensorModel
|
|
|
|
def __init__(self, cbpi):
|
|
self.cbpi = cbpi
|
|
self.cbpi.register(self, "/sensor")
|
|
self.service = self
|
|
self.types = {}
|
|
|
|
self.sensors = {}
|
|
|
|
def info(self):
|
|
|
|
return json.dumps(dict(name="SensorController", types=self.types), cls=ComplexEncoder)
|
|
|
|
async def init(self):
|
|
'''
|
|
This method initializes all actors during startup. It creates actor instances
|
|
|
|
:return:
|
|
'''
|
|
await super(SensorController, self).init()
|
|
|
|
for name, clazz in self.types.items():
|
|
pass
|
|
|
|
for id, value in self.cache.items():
|
|
if value.type in self.types:
|
|
cfg = value.config.copy()
|
|
cfg.update(dict(cbpi=self.cbpi, id=id, name=value.name))
|
|
clazz = self.types[value.type]["class"];
|
|
self.cache[id].instance = clazz(**cfg)
|
|
scheduler = get_scheduler_from_app(self.cbpi.app)
|
|
self.cache[id].instance.job = await scheduler.spawn(self.cache[id].instance.run(self.cbpi), value.name, "sensor")
|
|
|
|
|
|
async def get_value(self, id):
|
|
return self.cache[id].instance.value |