-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from pymeasure/locking_actor
Add locking actor
- Loading branch information
Showing
7 changed files
with
525 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
# | ||
# This file is part of the PyLECO package. | ||
# | ||
# Copyright (c) 2023-2024 PyLECO Developers | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
# THE SOFTWARE. | ||
# | ||
|
||
from __future__ import annotations | ||
from typing import Any, Generic, Optional, Sequence, TypeVar, Union | ||
|
||
from zmq import Context | ||
|
||
from .actor import Actor | ||
|
||
|
||
Device = TypeVar("Device") | ||
|
||
|
||
class AccessDeniedError(BaseException): | ||
pass | ||
|
||
|
||
class LockingActor(Actor, Generic[Device]): | ||
"""An Actor which allows to lock the device or parts of it.""" | ||
|
||
def __init__( | ||
self, | ||
name: str, | ||
device_class: Optional[type[Device]] = None, | ||
periodic_reading: float = -1, | ||
auto_connect: Optional[dict] = None, | ||
context: Optional[Context] = None, | ||
**kwargs, | ||
): | ||
super().__init__(name, device_class, periodic_reading, auto_connect, context, **kwargs) | ||
self._locks: dict[Optional[str], bytes] = {} | ||
|
||
def register_rpc_methods(self) -> None: | ||
super().register_rpc_methods() | ||
self.register_rpc_method(self.lock) | ||
self.register_rpc_method(self.unlock) | ||
self.register_rpc_method(self.force_unlock) | ||
|
||
# RPC methods for locking | ||
def lock(self, resource: Optional[str] = None) -> bool: | ||
"""Lock the controlled device or one of its resources and return the success state.""" | ||
if self.check_access_rights(resource): | ||
self._locks[resource] = self.current_message.sender | ||
return True | ||
else: | ||
return False | ||
|
||
def unlock(self, resource: Optional[str] = None) -> None: | ||
"""Unlock the controlled device or one of its resources. | ||
Only the locking Component may unlock. | ||
""" | ||
if self.check_access_rights(resource): | ||
self._locks.pop(resource, None) | ||
|
||
def force_unlock(self, resource: Optional[str] = None) -> None: | ||
"""Unlock the controlled device or one of its resources even if someone else locked it.""" | ||
self._locks.pop(resource, None) | ||
|
||
# modified methods for device access | ||
def get_parameters(self, parameters: Union[list[str], tuple[str, ...]]) -> dict[str, Any]: | ||
# `parameters` should be `Iterable[str]`, however, openrpc does not like that. | ||
for parameter in parameters: | ||
self._check_access_rights_raising(parameter) | ||
return super().get_parameters(parameters=parameters) | ||
|
||
def set_parameters(self, parameters: dict[str, Any]) -> None: | ||
for parameter in parameters.keys(): | ||
self._check_access_rights_raising(parameter) | ||
return super().set_parameters(parameters=parameters) | ||
|
||
def call_action( | ||
self, action: str, args: Optional[Sequence] = None, kwargs: Optional[dict[str, Any]] = None | ||
) -> Any: | ||
self._check_access_rights_raising(action) | ||
return super().call_action(action=action, args=args, kwargs=kwargs) | ||
|
||
# helper methods | ||
def check_access_rights(self, resource: Optional[str]) -> bool: | ||
requester = self.current_message.sender | ||
if resource is None: | ||
elements = [] | ||
else: | ||
elements = resource.split(".") | ||
for i in range(-1, len(elements)): | ||
local_owner = self._locks.get(".".join(elements[:i + 1])) if i >= 0 else None | ||
if local_owner is not None and requester != local_owner: | ||
return False | ||
return True | ||
|
||
def _check_access_rights_raising(self, resource: str) -> None: | ||
if self.check_access_rights(resource=resource) is False: | ||
raise AccessDeniedError(f"Resource '{resource}' is locked by someone else.") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# | ||
# This file is part of the PyLECO package. | ||
# | ||
# Copyright (c) 2023-2024 PyLECO Developers | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
# THE SOFTWARE. | ||
# | ||
|
||
from typing import Optional | ||
|
||
from .director import Director | ||
|
||
|
||
class LockingDirector(Director): | ||
|
||
def lock(self, resource: Optional[str] = None) -> bool: | ||
return self.ask_rpc("lock", resource=resource) | ||
|
||
def unlock(self, resource: Optional[str] = None) -> None: | ||
return self.ask_rpc("unlock", resource=resource) | ||
|
||
def force_unlock(self, resource: Optional[str] = None) -> None: | ||
return self.ask_rpc("force_unlock", resource=resource) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.