This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
devicehub-teal/ereuse_devicehub/resources/documents/device_row.py

123 lines
5.2 KiB
Python
Raw Normal View History

2019-02-28 17:21:24 +00:00
from collections import OrderedDict
from flask import current_app
from ereuse_devicehub.resources.action.models import BenchmarkDataStorage, RateComputer, \
2019-05-08 17:12:05 +00:00
TestDataStorage
from ereuse_devicehub.resources.device import models as d
2019-02-28 17:21:24 +00:00
class DeviceRow(OrderedDict):
NUMS = {
d.Display.t: 1,
d.Processor.t: 2,
d.GraphicCard.t: 2,
d.Motherboard.t: 1,
d.NetworkAdapter.t: 2,
d.SoundCard.t: 2
}
# TODO Add more fields information
2019-02-28 17:21:24 +00:00
def __init__(self, device: d.Device) -> None:
super().__init__()
self.device = device
# General information about device
self['Type'] = device.t
if isinstance(device, d.Computer):
self['Chassis'] = device.chassis
else:
self['Chassis'] = ''
2019-02-28 17:21:24 +00:00
self['Tag 1'] = self['Tag 2'] = self['Tag 3'] = ''
for i, tag in zip(range(1, 3), device.tags):
self['Tag {}'.format(i)] = format(tag)
self['Serial Number'] = device.serial_number
self['Model'] = device.model
self['Manufacturer'] = device.manufacturer
# self['State'] = device.last_action_of()
2019-02-28 17:21:24 +00:00
self['Registered in'] = format(device.created, '%c')
self['Price'] = device.price
2019-02-28 17:21:24 +00:00
if isinstance(device, d.Computer):
self['Processor'] = device.processor_model
self['RAM (GB)'] = device.ram_size
self['Data Storage Size (MB)'] = device.data_storage_size
2019-02-28 17:21:24 +00:00
rate = device.rate
if rate:
self['Rate'] = rate.rating
self['Range'] = rate.rating_range
2019-05-08 17:12:05 +00:00
assert isinstance(rate, RateComputer)
2019-02-28 17:21:24 +00:00
self['Processor Rate'] = rate.processor
self['Processor Range'] = rate.processor_range
2019-02-28 17:21:24 +00:00
self['RAM Rate'] = rate.ram
self['RAM Range'] = rate.ram_range
2019-02-28 17:21:24 +00:00
self['Data Storage Rate'] = rate.data_storage
self['Data Storage Range'] = rate.data_storage_range
2019-02-28 17:21:24 +00:00
# More specific information about components
if isinstance(device, d.Computer):
self.components()
def components(self):
"""Function to get all components information of a device."""
2019-02-28 17:21:24 +00:00
assert isinstance(self.device, d.Computer)
# todo put an input specific order (non alphabetic) & where are a list of types components
2019-02-28 17:21:24 +00:00
for type in sorted(current_app.resources[d.Component.t].subresources_types): # type: str
max = self.NUMS.get(type, 4)
if type not in ['Component', 'HardDrive', 'SolidStateDrive']:
i = 1
for component in (r for r in self.device.components if r.type == type):
self.fill_component(type, i, component)
i += 1
if i > max:
break
while i <= max:
self.fill_component(type, i)
i += 1
def fill_component(self, type, i, component=None):
"""Function to put specific information of components
in OrderedDict (csv)
2019-02-28 17:21:24 +00:00
:param type: type of component
:param component: device.components
"""
self['{} {}'.format(type, i)] = format(component) if component else ''
self['{} {} Manufacturer'.format(type, i)] = component.serial_number if component else ''
self['{} {} Model'.format(type, i)] = component.serial_number if component else ''
self['{} {} Serial Number'.format(type, i)] = component.serial_number if component else ''
"""Particular fields for component GraphicCard."""
2019-02-28 17:21:24 +00:00
if isinstance(component, d.GraphicCard):
self['{} {} Memory (MB)'.format(type, i)] = component.memory
"""Particular fields for component DataStorage.t ->
(HardDrive, SolidStateDrive)
"""
2019-02-28 17:21:24 +00:00
if isinstance(component, d.DataStorage):
self['{} {} Size (MB)'.format(type, i)] = component.size
self['{} {} Privacy'.format(type, i)] = component.privacy
try:
self['{} {} Lifetime'.format(type, i)] = component.last_action_of(
2019-05-08 17:12:05 +00:00
TestDataStorage).lifetime
except:
self['{} {} Lifetime'.format(type, i)] = ''
try:
self['{} {} Reading speed'.format(type, i)] = component.last_action_of(
2019-05-08 17:12:05 +00:00
BenchmarkDataStorage).read_speed
except:
self['{} {} Reading speed'.format(type, i)] = ''
try:
self['{} {} Writing speed'.format(type, i)] = component.last_action_of(
2019-05-08 17:12:05 +00:00
BenchmarkDataStorage).write_speed
except:
self['{} {} Writing speed'.format(type, i)] = ''
2019-02-28 17:21:24 +00:00
"""Particular fields for component Processor."""
2019-02-28 17:21:24 +00:00
if isinstance(component, d.Processor):
self['{} {} Number of cores'.format(type, i)] = component.cores
self['{} {} Speed (GHz)'.format(type, i)] = component.speed
"""Particular fields for component RamModule."""
2019-02-28 17:21:24 +00:00
if isinstance(component, d.RamModule):
self['{} {} Size (MB)'.format(type, i)] = component.size
self['{} {} Speed (MHz)'.format(type, i)] = component.speed
# todo add Display, NetworkAdapter, etc...