aboutsummaryrefslogtreecommitdiffstats
path: root/src/libgamma_error.py
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-09-02 07:15:33 +0200
committerMattias Andrée <maandree@operamail.com>2014-09-02 07:15:33 +0200
commitdc23100deca3d750aa56b7f246da307f2feb9310 (patch)
treebb6cf8387c534d2f903a016939279bbdae7e3667 /src/libgamma_error.py
parentm (diff)
downloadpylibgamma-dc23100deca3d750aa56b7f246da307f2feb9310.tar.gz
pylibgamma-dc23100deca3d750aa56b7f246da307f2feb9310.tar.bz2
pylibgamma-dc23100deca3d750aa56b7f246da307f2feb9310.tar.xz
misc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/libgamma_error.py')
-rw-r--r--src/libgamma_error.py73
1 files changed, 67 insertions, 6 deletions
diff --git a/src/libgamma_error.py b/src/libgamma_error.py
index 7b16886..865d666 100644
--- a/src/libgamma_error.py
+++ b/src/libgamma_error.py
@@ -134,16 +134,16 @@ def value_of_error(name : str) -> int:
-LIBGAMMA_NO_SUCH_ADJUSTMENT_METHOD = -1
+LIBGAMMA_ERRNO_SET = -1
'''
-The selected adjustment method does not exist
-or has been excluded at compile-time.
+`errno` has be set with a standard error number
+to indicate the what has gone wrong.
'''
-LIBGAMMA_ERRNO_SET = -2
+LIBGAMMA_NO_SUCH_ADJUSTMENT_METHOD = -2
'''
-`errno` has be set with a standard error number
-to indicate the what has gone wrong.
+The selected adjustment method does not exist
+or has been excluded at compile-time.
'''
LIBGAMMA_NO_SUCH_SITE = -3
@@ -419,3 +419,64 @@ number your program thinks it should be sould
update your program for new errors.
'''
+
+
+class LibgammaError(Exception):
+ '''
+ libgamma error class.
+
+ @variable errno The error code.
+ @variable strerror The name of the error.
+ '''
+
+ def __init__(self, errno : int, strerror : str):
+ '''
+ Constructor.
+
+ @param errno The error code.
+ @param strerror The name of the error.
+ '''
+ self.errno = errno
+ self.strerror = strerror
+
+ def __str__(self) -> str:
+ '''
+ Return the name of the error.
+
+ @return The name of the error.
+ '''
+ return self.strerror
+
+
+ def __repr__(self) -> str:
+ '''
+ Create a string representation of the error.
+
+ @return A string representation of the error.
+ '''
+ return 'LibgammaError(%i, %s)' % (self.errno, repr(self.strerror))
+
+
+
+def create_error(error_code : int) -> Exception:
+ '''
+ Create an exception from an error code.
+
+ @param error_code The error code.
+ @return :OSError|LibgammaError The error as a throwable object.
+ '''
+ if error_code == LIBGAMMA_ERRNO_SET:
+ import ctypes
+ error_code = ctypes.get_errno()
+
+ if error_code >= 0:
+ import c
+ e = OSError()
+ e.errno = error_code
+ e.strerror = c.strerror(e.errno)
+ else:
+ strerror = name_of_error(error_code)
+ e = LibgammaError(error_code, strerror)
+
+ return e
+