
This patch adds VersionedObjects abstraction layer to CGSnapshots. Co-Authored-By: Szymon Wroblewski <szymon.wroblewski@intel.com> Co-Authored-By: Michal Dulko <michal.dulko@intel.com> Partial-Implements: blueprint cinder-objects Change-Id: Ie4cdd1ffae15a93bff756ad278ca680f9f420748
70 lines
2.3 KiB
Python
70 lines
2.3 KiB
Python
# Copyright (C) 2012 - 2014 EMC Corporation.
|
|
# All Rights Reserved.
|
|
#
|
|
# 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 oslo_log import log as logging
|
|
|
|
from cinder.api import common
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class ViewBuilder(common.ViewBuilder):
|
|
"""Model cgsnapshot API responses as a python dictionary."""
|
|
|
|
_collection_name = "cgsnapshots"
|
|
|
|
def __init__(self):
|
|
"""Initialize view builder."""
|
|
super(ViewBuilder, self).__init__()
|
|
|
|
def summary_list(self, request, cgsnapshots):
|
|
"""Show a list of cgsnapshots without many details."""
|
|
return self._list_view(self.summary, request, cgsnapshots)
|
|
|
|
def detail_list(self, request, cgsnapshots):
|
|
"""Detailed view of a list of cgsnapshots ."""
|
|
return self._list_view(self.detail, request, cgsnapshots)
|
|
|
|
def summary(self, request, cgsnapshot):
|
|
"""Generic, non-detailed view of a cgsnapshot."""
|
|
return {
|
|
'cgsnapshot': {
|
|
'id': cgsnapshot.id,
|
|
'name': cgsnapshot.name
|
|
}
|
|
}
|
|
|
|
def detail(self, request, cgsnapshot):
|
|
"""Detailed view of a single cgsnapshot."""
|
|
return {
|
|
'cgsnapshot': {
|
|
'id': cgsnapshot.id,
|
|
'consistencygroup_id': cgsnapshot.consistencygroup_id,
|
|
'status': cgsnapshot.status,
|
|
'created_at': cgsnapshot.created_at,
|
|
'name': cgsnapshot.name,
|
|
'description': cgsnapshot.description
|
|
}
|
|
}
|
|
|
|
def _list_view(self, func, request, cgsnapshots):
|
|
"""Provide a view for a list of cgsnapshots."""
|
|
cgsnapshots_list = [func(request, cgsnapshot)['cgsnapshot']
|
|
for cgsnapshot in cgsnapshots]
|
|
cgsnapshots_dict = dict(cgsnapshots=cgsnapshots_list)
|
|
|
|
return cgsnapshots_dict
|