2022-01-05 09:32:09 +00:00
|
|
|
from ..proto import sma_pb2
|
|
|
|
|
|
|
|
|
|
|
|
class DeviceException(Exception):
|
|
|
|
def __init__(self, code, message):
|
|
|
|
self.code = code
|
|
|
|
self.message = message
|
|
|
|
|
|
|
|
|
|
|
|
class DeviceManager:
|
2022-02-18 07:35:20 +00:00
|
|
|
def __init__(self, name, protocol, client):
|
2022-01-05 09:32:09 +00:00
|
|
|
self._client = client
|
2022-02-18 07:35:20 +00:00
|
|
|
self.protocol = protocol
|
2022-01-05 09:32:09 +00:00
|
|
|
self.name = name
|
|
|
|
|
|
|
|
def init(self, config):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def create_device(self, request):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def delete_device(self, request):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def attach_volume(self, request):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def detach_volume(self, request):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def owns_device(self, id):
|
|
|
|
raise NotImplementedError()
|