100b9dc62c
Merge these, removing an unnecessary layer of abstraction, and place them in the new 'nova.db.main' directory. The resulting change is huge, but it's mainly the result of 's/sqlalchemy import api/main import api/' and 's/nova.db.api/nova.db.main.api/' with some necessary cleanup. We also need to rework how we do the blocking of API calls since we no longer have a 'DBAPI' object that we can monkey patch as we were doing before. This is now done via a global variable that is set by the 'main' function of 'nova.cmd.compute'. The main impact of this change is that it's no longer possible to set '[database] use_db_reconnect' and have all APIs automatically wrapped in a DB retry. Seeing as this behavior is experimental, isn't applied to any of the API DB methods (which don't use oslo.db's 'DBAPI' helper), and is used explicitly in what would appear to be the critical cases (via the explicit 'oslo_db.api.wrap_db_retry' decorator), this doesn't seem like a huge loss. Change-Id: Iad2e4da4546b80a016e477577d23accb2606a6e4 Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
109 lines
4.1 KiB
Python
109 lines
4.1 KiB
Python
# Copyright 2013 IBM 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.
|
|
|
|
import itertools
|
|
|
|
from oslo_log import log as logging
|
|
|
|
from nova.db.main import api as db
|
|
from nova import exception
|
|
from nova import objects
|
|
from nova.objects import base
|
|
from nova.objects import fields
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
# TODO(berrange): Remove NovaObjectDictCompat
|
|
@base.NovaObjectRegistry.register
|
|
class InstanceFault(base.NovaPersistentObject, base.NovaObject,
|
|
base.NovaObjectDictCompat):
|
|
# Version 1.0: Initial version
|
|
# Version 1.1: String attributes updated to support unicode
|
|
# Version 1.2: Added create()
|
|
VERSION = '1.2'
|
|
|
|
fields = {
|
|
'id': fields.IntegerField(),
|
|
'instance_uuid': fields.UUIDField(),
|
|
'code': fields.IntegerField(),
|
|
'message': fields.StringField(nullable=True),
|
|
'details': fields.StringField(nullable=True),
|
|
'host': fields.StringField(nullable=True),
|
|
}
|
|
|
|
@staticmethod
|
|
def _from_db_object(context, fault, db_fault):
|
|
# NOTE(danms): These are identical right now
|
|
for key in fault.fields:
|
|
fault[key] = db_fault[key]
|
|
fault._context = context
|
|
fault.obj_reset_changes()
|
|
return fault
|
|
|
|
@base.remotable_classmethod
|
|
def get_latest_for_instance(cls, context, instance_uuid):
|
|
db_faults = db.instance_fault_get_by_instance_uuids(context,
|
|
[instance_uuid])
|
|
if instance_uuid in db_faults and db_faults[instance_uuid]:
|
|
return cls._from_db_object(context, cls(),
|
|
db_faults[instance_uuid][0])
|
|
|
|
@base.remotable
|
|
def create(self):
|
|
if self.obj_attr_is_set('id'):
|
|
raise exception.ObjectActionError(action='create',
|
|
reason='already created')
|
|
values = {
|
|
'instance_uuid': self.instance_uuid,
|
|
'code': self.code,
|
|
'message': self.message,
|
|
'details': self.details,
|
|
'host': self.host,
|
|
}
|
|
db_fault = db.instance_fault_create(self._context, values)
|
|
self._from_db_object(self._context, self, db_fault)
|
|
self.obj_reset_changes()
|
|
|
|
|
|
@base.NovaObjectRegistry.register
|
|
class InstanceFaultList(base.ObjectListBase, base.NovaObject):
|
|
# Version 1.0: Initial version
|
|
# InstanceFault <= version 1.1
|
|
# Version 1.1: InstanceFault version 1.2
|
|
# Version 1.2: Added get_latest_by_instance_uuids() method
|
|
VERSION = '1.2'
|
|
|
|
fields = {
|
|
'objects': fields.ListOfObjectsField('InstanceFault'),
|
|
}
|
|
|
|
@base.remotable_classmethod
|
|
def get_latest_by_instance_uuids(cls, context, instance_uuids):
|
|
db_faultdict = db.instance_fault_get_by_instance_uuids(context,
|
|
instance_uuids,
|
|
latest=True)
|
|
db_faultlist = itertools.chain(*db_faultdict.values())
|
|
return base.obj_make_list(context, cls(context), objects.InstanceFault,
|
|
db_faultlist)
|
|
|
|
@base.remotable_classmethod
|
|
def get_by_instance_uuids(cls, context, instance_uuids):
|
|
db_faultdict = db.instance_fault_get_by_instance_uuids(context,
|
|
instance_uuids)
|
|
db_faultlist = itertools.chain(*db_faultdict.values())
|
|
return base.obj_make_list(context, cls(context), objects.InstanceFault,
|
|
db_faultlist)
|