1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
# Copyright 2017 Hewlett Packard Enterprise Development LP
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import logging
from sushy.resources import base
from sushy import utils as sushy_utils
from proliantutils.redfish.resources.system.storage import constants
from proliantutils.redfish.resources.system.storage import drive as sys_drives
from proliantutils.redfish.resources.system.storage \
import volume as sys_volumes
from proliantutils.redfish import utils
LOG = logging.getLogger(__name__)
class Storage(base.ResourceBase):
"""This class represents the Storage resource"""
identity = base.Field('Id', required=True)
"""The Storage identity string"""
name = base.Field('Name')
"""The name of the resource or array element"""
description = base.Field('Description')
"""Description"""
drives = base.Field('Drives')
"""The set of drives attached to the storage controllers"""
@property
@sushy_utils.cache_it
def volumes(self):
"""This property prepares the list of volumes
:return a list of volumes.
"""
return sys_volumes.VolumeCollection(
self._conn, utils.get_subresource_path_by(self, 'Volumes'),
redfish_version=self.redfish_version)
def _drives_list(self):
"""Gets the list of drives
:return a list of drives.
"""
drives_list = []
for member in self.drives:
drives_list.append(sys_drives.Drive(
self._conn, member.get('@odata.id'), self.redfish_version))
return drives_list
@property
@sushy_utils.cache_it
def drives_maximum_size_bytes(self):
"""Gets the biggest disk
:returns the size in MiB.
"""
return utils.max_safe([member.capacity_bytes
for member in self._drives_list()])
@property
@sushy_utils.cache_it
def has_ssd(self):
"""Return true if any of the drive is ssd"""
for member in self._drives_list():
if member.media_type == constants.MEDIA_TYPE_SSD:
return True
return False
@property
@sushy_utils.cache_it
def has_rotational(self):
"""Return true if any of the drive is HDD"""
for member in self._drives_list():
if member.media_type == constants.MEDIA_TYPE_HDD:
return True
return False
@property
@sushy_utils.cache_it
def has_nvme_ssd(self):
"""Return True if the drive is SSD and protocol is NVMe"""
for member in self._drives_list():
if (member.media_type == constants.MEDIA_TYPE_SSD
and member.protocol == constants.PROTOCOL_NVMe):
return True
return False
@property
@sushy_utils.cache_it
def drive_rotational_speed_rpm(self):
"""Gets set of rotational speed of the disks"""
drv_rot_speed_rpm = set()
for member in self._drives_list():
if member.rotation_speed_rpm is not None:
drv_rot_speed_rpm.add(member.rotation_speed_rpm)
return drv_rot_speed_rpm
class StorageCollection(base.ResourceCollectionBase):
"""This class represents the collection of Storage resource"""
@property
def _resource_type(self):
return Storage
@property
@sushy_utils.cache_it
def volumes_maximum_size_bytes(self):
"""Gets the biggest logical drive
:returns the size in MiB.
"""
return utils.max_safe([member.volumes.maximum_size_bytes
for member in self.get_members()])
@property
@sushy_utils.cache_it
def drives_maximum_size_bytes(self):
"""Gets the biggest disk
:returns the size in MiB.
"""
return utils.max_safe([member.drives_maximum_size_bytes
for member in self.get_members()])
@property
@sushy_utils.cache_it
def has_ssd(self):
"""Return true if Storage has any drive as ssd"""
for member in self.get_members():
if member.has_ssd:
return True
return False
@property
@sushy_utils.cache_it
def has_rotational(self):
"""Return true if Storage has any drive as HDD"""
for member in self.get_members():
if member.has_rotational:
return True
return False
@property
@sushy_utils.cache_it
def has_nvme_ssd(self):
"""Return True if Storage has SSD drive and protocol is NVMe"""
for member in self.get_members():
if member.has_nvme_ssd:
return True
return False
@property
@sushy_utils.cache_it
def drive_rotational_speed_rpm(self):
"""Gets set of rotational speed of the disks"""
drv_rot_speed_rpm = set()
for member in self.get_members():
drv_rot_speed_rpm.update(member.drive_rotational_speed_rpm)
return drv_rot_speed_rpm
|