Files
deb-python-proliantutils/proliantutils/exception.py
Debayan Ray 61aa195a5a Initial redfish commit
This patch is again targeted towards support of consuming
Redfish APIs. This introduces the initial commit for redfish
related files. Till now, the redfish code base is **not** yet
instrumented to be called from ``ilo.client.IloClient`` object.
A separate patch will be submitted to instrument this redfish
code for Gen10. Till that this patch turns out to be a
pre-enablement of redfish on proliantutils.

Change-Id: Ib7f7596053543c3ebfa115ace3b56979ea5d6a36
Partial-Bug: 1646685
2017-04-10 07:18:39 -04:00

220 lines
6.5 KiB
Python

# Copyright 2014 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.
"""Exception Class for proliantutils module."""
class ProliantUtilsException(Exception):
"""Parent class for all Proliantutils exceptions."""
pass
class InvalidInputError(Exception):
message = "Invalid Input: %(reason)s"
# Note(deray): Not mandating the user to provide the ``reason`` attribute
# parameter while raising InvalidInputError exception. This is because of
# backward-compatibility reasons. See its unit test file to know about its
# different ways of usage.
def __init__(self, message=None, **kwargs):
if not message:
message = self.message
if 'reason' not in kwargs:
kwargs['reason'] = 'Unknown'
message = message % kwargs
super(InvalidInputError, self).__init__(message)
class IloError(ProliantUtilsException):
"""Base Exception.
This exception is used when a problem is encountered in
executing an operation on the iLO.
"""
def __init__(self, message, errorcode=None):
super(IloError, self).__init__(message)
class IloClientInternalError(IloError):
"""Internal Error from IloClient.
This exception is raised when iLO client library fails to
communicate properly with the iLO.
"""
def __init__(self, message, errorcode=None):
super(IloClientInternalError, self).__init__(message)
class IloCommandNotSupportedError(IloError):
"""Command not supported on the platform.
This exception is raised when iLO client library fails to
communicate properly with the iLO
"""
def __init__(self, message, errorcode=None):
super(IloCommandNotSupportedError, self).__init__(message)
class IloCommandNotSupportedInBiosError(IloCommandNotSupportedError):
"""Command not supported on the bios boot mode.
This exception is raised when iLO client library fails to
communicate properly with the iLO
"""
def __init__(self, message, errorcode=None):
super(IloCommandNotSupportedInBiosError, self).__init__(message)
class IloLoginFailError(IloError):
"""iLO Login Failed.
This exception is used to communicate a login failure to
the caller.
"""
messages = ['User login name was not found',
'Login failed', 'Login credentials rejected']
statuses = [0x005f, 0x000a]
message = 'Authorization Failed'
def __init__(self, message, errorcode=None):
super(IloLoginFailError, self).__init__(message)
class IloConnectionError(IloError):
"""Cannot connect to iLO.
This exception is used to communicate an HTTP connection
error from the iLO to the caller.
"""
def __init__(self, message):
super(IloConnectionError, self).__init__(message)
# This is not merged with generic InvalidInputError because
# of backward-compatibility reasons. If we changed this,
# use-cases of excepting 'IloError' to catch 'IloInvalidInputError'
# will be broken.
class IloInvalidInputError(IloError):
"""Invalid Input passed.
This exception is used when invalid inputs are passed to
the APIs exposed by this module.
"""
def __init__(self, message):
super(IloInvalidInputError, self).__init__(message)
class HPSSAException(ProliantUtilsException):
message = "An exception occured in ssa module"
def __init__(self, message=None, **kwargs):
if not message:
message = self.message
message = message % kwargs
super(HPSSAException, self).__init__(message)
class PhysicalDisksNotFoundError(HPSSAException):
message = ("Not enough physical disks were found to create logical disk "
"of size %(size_gb)s GB and raid level %(raid_level)s")
class HPSSAOperationError(HPSSAException):
message = ("An error was encountered while doing ssa configuration: "
"%(reason)s.")
class ImageExtractionFailed(ProliantUtilsException):
message = "Failed to extract image %(image_ref)s, reason: %(reason)s"
def __init__(self, message=None, **kwargs):
if not message:
message = self.message % kwargs
super(ImageExtractionFailed, self).__init__(message)
class IloSNMPInvalidInputFailure(IloError):
message = "Failed to do SNMP retreival %(reason)s"
def __init__(self, message=None, **kwargs):
if not message:
message = self.message % kwargs
super(IloSNMPInvalidInputFailure, self).__init__(message)
class IloSNMPExceptionFailure(IloError):
message = "SNMP library failed %(reason)s"
def __init__(self, message=None, **kwargs):
if not message:
message = self.message % kwargs
super(IloSNMPExceptionFailure, self).__init__(message)
class ImageRefValidationFailed(ProliantUtilsException):
message = ("Validation of image href %(image_href)s failed, "
"reason: %(reason)s")
def __init__(self, message=None, **kwargs):
if not message:
message = self.message % kwargs
super(ImageRefValidationFailed, self).__init__(message)
class HpsumOperationError(ProliantUtilsException):
"""Hpsum based firmware update operation error.
This exception is used when a problem is encountered in
executing a hpsum operation.
"""
message = ("An error occurred while performing hpsum based firmware "
"update, reason: %(reason)s")
def __init__(self, message=None, **kwargs):
if not message:
message = self.message % kwargs
super(HpsumOperationError, self).__init__(message)
class RedfishError(ProliantUtilsException):
"""Basic exception for errors raised by Redfish operations."""
message = None
def __init__(self, **kwargs):
if self.message and kwargs:
self.message = self.message % kwargs
super(RedfishError, self).__init__(self.message)
class MissingAttributeError(RedfishError):
message = ('The attribute %(attribute)s is missing from the '
'resource %(resource)s')