f66e519766
Change-Id: Ia5d950985b075e57e21dab34e73a199cd2594264
79 lines
2.7 KiB
Python
79 lines
2.7 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 oslo_config import cfg
|
|
from oslo_log import log as logging
|
|
from oslo_versionedobjects import fields
|
|
|
|
from smaug import db
|
|
from smaug import exception
|
|
from smaug.i18n import _
|
|
from smaug.objects import base
|
|
|
|
CONF = cfg.CONF
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
@base.SmaugObjectRegistry.register
|
|
class ScheduledOperationState(base.SmaugPersistentObject, base.SmaugObject,
|
|
base.SmaugObjectDictCompat,
|
|
base.SmaugComparableObject):
|
|
# Version 1.0: Initial version
|
|
VERSION = '1.0'
|
|
|
|
fields = {
|
|
'id': fields.IntegerField(),
|
|
'operation_id': fields.UUIDField(),
|
|
'service_id': fields.IntegerField(),
|
|
'state': fields.StringField(),
|
|
}
|
|
|
|
@staticmethod
|
|
def _from_db_object(context, state, db_state):
|
|
for name, field in state.fields.items():
|
|
state[name] = db_state.get(name)
|
|
|
|
state._context = context
|
|
state.obj_reset_changes()
|
|
return state
|
|
|
|
@base.remotable_classmethod
|
|
def get_by_operation_id(cls, context, operation_id):
|
|
db_state = db.scheduled_operation_state_get(context, operation_id)
|
|
if db_state:
|
|
return cls._from_db_object(context, cls(), db_state)
|
|
|
|
@base.remotable
|
|
def create(self):
|
|
if self.obj_attr_is_set('id'):
|
|
raise exception.ObjectActionError(action='create',
|
|
reason=_('already created'))
|
|
|
|
updates = self.smaug_obj_get_changes()
|
|
db_state = db.scheduled_operation_state_create(self._context, updates)
|
|
self._from_db_object(self._context, self, db_state)
|
|
|
|
@base.remotable
|
|
def save(self):
|
|
updates = self.smaug_obj_get_changes()
|
|
if updates and self.operation_id:
|
|
db.scheduled_operation_state_update(self._context,
|
|
self.operation_id,
|
|
updates)
|
|
self.obj_reset_changes()
|
|
|
|
@base.remotable
|
|
def destroy(self):
|
|
if self.operation_id:
|
|
db.scheduled_operation_state_delete(self._context,
|
|
self.operation_id)
|