cae34cf1a2
This feature adds a new "Volume Types" tab to the Admin-Volumes panel, and places QOS Specs on the panel. Future check-ins will add further QOS Spec functionality, such as adding and deleting, etc. Partially Implements: blueprint cinder-qos-specs Closes-Bug: 1284506 Change-Id: I497f3bd00bb13356f5d0734f465cbf6feb02f781
140 lines
5.3 KiB
Python
140 lines
5.3 KiB
Python
# 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.
|
|
|
|
from django.utils.datastructures import SortedDict
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from horizon import exceptions
|
|
from horizon import tabs
|
|
|
|
from openstack_dashboard import api
|
|
from openstack_dashboard.api import cinder
|
|
from openstack_dashboard.api import keystone
|
|
|
|
from openstack_dashboard.dashboards.admin.volumes.snapshots \
|
|
import tables as snapshots_tables
|
|
from openstack_dashboard.dashboards.admin.volumes.volume_types.qos_specs \
|
|
import tables as qos_tables
|
|
from openstack_dashboard.dashboards.admin.volumes.volume_types \
|
|
import tables as volume_types_tables
|
|
from openstack_dashboard.dashboards.admin.volumes.volumes \
|
|
import tables as volumes_tables
|
|
from openstack_dashboard.dashboards.project.volumes \
|
|
import tabs as volumes_tabs
|
|
|
|
|
|
class VolumeTab(tabs.TableTab, volumes_tabs.VolumeTableMixIn):
|
|
table_classes = (volumes_tables.VolumesTable,)
|
|
name = _("Volumes")
|
|
slug = "volumes_tab"
|
|
template_name = "admin/volumes/volumes/volumes_tables.html"
|
|
preload = False
|
|
|
|
def get_volumes_data(self):
|
|
volumes = self._get_volumes(search_opts={'all_tenants': True})
|
|
instances = self._get_instances(search_opts={'all_tenants': True})
|
|
self._set_attachments_string(volumes, instances)
|
|
|
|
# Gather our tenants to correlate against IDs
|
|
try:
|
|
tenants, has_more = keystone.tenant_list(self.request)
|
|
except Exception:
|
|
tenants = []
|
|
msg = _('Unable to retrieve volume project information.')
|
|
exceptions.handle(self.request, msg)
|
|
|
|
tenant_dict = SortedDict([(t.id, t) for t in tenants])
|
|
for volume in volumes:
|
|
tenant_id = getattr(volume, "os-vol-tenant-attr:tenant_id", None)
|
|
tenant = tenant_dict.get(tenant_id, None)
|
|
volume.tenant_name = getattr(tenant, "name", None)
|
|
|
|
return volumes
|
|
|
|
|
|
class VolumeTypesTab(tabs.TableTab, volumes_tabs.VolumeTableMixIn):
|
|
table_classes = (volume_types_tables.VolumeTypesTable,
|
|
qos_tables.QosSpecsTable)
|
|
name = _("Volume Types")
|
|
slug = "volume_types_tab"
|
|
template_name = "admin/volumes/volume_types/volume_types_tables.html"
|
|
preload = False
|
|
|
|
def get_volume_types_data(self):
|
|
try:
|
|
volume_types = cinder.volume_type_list(self.request)
|
|
except Exception:
|
|
volume_types = []
|
|
exceptions.handle(self.request,
|
|
_("Unable to retrieve volume types"))
|
|
return volume_types
|
|
|
|
def get_qos_specs_data(self):
|
|
try:
|
|
qos_specs = cinder.qos_spec_list(self.request)
|
|
except Exception:
|
|
qos_specs = []
|
|
exceptions.handle(self.request,
|
|
_("Unable to retrieve QOS specs"))
|
|
return qos_specs
|
|
|
|
|
|
class SnapshotTab(tabs.TableTab):
|
|
table_classes = (snapshots_tables.VolumeSnapshotsTable,)
|
|
name = _("Volume Snapshots")
|
|
slug = "snapshots_tab"
|
|
template_name = ("horizon/common/_detail_table.html")
|
|
preload = False
|
|
|
|
def get_volume_snapshots_data(self):
|
|
if api.base.is_service_enabled(self.request, 'volume'):
|
|
try:
|
|
snapshots = cinder.volume_snapshot_list(self.request,
|
|
search_opts={'all_tenants': True})
|
|
volumes = cinder.volume_list(self.request,
|
|
search_opts={'all_tenants': True})
|
|
volumes = dict((v.id, v) for v in volumes)
|
|
except Exception:
|
|
snapshots = []
|
|
volumes = {}
|
|
exceptions.handle(self.request, _("Unable to retrieve "
|
|
"volume snapshots."))
|
|
|
|
# Gather our tenants to correlate against volume IDs
|
|
try:
|
|
tenants, has_more = keystone.tenant_list(self.request)
|
|
except Exception:
|
|
tenants = []
|
|
msg = _('Unable to retrieve volume project information.')
|
|
exceptions.handle(self.request, msg)
|
|
|
|
tenant_dict = dict([(t.id, t) for t in tenants])
|
|
for snapshot in snapshots:
|
|
volume = volumes.get(snapshot.volume_id)
|
|
tenant_id = getattr(volume,
|
|
'os-vol-tenant-attr:tenant_id', None)
|
|
tenant = tenant_dict.get(tenant_id, None)
|
|
snapshot._volume = volume
|
|
snapshot.tenant_name = getattr(tenant, "name", None)
|
|
snapshot.host_name = getattr(
|
|
volume, 'os-vol-host-attr:host', None)
|
|
|
|
else:
|
|
snapshots = []
|
|
return sorted(snapshots, key=lambda snapshot: snapshot.tenant_name)
|
|
|
|
|
|
class VolumesGroupTabs(tabs.TabGroup):
|
|
slug = "volumes_group_tabs"
|
|
tabs = (VolumeTab, VolumeTypesTab, SnapshotTab)
|
|
sticky = True
|