
Fix all existing pep8 errors. Remove install_venv and friends, which were not needed. Add a few ignores for nova code that is yet to be cleaned up. Skip one failing test case, fixed by review 29394. Import contrib/redhat-eventlet.patch from Nova. Change-Id: I46b6ccaa272bd058757064672ce9221263ed7087
154 lines
3.9 KiB
Python
154 lines
3.9 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
# -*- encoding: utf-8 -*-
|
|
#
|
|
# Copyright 2013 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# 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.
|
|
"""
|
|
Base classes for storage engines
|
|
"""
|
|
|
|
import abc
|
|
|
|
from ironic.openstack.common.db import api as db_api
|
|
|
|
_BACKEND_MAPPING = {'sqlalchemy': 'ironic.db.sqlalchemy.api'}
|
|
|
|
|
|
def get_instance():
|
|
"""Return a DB API instance."""
|
|
IMPL = db_api.DBAPI(backend_mapping=_BACKEND_MAPPING)
|
|
return IMPL
|
|
|
|
|
|
class Connection(object):
|
|
"""Base class for storage system connections."""
|
|
|
|
__metaclass__ = abc.ABCMeta
|
|
|
|
@abc.abstractmethod
|
|
def __init__(self):
|
|
"""Constructor."""
|
|
|
|
@abc.abstractmethod
|
|
def get_nodes(self, columns):
|
|
"""Return a list of dicts of all nodes.
|
|
|
|
:param columns: List of columns to return.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def get_associated_nodes(self):
|
|
"""Return a list of ids of all associated nodes."""
|
|
|
|
@abc.abstractmethod
|
|
def get_unassociated_nodes(self):
|
|
"""Return a list of ids of all unassociated nodes."""
|
|
|
|
@abc.abstractmethod
|
|
def reserve_node(self, node, values):
|
|
"""Associate a node with an instance.
|
|
|
|
:param node: The id or uuid of a node.
|
|
:param values: Values to set while reserving the node.
|
|
Must include 'instance_uuid'.
|
|
:return: The reserved Node.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def create_node(self, values):
|
|
"""Create a new node.
|
|
|
|
:param values: Values to instantiate the node with.
|
|
:returns: Node.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def get_node(self, node):
|
|
"""Return a node.
|
|
|
|
:param node: The id or uuid of a node.
|
|
:return Node:
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def get_node_by_instance(self, instance):
|
|
"""Return a node.
|
|
|
|
:param instance: The instance name or uuid to search for.
|
|
:returns: Node.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def destroy_node(self, node):
|
|
"""Destroy a node and all associated interfaces.
|
|
|
|
:param node: The id or uuid of a node.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def update_node(self, node, values):
|
|
"""Update properties of a node.
|
|
|
|
:param node: The id or uuid of a node.
|
|
:param values: Dict of values to update.
|
|
:returns: Node.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def get_iface(self, iface):
|
|
"""Return an interface.
|
|
|
|
:param iface: The id or MAC of an interface.
|
|
:returns: Iface.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def get_iface_by_vif(self, vif):
|
|
"""Return the interface corresponding to this VIF.
|
|
|
|
:param vif: The uuid of the VIF.
|
|
:returns: Iface.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def get_iface_by_node(self, node):
|
|
"""List all the interfaces for a given node.
|
|
|
|
:param node: The id or uuid of a node.
|
|
:returns: list of Iface.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def create_iface(self, values):
|
|
"""Create a new iface.
|
|
|
|
:param values: Dict of values.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def update_iface(self, iface, values):
|
|
"""Update properties of an iface.
|
|
|
|
:param iface: The id or MAC of an interface.
|
|
:param values: Dict of values to update.
|
|
:returns: Iface.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def destroy_iface(self, iface):
|
|
"""Destroy an iface.
|
|
|
|
:param iface: The id or MAC of an interface.
|
|
"""
|