mirror of
https://opendev.org/openstack/ironic.git
synced 2026-01-16 23:01:47 +00:00
Adds the capability to utilize the indirection API model. The vast majority of this change is the removal of legacy comments and the swap of decorators on object methods to allow the Versioned Objects Indirection API to route the calls upon objects through the RPC layer to the conductor. In order to make these calls occur, we need to also send along a context, which is required to call the RPC layer, which is fine. Original tests still work in that API surface calls still ultimately trigger DB API calls in the backend, thus test changes are actually minimal, similar to very slight changes in trait retrieval as well. In that we really can't nest objects across the indirection layer. Change-Id: Ia161fef67b8a116fdf7cad9b2e559ba75263e196 Signed-off-by: Julia Kreger <juliaashleykreger@gmail.com>
257 lines
11 KiB
Python
257 lines
11 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_versionedobjects import base as object_base
|
|
|
|
from ironic.db import api as db_api
|
|
from ironic.objects import base
|
|
from ironic.objects import fields as object_fields
|
|
from ironic.objects import notification
|
|
|
|
|
|
@base.IronicObjectRegistry.register
|
|
class Runbook(base.IronicObject, object_base.VersionedObjectDictCompat):
|
|
# Version 1.0: Initial version
|
|
# Version 1.1: Relevant methods changed to be remotable methods.
|
|
VERSION = '1.1'
|
|
|
|
dbapi = db_api.get_instance()
|
|
|
|
fields = {
|
|
'id': object_fields.IntegerField(),
|
|
'uuid': object_fields.UUIDField(nullable=False),
|
|
'name': object_fields.StringField(nullable=False),
|
|
'steps': object_fields.ListOfFlexibleDictsField(nullable=False),
|
|
'disable_ramdisk': object_fields.BooleanField(default=False),
|
|
'extra': object_fields.FlexibleDictField(nullable=True),
|
|
'public': object_fields.BooleanField(default=False),
|
|
'owner': object_fields.StringField(nullable=True),
|
|
}
|
|
|
|
@object_base.remotable
|
|
def create(self, context=None):
|
|
"""Create a Runbook record in the DB.
|
|
|
|
:param context: security context. NOTE: This should only
|
|
be used internally by the indirection_api,
|
|
but, RPC requires context as the first
|
|
argument, even though we don't use it.
|
|
A context should be set when instantiating the
|
|
object, e.g.: Runbook(context).
|
|
:raises: RunbookDuplicateName if a runbook with the same
|
|
name exists.
|
|
:raises: RunbookAlreadyExists if a runbook with the same
|
|
UUID exists.
|
|
"""
|
|
values = self.do_version_changes_for_db()
|
|
db_template = self.dbapi.create_runbook(values)
|
|
self._from_db_object(self._context, self, db_template)
|
|
|
|
@object_base.remotable
|
|
def save(self, context=None):
|
|
"""Save updates to this Runbook.
|
|
|
|
Column-wise updates will be made based on the result of
|
|
self.what_changed().
|
|
|
|
:param context: Security context. NOTE: This should only
|
|
be used internally by the indirection_api,
|
|
but, RPC requires context as the first
|
|
argument, even though we don't use it.
|
|
A context should be set when instantiating the
|
|
object, e.g.: Runbook(context)
|
|
:raises: RunbookDuplicateName if a runbook with the same
|
|
name exists.
|
|
:raises: RunbookNotFound if the runbook does not exist.
|
|
"""
|
|
updates = self.do_version_changes_for_db()
|
|
db_template = self.dbapi.update_runbook(self.uuid, updates)
|
|
self._from_db_object(self._context, self, db_template)
|
|
|
|
@object_base.remotable
|
|
def destroy(self):
|
|
"""Delete the Runbook from the DB.
|
|
|
|
:param context: security context. NOTE: This should only
|
|
be used internally by the indirection_api,
|
|
but, RPC requires context as the first
|
|
argument, even though we don't use it.
|
|
A context should be set when instantiating the
|
|
object, e.g.: Runbook(context).
|
|
:raises: RunbookNotFound if the runbook no longer
|
|
appears in the database.
|
|
"""
|
|
self.dbapi.destroy_runbook(self.id)
|
|
self.obj_reset_changes()
|
|
|
|
@object_base.remotable_classmethod
|
|
def get_by_id(cls, context, runbook_id):
|
|
"""Find a runbook based on its integer ID.
|
|
|
|
:param context: security context. NOTE: This should only
|
|
be used internally by the indirection_api,
|
|
but, RPC requires context as the first
|
|
argument, even though we don't use it.
|
|
A context should be set when instantiating the
|
|
object, e.g.: Runbook(context).
|
|
:param runbook_id: The ID of a runbook.
|
|
:raises: RunbookNotFound if the runbook no longer
|
|
appears in the database.
|
|
:returns: a :class:`Runbook` object.
|
|
"""
|
|
db_template = cls.dbapi.get_runbook_by_id(runbook_id)
|
|
template = cls._from_db_object(context, cls(), db_template)
|
|
return template
|
|
|
|
@object_base.remotable_classmethod
|
|
def get_by_uuid(cls, context, uuid):
|
|
"""Find a runbook based on its UUID.
|
|
|
|
:param context: security context. NOTE: This should only
|
|
be used internally by the indirection_api,
|
|
but, RPC requires context as the first
|
|
argument, even though we don't use it.
|
|
A context should be set when instantiating the
|
|
object, e.g.: Runbook(context).
|
|
:param uuid: The UUID of a runbook.
|
|
:raises: RunbookNotFound if the runbook no longer
|
|
appears in the database.
|
|
:returns: a :class:`Runbook` object.
|
|
"""
|
|
db_template = cls.dbapi.get_runbook_by_uuid(uuid)
|
|
template = cls._from_db_object(context, cls(), db_template)
|
|
return template
|
|
|
|
@object_base.remotable_classmethod
|
|
def get_by_name(cls, context, name):
|
|
"""Find a runbook based on its name.
|
|
|
|
:param context: security context. NOTE: This should only
|
|
be used internally by the indirection_api,
|
|
but, RPC requires context as the first
|
|
argument, even though we don't use it.
|
|
A context should be set when instantiating the
|
|
object, e.g.: Runbook(context).
|
|
:param name: The name of a runbook.
|
|
:raises: RunbookNotFound if the runbook no longer
|
|
appears in the database.
|
|
:returns: a :class:`Runbook` object.
|
|
"""
|
|
db_template = cls.dbapi.get_runbook_by_name(name)
|
|
template = cls._from_db_object(context, cls(), db_template)
|
|
return template
|
|
|
|
@object_base.remotable_classmethod
|
|
def list(cls, context, limit=None, marker=None, sort_key=None,
|
|
sort_dir=None, filters=None):
|
|
"""Return a list of Runbook objects.
|
|
|
|
:param context: security context. NOTE: This should only
|
|
be used internally by the indirection_api,
|
|
but, RPC requires context as the first
|
|
argument, even though we don't use it.
|
|
A context should be set when instantiating the
|
|
object, e.g.: Runbook(context).
|
|
:param limit: maximum number of resources to return in a single result.
|
|
:param marker: pagination marker for large data sets.
|
|
:param sort_key: column to sort results by.
|
|
:param sort_dir: direction to sort. "asc" or "desc".
|
|
:param filters: Filters to apply.
|
|
:returns: a list of :class:`Runbook` objects.
|
|
"""
|
|
db_templates = cls.dbapi.get_runbook_list(limit=limit, marker=marker,
|
|
sort_key=sort_key,
|
|
sort_dir=sort_dir,
|
|
filters=filters)
|
|
return cls._from_db_object_list(context, db_templates)
|
|
|
|
@object_base.remotable_classmethod
|
|
def list_by_names(cls, context, names):
|
|
"""Return a list of Runbook objects matching a set of names.
|
|
|
|
:param context: security context. NOTE: This should only
|
|
be used internally by the indirection_api,
|
|
but, RPC requires context as the first
|
|
argument, even though we don't use it.
|
|
A context should be set when instantiating the
|
|
object, e.g.: Runbook(context).
|
|
:param names: a list of names to filter by.
|
|
:returns: a list of :class:`Runbook` objects.
|
|
"""
|
|
db_templates = cls.dbapi.get_runbook_list_by_names(names)
|
|
return cls._from_db_object_list(context, db_templates)
|
|
|
|
@object_base.remotable
|
|
def refresh(self, context=None):
|
|
"""Loads updates for this runbook.
|
|
|
|
Loads a runbook with the same uuid from the database and
|
|
checks for updated attributes. Updates are applied from
|
|
the loaded template column by column, if there are any updates.
|
|
|
|
:param context: Security context. NOTE: This should only
|
|
be used internally by the indirection_api,
|
|
but, RPC requires context as the first
|
|
argument, even though we don't use it.
|
|
A context should be set when instantiating the
|
|
object, e.g.: Port(context)
|
|
:raises: RunbookNotFound if the runbook no longer
|
|
appears in the database.
|
|
"""
|
|
current = self.get_by_uuid(self._context, uuid=self.uuid)
|
|
self.obj_refresh(current)
|
|
self.obj_reset_changes()
|
|
|
|
|
|
@base.IronicObjectRegistry.register
|
|
class RunbookCRUDNotification(notification.NotificationBase):
|
|
"""Notification emitted on runbook API operations."""
|
|
# Version 1.0: Initial version
|
|
VERSION = '1.0'
|
|
|
|
fields = {
|
|
'payload': object_fields.ObjectField('RunbookCRUDPayload')
|
|
}
|
|
|
|
|
|
@base.IronicObjectRegistry.register
|
|
class RunbookCRUDPayload(notification.NotificationPayloadBase):
|
|
# Version 1.0: Initial version
|
|
VERSION = '1.0'
|
|
|
|
SCHEMA = {
|
|
'created_at': ('runbook', 'created_at'),
|
|
'disable_ramdisk': ('runbook', 'disable_ramdisk'),
|
|
'extra': ('runbook', 'extra'),
|
|
'name': ('runbook', 'name'),
|
|
'owner': ('runbook', 'owner'),
|
|
'public': ('runbook', 'public'),
|
|
'steps': ('runbook', 'steps'),
|
|
'updated_at': ('runbook', 'updated_at'),
|
|
'uuid': ('runbook', 'uuid')
|
|
}
|
|
|
|
fields = {
|
|
'created_at': object_fields.DateTimeField(nullable=True),
|
|
'disable_ramdisk': object_fields.BooleanField(default=False),
|
|
'extra': object_fields.FlexibleDictField(nullable=True),
|
|
'name': object_fields.StringField(nullable=False),
|
|
'owner': object_fields.StringField(nullable=True),
|
|
'public': object_fields.BooleanField(default=False),
|
|
'steps': object_fields.ListOfFlexibleDictsField(nullable=False),
|
|
'updated_at': object_fields.DateTimeField(nullable=True),
|
|
'uuid': object_fields.UUIDField()
|
|
}
|
|
|
|
def __init__(self, runbook, **kwargs):
|
|
super(RunbookCRUDPayload, self).__init__(**kwargs)
|
|
self.populate_schema(runbook=runbook)
|