325f99a64a
This is the third patch that implements the generic-volume-group bluerpint. It adds database and object changes in order to support group snapshots and create group from source. The API changes will be added in the next patch. This patch depends on the second patch which adds create/delete/update groups support which was already merged: https://review.openstack.org/#/c/322459/ The next patch to add volume manager changes is here: https://review.openstack.org/#/c/361376/ Partial-Implements: blueprint generic-volume-group Change-Id: I2d11efe38af80d2eb025afbbab1ce8e6a269f83f
153 lines
5.8 KiB
Python
153 lines
5.8 KiB
Python
# Copyright 2016 EMC Corporation
|
|
#
|
|
# 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 import db
|
|
from cinder import exception
|
|
from cinder.i18n import _
|
|
from cinder import objects
|
|
from cinder.objects import base
|
|
from oslo_versionedobjects import fields
|
|
|
|
OPTIONAL_FIELDS = ['group', 'snapshots']
|
|
|
|
|
|
@base.CinderObjectRegistry.register
|
|
class GroupSnapshot(base.CinderPersistentObject, base.CinderObject,
|
|
base.CinderObjectDictCompat):
|
|
VERSION = '1.0'
|
|
|
|
fields = {
|
|
'id': fields.UUIDField(),
|
|
'group_id': fields.UUIDField(nullable=False),
|
|
'project_id': fields.StringField(nullable=True),
|
|
'user_id': fields.StringField(nullable=True),
|
|
'name': fields.StringField(nullable=True),
|
|
'description': fields.StringField(nullable=True),
|
|
'status': fields.StringField(nullable=True),
|
|
'group_type_id': fields.UUIDField(nullable=True),
|
|
'group': fields.ObjectField('Group', nullable=True),
|
|
'snapshots': fields.ObjectField('SnapshotList', nullable=True),
|
|
}
|
|
|
|
@staticmethod
|
|
def _from_db_object(context, group_snapshot, db_group_snapshots,
|
|
expected_attrs=None):
|
|
expected_attrs = expected_attrs or []
|
|
for name, field in group_snapshot.fields.items():
|
|
if name in OPTIONAL_FIELDS:
|
|
continue
|
|
value = db_group_snapshots.get(name)
|
|
setattr(group_snapshot, name, value)
|
|
|
|
if 'group' in expected_attrs:
|
|
group = objects.Group(context)
|
|
group._from_db_object(context, group,
|
|
db_group_snapshots['group'])
|
|
group_snapshot.group = group
|
|
|
|
if 'snapshots' in expected_attrs:
|
|
snapshots = base.obj_make_list(
|
|
context, objects.SnapshotsList(context),
|
|
objects.Snapshots,
|
|
db_group_snapshots['snapshots'])
|
|
group_snapshot.snapshots = snapshots
|
|
|
|
group_snapshot._context = context
|
|
group_snapshot.obj_reset_changes()
|
|
return group_snapshot
|
|
|
|
def create(self):
|
|
if self.obj_attr_is_set('id'):
|
|
raise exception.ObjectActionError(action='create',
|
|
reason=_('already_created'))
|
|
updates = self.cinder_obj_get_changes()
|
|
|
|
if 'group' in updates:
|
|
raise exception.ObjectActionError(
|
|
action='create', reason=_('group assigned'))
|
|
|
|
db_group_snapshots = db.group_snapshot_create(self._context, updates)
|
|
self._from_db_object(self._context, self, db_group_snapshots)
|
|
|
|
def obj_load_attr(self, attrname):
|
|
if attrname not in OPTIONAL_FIELDS:
|
|
raise exception.ObjectActionError(
|
|
action='obj_load_attr',
|
|
reason=_('attribute %s not lazy-loadable') % attrname)
|
|
if not self._context:
|
|
raise exception.OrphanedObjectError(method='obj_load_attr',
|
|
objtype=self.obj_name())
|
|
|
|
if attrname == 'group':
|
|
self.group = objects.Group.get_by_id(
|
|
self._context, self.group_id)
|
|
|
|
if attrname == 'snapshots':
|
|
self.snapshots = objects.SnapshotList.get_all_for_group_snapshot(
|
|
self._context, self.id)
|
|
|
|
self.obj_reset_changes(fields=[attrname])
|
|
|
|
def save(self):
|
|
updates = self.cinder_obj_get_changes()
|
|
if updates:
|
|
if 'group' in updates:
|
|
raise exception.ObjectActionError(
|
|
action='save', reason=_('group changed'))
|
|
if 'snapshots' in updates:
|
|
raise exception.ObjectActionError(
|
|
action='save', reason=_('snapshots changed'))
|
|
db.group_snapshot_update(self._context, self.id, updates)
|
|
self.obj_reset_changes()
|
|
|
|
def destroy(self):
|
|
with self.obj_as_admin():
|
|
updated_values = db.group_snapshot_destroy(self._context, self.id)
|
|
self.update(updated_values)
|
|
self.obj_reset_changes(updated_values.keys())
|
|
|
|
|
|
@base.CinderObjectRegistry.register
|
|
class GroupSnapshotList(base.ObjectListBase, base.CinderObject):
|
|
VERSION = '1.0'
|
|
|
|
fields = {
|
|
'objects': fields.ListOfObjectsField('GroupSnapshot')
|
|
}
|
|
child_version = {
|
|
'1.0': '1.0'
|
|
}
|
|
|
|
@classmethod
|
|
def get_all(cls, context, filters=None):
|
|
group_snapshots = db.group_snapshot_get_all(context, filters)
|
|
return base.obj_make_list(context, cls(context), objects.GroupSnapshot,
|
|
group_snapshots)
|
|
|
|
@classmethod
|
|
def get_all_by_project(cls, context, project_id, filters=None):
|
|
group_snapshots = db.group_snapshot_get_all_by_project(context,
|
|
project_id,
|
|
filters)
|
|
return base.obj_make_list(context, cls(context), objects.GroupSnapshot,
|
|
group_snapshots)
|
|
|
|
@classmethod
|
|
def get_all_by_group(cls, context, group_id, filters=None):
|
|
group_snapshots = db.group_snapshot_get_all_by_group(context, group_id,
|
|
filters)
|
|
return base.obj_make_list(context, cls(context),
|
|
objects.GroupSnapshot,
|
|
group_snapshots)
|