dea0897f45
Implementation of oslo.versionedobjects. This commit consists basic mechanism and first objects. This should be base of implementation versoning to other objects Implements: blueprint versioned-objects Co-Authored-By: ShaoHe Feng <shaohe.feng@intel.com> Co-Authored-By: Grzegorz Grasza <grzegorz.grasza@intel.com> Change-Id: I554162cf3681fe559c75f54c61c6f32c91f5c2f8
61 lines
1.8 KiB
Python
61 lines
1.8 KiB
Python
# Copyright 2014 Intel Corp.
|
|
#
|
|
# 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.
|
|
|
|
|
|
"""
|
|
RawTemplate object
|
|
"""
|
|
|
|
from oslo_versionedobjects import base
|
|
from oslo_versionedobjects import fields
|
|
|
|
from heat.db import api as db_api
|
|
from heat.objects import fields as heat_fields
|
|
|
|
|
|
class RawTemplate(
|
|
base.VersionedObject,
|
|
base.VersionedObjectDictCompat,
|
|
base.ComparableVersionedObject,
|
|
):
|
|
fields = {
|
|
'id': fields.StringField(),
|
|
'files': heat_fields.JsonField(nullable=True),
|
|
'template': heat_fields.JsonField(),
|
|
'environment': heat_fields.JsonField(),
|
|
'predecessor': fields.IntegerField(),
|
|
}
|
|
|
|
@staticmethod
|
|
def _from_db_object(context, tpl, db_tpl):
|
|
for field in tpl.fields:
|
|
tpl[field] = db_tpl[field]
|
|
tpl._context = context
|
|
tpl.obj_reset_changes()
|
|
return tpl
|
|
|
|
@classmethod
|
|
def get_by_id(cls, context, template_id):
|
|
raw_template_db = db_api.raw_template_get(context, template_id)
|
|
raw_template = cls._from_db_object(context, cls(), raw_template_db)
|
|
return raw_template
|
|
|
|
@classmethod
|
|
def create(cls, context, values):
|
|
return db_api.raw_template_create(context, values)
|
|
|
|
@classmethod
|
|
def update_by_id(cls, context, template_id, values):
|
|
return db_api.raw_template_update(context, template_id, values)
|