cinder/cinder/api/views/consistencygroups.py
xing-yang 44ebdd2252 CG API changes for migrating CGs
CG APIs work as follows:
 * Create CG - Create only in groups table
 * Modify CG - Modify in CG table if CG in CG table, otherwise modify
               in groups table.
 * Delete CG - Delete from CG or groups table depending on where it is
 * List CG - Check both CG and groups tables
 * List CG snapshots - Check both CG and groups tables
 * Show CG - Check both tables
 * Show CG snapshot - Check both tables
 * Create CG snapshot - Create either in CG or groups table depending on
                        the CG.
 * Create CG from source - Create in either CG or groups table
                           depending on the source.
 * Create volume - Add volume either to CG or group

Additional notes:
 * default_cgsnapshot_type is reserved for migrating CGs.
 * Group APIs will only write/read in/from the groups table.
 * Group APIs won't work on groups with default_cgsnapshot_type.
 * Groups with default_cgsnapshot_type can only be operated by CG APIs.
 * After CG tables are removed, we'll allow default_cgsnapshot_type
   to be used by group APIs.

Partial-Implements: blueprint generic-volume-group
Change-Id: Idd88a5c9587023a56231de42ce59d672e9600770
2016-11-22 19:08:20 -05:00

83 lines
3.2 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 cinder.api import common
class ViewBuilder(common.ViewBuilder):
"""Model consistencygroup API responses as a python dictionary."""
_collection_name = "consistencygroups"
def __init__(self):
"""Initialize view builder."""
super(ViewBuilder, self).__init__()
def summary_list(self, request, consistencygroups):
"""Show a list of consistency groups without many details."""
return self._list_view(self.summary, request, consistencygroups)
def detail_list(self, request, consistencygroups):
"""Detailed view of a list of consistency groups ."""
return self._list_view(self.detail, request, consistencygroups)
def summary(self, request, consistencygroup):
"""Generic, non-detailed view of a consistency group."""
return {
'consistencygroup': {
'id': consistencygroup.id,
'name': consistencygroup.name
}
}
def detail(self, request, consistencygroup):
"""Detailed view of a single consistency group."""
try:
volume_types = (consistencygroup.volume_type_id.split(",")
if consistencygroup.volume_type_id else [])
volume_types = [type_id for type_id in volume_types if type_id]
except AttributeError:
try:
volume_types = [v_type.id for v_type in
consistencygroup.volume_types]
except AttributeError:
volume_types = []
return {
'consistencygroup': {
'id': consistencygroup.id,
'status': consistencygroup.status,
'availability_zone': consistencygroup.availability_zone,
'created_at': consistencygroup.created_at,
'name': consistencygroup.name,
'description': consistencygroup.description,
'volume_types': volume_types,
}
}
def _list_view(self, func, request, consistencygroups):
"""Provide a view for a list of consistency groups."""
consistencygroups_list = [
func(request, consistencygroup)['consistencygroup']
for consistencygroup in consistencygroups]
cg_links = self._get_collection_links(request,
consistencygroups,
self._collection_name)
consistencygroups_dict = dict(consistencygroups=consistencygroups_list)
if cg_links:
consistencygroups_dict['consistencygroup_links'] = cg_links
return consistencygroups_dict