2018-04-27 17:16:43 +00:00
|
|
|
from contextlib import suppress
|
2018-05-13 13:13:12 +00:00
|
|
|
from operator import attrgetter
|
2018-04-27 17:16:43 +00:00
|
|
|
from typing import Dict, Set
|
|
|
|
|
|
|
|
from ereuse_utils.naming import Naming
|
2018-04-10 15:06:39 +00:00
|
|
|
from sqlalchemy import BigInteger, Column, Float, ForeignKey, Integer, Sequence, SmallInteger, \
|
2018-04-27 17:16:43 +00:00
|
|
|
Unicode, inspect
|
2018-04-10 15:06:39 +00:00
|
|
|
from sqlalchemy.ext.declarative import declared_attr
|
2018-04-30 17:58:19 +00:00
|
|
|
from sqlalchemy.orm import ColumnProperty, backref, relationship
|
2018-04-10 15:06:39 +00:00
|
|
|
|
2018-04-27 17:16:43 +00:00
|
|
|
from ereuse_devicehub.resources.models import STR_BIG_SIZE, STR_SIZE, STR_SM_SIZE, Thing, \
|
|
|
|
check_range
|
|
|
|
from teal.db import CASCADE, POLYMORPHIC_ID, POLYMORPHIC_ON, ResourceNotFound
|
2018-04-10 15:06:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Device(Thing):
|
2018-04-27 17:16:43 +00:00
|
|
|
id = Column(BigInteger, Sequence('device_seq'), primary_key=True) # type: int
|
|
|
|
type = Column(Unicode(STR_SM_SIZE), nullable=False)
|
|
|
|
hid = Column(Unicode(STR_BIG_SIZE), unique=True) # type: str
|
|
|
|
pid = Column(Unicode(STR_SIZE)) # type: str
|
|
|
|
gid = Column(Unicode(STR_SIZE)) # type: str
|
|
|
|
model = Column(Unicode(STR_BIG_SIZE)) # type: str
|
|
|
|
manufacturer = Column(Unicode(STR_SIZE)) # type: str
|
|
|
|
serial_number = Column(Unicode(STR_SIZE)) # type: str
|
|
|
|
weight = Column(Float(precision=3, decimal_return_scale=3),
|
|
|
|
check_range('weight', 0.1, 3)) # type: float
|
|
|
|
width = Column(Float(precision=3, decimal_return_scale=3),
|
|
|
|
check_range('width', 0.1, 3)) # type: float
|
|
|
|
height = Column(Float(precision=3, decimal_return_scale=3),
|
|
|
|
check_range('height', 0.1, 3)) # type: float
|
|
|
|
|
2018-05-13 13:13:12 +00:00
|
|
|
@property
|
|
|
|
def events(self) -> list:
|
|
|
|
"""All the events performed to the device."""
|
|
|
|
# Tried to use chain() but Marshmallow doesn't like it :-(
|
|
|
|
events = self.events_multiple + self.events_one
|
|
|
|
events.sort(key=attrgetter('id'))
|
|
|
|
return events
|
|
|
|
|
2018-04-30 17:58:19 +00:00
|
|
|
def __init__(self, *args, **kw) -> None:
|
|
|
|
super().__init__(*args, **kw)
|
|
|
|
with suppress(TypeError):
|
|
|
|
self.hid = Naming.hid(self.manufacturer, self.serial_number, self.model) # type: str
|
|
|
|
|
2018-04-27 17:16:43 +00:00
|
|
|
@property
|
2018-04-30 17:58:19 +00:00
|
|
|
def physical_properties(self) -> Dict[str, object or None]:
|
2018-04-27 17:16:43 +00:00
|
|
|
"""
|
|
|
|
Fields that describe the physical properties of a device.
|
|
|
|
|
|
|
|
:return A generator where each value is a tuple with tho fields:
|
|
|
|
- Column.
|
|
|
|
- Actual value of the column or None.
|
|
|
|
"""
|
|
|
|
# todo ensure to remove materialized values when start using them
|
|
|
|
# todo or self.__table__.columns if inspect fails
|
2018-04-30 17:58:19 +00:00
|
|
|
return {c.key: getattr(self, c.key, None)
|
2018-04-27 17:16:43 +00:00
|
|
|
for c in inspect(self.__class__).attrs
|
2018-04-30 17:58:19 +00:00
|
|
|
if isinstance(c, ColumnProperty)
|
|
|
|
and not getattr(c, 'foreign_keys', None)
|
|
|
|
and c.key not in {'id', 'type', 'created', 'updated', 'parent_id', 'hid'}}
|
2018-04-10 15:06:39 +00:00
|
|
|
|
|
|
|
@declared_attr
|
|
|
|
def __mapper_args__(cls):
|
|
|
|
"""
|
|
|
|
Defines inheritance.
|
|
|
|
|
|
|
|
From `the guide <http://docs.sqlalchemy.org/en/latest/orm/
|
|
|
|
extensions/declarative/api.html
|
|
|
|
#sqlalchemy.ext.declarative.declared_attr>`_
|
|
|
|
"""
|
2018-05-13 13:13:12 +00:00
|
|
|
args = {POLYMORPHIC_ID: cls.t}
|
|
|
|
if cls.t == 'Device':
|
2018-04-10 15:06:39 +00:00
|
|
|
args[POLYMORPHIC_ON] = cls.type
|
|
|
|
return args
|
|
|
|
|
2018-04-30 17:58:19 +00:00
|
|
|
def __lt__(self, other):
|
|
|
|
return self.id < other.id
|
2018-04-27 17:16:43 +00:00
|
|
|
|
2018-05-13 13:13:12 +00:00
|
|
|
def __repr__(self) -> str:
|
|
|
|
return '<{0.t} {0.id!r} model={0.model!r} S/N={0.serial_number!r}>'.format(self)
|
|
|
|
|
2018-04-10 15:06:39 +00:00
|
|
|
|
|
|
|
class Computer(Device):
|
2018-04-27 17:16:43 +00:00
|
|
|
id = Column(BigInteger, ForeignKey(Device.id), primary_key=True) # type: int
|
2018-04-10 15:06:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Desktop(Computer):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Laptop(Computer):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Netbook(Computer):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Server(Computer):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Microtower(Computer):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Component(Device):
|
2018-04-27 17:16:43 +00:00
|
|
|
id = Column(BigInteger, ForeignKey(Device.id), primary_key=True) # type: int
|
2018-04-10 15:06:39 +00:00
|
|
|
|
|
|
|
parent_id = Column(BigInteger, ForeignKey('computer.id'))
|
|
|
|
parent = relationship(Computer,
|
2018-05-13 13:13:12 +00:00
|
|
|
backref=backref('components',
|
|
|
|
lazy=True,
|
|
|
|
cascade=CASCADE,
|
|
|
|
order_by=lambda: Component.id),
|
2018-04-27 17:16:43 +00:00
|
|
|
primaryjoin='Component.parent_id == Computer.id') # type: Device
|
|
|
|
|
|
|
|
def similar_one(self, parent: Computer, blacklist: Set[int]) -> 'Component':
|
|
|
|
"""
|
|
|
|
Gets a component that:
|
|
|
|
- has the same parent.
|
|
|
|
- Doesn't generate HID.
|
|
|
|
- Has same physical properties.
|
|
|
|
:param parent:
|
|
|
|
:param blacklist: A set of components to not to consider
|
|
|
|
when looking for similar ones.
|
|
|
|
"""
|
|
|
|
assert self.hid is None, 'Don\'t use this method with a component that has HID'
|
|
|
|
component = self.__class__.query \
|
|
|
|
.filter_by(parent=parent, hid=None, **self.physical_properties) \
|
|
|
|
.filter(~Component.id.in_(blacklist)) \
|
|
|
|
.first()
|
|
|
|
if not component:
|
|
|
|
raise ResourceNotFound(self.type)
|
|
|
|
return component
|
2018-04-10 15:06:39 +00:00
|
|
|
|
2018-05-13 13:13:12 +00:00
|
|
|
@property
|
|
|
|
def events(self) -> list:
|
|
|
|
events = super().events
|
|
|
|
events.extend(self.events_components)
|
|
|
|
events.sort(key=attrgetter('id'))
|
|
|
|
return events
|
|
|
|
|
|
|
|
|
|
|
|
class JoinedComponentTableMixin:
|
|
|
|
@declared_attr
|
|
|
|
def id(cls):
|
|
|
|
return Column(BigInteger, ForeignKey(Component.id), primary_key=True)
|
|
|
|
|
2018-04-10 15:06:39 +00:00
|
|
|
|
2018-05-13 13:13:12 +00:00
|
|
|
class GraphicCard(JoinedComponentTableMixin, Component):
|
2018-04-27 17:16:43 +00:00
|
|
|
memory = Column(SmallInteger, check_range('memory', min=1, max=10000)) # type: int
|
2018-04-10 15:06:39 +00:00
|
|
|
|
|
|
|
|
2018-05-13 13:13:12 +00:00
|
|
|
class HardDrive(JoinedComponentTableMixin, Component):
|
2018-04-27 17:16:43 +00:00
|
|
|
size = Column(Integer, check_range('size', min=1, max=10 ** 8)) # type: int
|
2018-04-10 15:06:39 +00:00
|
|
|
|
|
|
|
|
2018-05-13 13:13:12 +00:00
|
|
|
class Motherboard(JoinedComponentTableMixin, Component):
|
2018-04-27 17:16:43 +00:00
|
|
|
slots = Column(SmallInteger, check_range('slots')) # type: int
|
|
|
|
usb = Column(SmallInteger, check_range('usb')) # type: int
|
|
|
|
firewire = Column(SmallInteger, check_range('firewire')) # type: int
|
|
|
|
serial = Column(SmallInteger, check_range('serial')) # type: int
|
|
|
|
pcmcia = Column(SmallInteger, check_range('pcmcia')) # type: int
|
2018-04-10 15:06:39 +00:00
|
|
|
|
|
|
|
|
2018-05-13 13:13:12 +00:00
|
|
|
class NetworkAdapter(JoinedComponentTableMixin, Component):
|
2018-04-27 17:16:43 +00:00
|
|
|
speed = Column(SmallInteger, check_range('speed', min=10, max=10000)) # type: int
|
|
|
|
|
|
|
|
|
2018-05-13 13:13:12 +00:00
|
|
|
class Processor(JoinedComponentTableMixin, Component):
|
2018-05-11 16:58:48 +00:00
|
|
|
speed = Column(Float, check_range('speed', 0.1, 15))
|
|
|
|
cores = Column(SmallInteger, check_range('cores', 1, 10))
|
|
|
|
address = Column(SmallInteger, check_range('address', 8, 256))
|
|
|
|
|
|
|
|
|
2018-05-13 13:13:12 +00:00
|
|
|
class RamModule(JoinedComponentTableMixin, Component):
|
2018-04-27 17:16:43 +00:00
|
|
|
size = Column(SmallInteger, check_range('size', min=128, max=17000))
|
|
|
|
speed = Column(Float, check_range('speed', min=100, max=10000))
|