2019-01-06 17:34:02 +01:00
|
|
|
import os
|
2019-01-06 21:29:21 +01:00
|
|
|
import backive.config.config as cfg
|
2019-01-06 17:34:02 +01:00
|
|
|
|
|
|
|
|
|
|
|
class Device:
|
|
|
|
disks_by_uuid = "/dev/disk/by-uuid"
|
|
|
|
|
2019-01-06 21:29:21 +01:00
|
|
|
def __init__(self, uuid, config=None):
|
|
|
|
self.uuid = uuid
|
|
|
|
self.config = config
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def instance(cls, uuid, config):
|
|
|
|
return Device(uuid, config)
|
2019-01-06 17:34:02 +01:00
|
|
|
|
|
|
|
@classmethod
|
2019-01-06 21:29:21 +01:00
|
|
|
def get_list(cls):
|
2019-01-06 17:34:02 +01:00
|
|
|
if os.path.exists(cls.disks_by_uuid):
|
|
|
|
uuids = os.listdir(cls.disks_by_uuid)
|
|
|
|
return uuids
|
|
|
|
return []
|
2019-01-06 21:29:21 +01:00
|
|
|
|
|
|
|
def mount(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def unmount(self):
|
|
|
|
pass
|
|
|
|
|