2023-10-16 19:03:12 +03:00
|
|
|
|
from turtle import Turtle
|
2023-10-16 22:40:59 +03:00
|
|
|
|
from controls.device import (
|
|
|
|
|
SynchronyDevice,
|
|
|
|
|
TraitDescriptor,
|
|
|
|
|
ActionDescriptor,
|
|
|
|
|
NoSuchTrait,
|
|
|
|
|
NoSuchAction,
|
|
|
|
|
)
|
|
|
|
|
from typing import Collection, Optional, Any
|
|
|
|
|
import inspect
|
|
|
|
|
|
2023-10-16 19:03:12 +03:00
|
|
|
|
|
|
|
|
|
class TurtleDevice(SynchronyDevice):
|
2023-10-16 22:40:59 +03:00
|
|
|
|
def __init__(self) -> None:
|
|
|
|
|
super().__init__()
|
|
|
|
|
self.open()
|
|
|
|
|
|
2023-10-26 22:57:53 +03:00
|
|
|
|
def open(self) -> None:
|
2023-10-16 22:40:59 +03:00
|
|
|
|
self.turtle = Turtle()
|
|
|
|
|
|
2023-10-26 23:55:48 +03:00
|
|
|
|
def close(self) -> None:
|
2023-10-16 22:40:59 +03:00
|
|
|
|
del self.turtle
|
2023-10-26 22:57:53 +03:00
|
|
|
|
self.close()
|
2023-10-16 22:40:59 +03:00
|
|
|
|
|
2023-10-26 22:57:53 +03:00
|
|
|
|
def execute(self, action_name: str, *args, **kwargs) -> None:
|
|
|
|
|
actions = self.action_descriptors
|
|
|
|
|
for action in actions:
|
|
|
|
|
if action.name == action_name:
|
2023-10-26 23:55:48 +03:00
|
|
|
|
# NOTE: судя по заданию, должен быть такой assert,
|
|
|
|
|
# но почему-то у меня inspect плохо спарсил типы именно для Turtle
|
2023-10-26 22:57:53 +03:00
|
|
|
|
# везде empty_time, хотя судя по доке в модуле typos проставлены
|
2023-10-26 23:55:48 +03:00
|
|
|
|
# при чем тестировал на pd.DataFrame, там все прекрасно парсит
|
2023-10-26 22:57:53 +03:00
|
|
|
|
# for argument in kwargs:
|
|
|
|
|
# action_tmp_argument_type = action.arguments[argument]
|
|
|
|
|
# given_method_tmp_argument = type(kwargs[argument])
|
|
|
|
|
# assert (
|
|
|
|
|
# action_tmp_argument_type == given_method_tmp_argument
|
|
|
|
|
# ), f"Переданный аргумент должен быть типа {action_tmp_argument_type}, вы передали {given_method_tmp_argument}"
|
|
|
|
|
getattr(self.turtle, action_name)(*args, **kwargs)
|
|
|
|
|
return
|
|
|
|
|
raise NoSuchAction
|
2023-10-16 22:40:59 +03:00
|
|
|
|
|
|
|
|
|
def read(self, trait_name: str) -> Any:
|
2023-10-26 22:57:53 +03:00
|
|
|
|
return Turtle().__getattribute__(trait_name)
|
2023-10-16 22:40:59 +03:00
|
|
|
|
|
|
|
|
|
def write(self, trait_name: str, value: Any) -> bool:
|
|
|
|
|
traits = self.trait_descriptors
|
|
|
|
|
for trait in traits:
|
|
|
|
|
if trait.name == trait_name:
|
|
|
|
|
attribute_type = type(self.turtle.__getattribute__(trait_name))
|
|
|
|
|
assert (
|
|
|
|
|
type(value) == attribute_type
|
|
|
|
|
), f"Wrong value type. Type should be {attribute_type}, but you pass {type(value)}"
|
|
|
|
|
self.turtle.__setattr__(trait_name, value)
|
|
|
|
|
return True
|
|
|
|
|
raise NoSuchTrait
|
|
|
|
|
|
2023-10-26 22:57:53 +03:00
|
|
|
|
def invalidate(self, trait_name: str) -> None:
|
|
|
|
|
self.write(trait_name=trait_name, value=Turtle().__getattribute__(trait_name))
|
|
|
|
|
return
|
2023-10-16 22:40:59 +03:00
|
|
|
|
|
|
|
|
|
def __getitem__(self, trait_name: str) -> Optional[Any]:
|
2023-10-26 22:57:53 +03:00
|
|
|
|
traits = self.trait_descriptors
|
|
|
|
|
for trait in traits:
|
|
|
|
|
if trait.name == trait_name:
|
|
|
|
|
return self.turtle.__getattribute__(trait_name)
|
|
|
|
|
raise NoSuchTrait
|
2023-10-16 22:40:59 +03:00
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def trait_descriptors(self) -> Collection[TraitDescriptor]:
|
|
|
|
|
return [
|
|
|
|
|
TraitDescriptor(name=attr, info=getattr(self.turtle, attr).__doc__)
|
|
|
|
|
for attr in dir(self.turtle)
|
|
|
|
|
if attr[0] != "_"
|
|
|
|
|
and attr[-1] != "_"
|
|
|
|
|
and not callable(getattr(self.turtle, attr))
|
|
|
|
|
]
|
2023-10-16 19:03:12 +03:00
|
|
|
|
|
2023-10-16 22:40:59 +03:00
|
|
|
|
@property
|
|
|
|
|
def action_descriptors(self) -> Collection[ActionDescriptor]:
|
|
|
|
|
methods = [
|
|
|
|
|
attr
|
|
|
|
|
for attr in dir(self.turtle)
|
|
|
|
|
if attr[0] != "_"
|
|
|
|
|
and attr[-1] != "_"
|
|
|
|
|
and callable(getattr(self.turtle, attr))
|
|
|
|
|
]
|
2023-10-16 19:03:12 +03:00
|
|
|
|
|
2023-10-16 22:40:59 +03:00
|
|
|
|
result = []
|
|
|
|
|
for method_name in methods:
|
|
|
|
|
method = getattr(self.turtle, method_name)
|
2023-10-26 23:32:17 +03:00
|
|
|
|
parameters = inspect.signature(method).parameters
|
|
|
|
|
|
2023-10-16 22:40:59 +03:00
|
|
|
|
arg_types = {}
|
2023-10-26 23:32:17 +03:00
|
|
|
|
for arg_name, arg in parameters.items():
|
|
|
|
|
arg_types[arg_name] = parameters[arg_name].annotation
|
|
|
|
|
|
2023-10-16 22:40:59 +03:00
|
|
|
|
result.append(
|
|
|
|
|
ActionDescriptor(
|
|
|
|
|
name=method_name, info=method.__doc__, arguments=arg_types
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
return result
|