2022-04-05 20:05:55 +01:00
|
|
|
import abc
|
2024-02-15 15:15:30 +00:00
|
|
|
import logging
|
2022-11-07 11:08:56 +00:00
|
|
|
from typing import Optional
|
2022-08-07 23:55:51 +01:00
|
|
|
|
2022-11-16 15:51:26 +00:00
|
|
|
from .meta import mute_prop
|
2024-02-14 22:06:28 +00:00
|
|
|
from .shared import EQ, GEQ, Config, Dyn, Insert, Mix
|
2022-04-05 20:05:55 +01:00
|
|
|
|
2024-02-15 15:15:30 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2022-04-05 20:05:55 +01:00
|
|
|
|
|
|
|
class ILR(abc.ABC):
|
2024-02-08 17:40:49 +00:00
|
|
|
"""Abstract Base Class for lr"""
|
2022-04-05 20:05:55 +01:00
|
|
|
|
2022-11-07 11:08:56 +00:00
|
|
|
def __init__(self, remote, index: Optional[int] = None):
|
2022-04-05 20:05:55 +01:00
|
|
|
self._remote = remote
|
2022-11-07 11:08:56 +00:00
|
|
|
if index is not None:
|
|
|
|
self.index = index + 1
|
2024-02-15 15:15:30 +00:00
|
|
|
self.logger = logger.getChild(self.__class__.__name__)
|
2022-04-05 20:05:55 +01:00
|
|
|
|
|
|
|
def getter(self, param: str):
|
2024-02-03 13:03:49 +00:00
|
|
|
return self._remote.query(f"{self.address}/{param}")
|
2022-04-05 20:05:55 +01:00
|
|
|
|
|
|
|
def setter(self, param: str, val: int):
|
|
|
|
self._remote.send(f"{self.address}/{param}", val)
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def address(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class LR(ILR):
|
2024-02-08 17:40:49 +00:00
|
|
|
"""Concrete class for lr"""
|
2022-04-05 20:05:55 +01:00
|
|
|
|
|
|
|
@classmethod
|
2022-11-07 11:08:56 +00:00
|
|
|
def make(cls, remote, index=None):
|
2022-04-05 20:05:55 +01:00
|
|
|
"""
|
|
|
|
Factory function for LR
|
|
|
|
|
|
|
|
Creates a mixin of shared subclasses, sets them as class attributes.
|
|
|
|
|
|
|
|
Returns an LR class of a kind.
|
|
|
|
"""
|
|
|
|
LR_cls = type(
|
2022-08-07 23:55:51 +01:00
|
|
|
f"LR{remote.kind}",
|
2022-04-05 20:05:55 +01:00
|
|
|
(cls,),
|
|
|
|
{
|
|
|
|
**{
|
|
|
|
_cls.__name__.lower(): type(
|
2022-08-07 23:55:51 +01:00
|
|
|
f"{_cls.__name__}{remote.kind}", (_cls, cls), {}
|
2022-11-07 11:08:56 +00:00
|
|
|
)(remote, index)
|
2022-04-05 20:05:55 +01:00
|
|
|
for _cls in (
|
|
|
|
Config,
|
|
|
|
Dyn,
|
|
|
|
Insert,
|
|
|
|
GEQ.make(),
|
2022-11-07 11:08:56 +00:00
|
|
|
EQ.make_sixband(cls, remote, index),
|
2022-04-05 20:05:55 +01:00
|
|
|
Mix,
|
|
|
|
)
|
|
|
|
},
|
2022-11-16 15:51:26 +00:00
|
|
|
"mute": mute_prop(),
|
2022-04-05 20:05:55 +01:00
|
|
|
},
|
|
|
|
)
|
2022-11-07 11:08:56 +00:00
|
|
|
return LR_cls(remote, index)
|
2022-04-05 20:05:55 +01:00
|
|
|
|
|
|
|
@property
|
|
|
|
def address(self) -> str:
|
2024-02-14 22:06:28 +00:00
|
|
|
return "/lr"
|