diff options
author | midipix <writeonce@midipix.org> | 2016-10-26 20:54:25 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-10-26 22:10:25 -0400 |
commit | bbcd7d3ba187f5b2f4ecec766436d36514a34ce4 (patch) | |
tree | 1322cc3b877aac9d4fc2c2a479ec3dd4265af4e2 /src | |
parent | 2c7a1617079024d4844a8872c845c9b109a76025 (diff) | |
download | apimagic-bbcd7d3ba187f5b2f4ecec766436d36514a34ce4.tar.bz2 apimagic-bbcd7d3ba187f5b2f4ecec766436d36514a34ce4.tar.xz |
internals: error trace implementation: added amgc_record_error().
Diffstat (limited to 'src')
-rw-r--r-- | src/internal/apimagic_errinfo_impl.c | 39 | ||||
-rw-r--r-- | src/internal/apimagic_errinfo_impl.h | 74 |
2 files changed, 113 insertions, 0 deletions
diff --git a/src/internal/apimagic_errinfo_impl.c b/src/internal/apimagic_errinfo_impl.c new file mode 100644 index 0000000..589a140 --- /dev/null +++ b/src/internal/apimagic_errinfo_impl.c @@ -0,0 +1,39 @@ +#include <apimagic/apimagic.h> +#include "apimagic_driver_impl.h" +#include "apimagic_errinfo_impl.h" + +int amgc_record_error( + const struct amgc_driver_ctx * dctx, + int esyscode, + int elibcode, + const char * efunction, + int eline, + unsigned eflags, + void * eany) +{ + struct amgc_driver_ctx_impl * ictx; + struct amgc_error_info * erri; + + ictx = amgc_get_driver_ictx(dctx); + + if (ictx->errinfp == ictx->erricap) + return -1; + + *ictx->errinfp = &ictx->erribuf[ictx->errinfp - ictx->erriptr]; + erri = *ictx->errinfp; + + erri->euctx = ictx->euctx; + erri->eunit = ictx->eunit; + + erri->edctx = dctx; + erri->esyscode = esyscode; + erri->elibcode = elibcode; + erri->efunction = efunction; + erri->eline = eline; + erri->eflags = eflags; + erri->eany = eany; + + ictx->errinfp++; + + return -1; +} diff --git a/src/internal/apimagic_errinfo_impl.h b/src/internal/apimagic_errinfo_impl.h new file mode 100644 index 0000000..91dbc7b --- /dev/null +++ b/src/internal/apimagic_errinfo_impl.h @@ -0,0 +1,74 @@ +#include <errno.h> +#include <apimagic/apimagic.h> + +int amgc_record_error( + const struct amgc_driver_ctx *, + int esyscode, + int elibcode, + const char * efunction, + int eline, + unsigned eflags, + void * ectx); + +#define AMGC_SYSTEM_ERROR(dctx) \ + amgc_record_error( \ + dctx, \ + errno, \ + 0, \ + __func__, \ + __LINE__, \ + AMGC_ERROR_TOP_LEVEL, \ + 0) + +#define AMGC_BUFFER_ERROR(dctx) \ + amgc_record_error( \ + dctx, \ + ENOBUFS, \ + 0, \ + __func__, \ + __LINE__, \ + AMGC_ERROR_TOP_LEVEL, \ + 0) + +#define AMGC_SPAWN_ERROR(dctx) \ + amgc_record_error( \ + dctx, \ + errno, \ + 0, \ + __func__, \ + __LINE__, \ + AMGC_ERROR_TOP_LEVEL \ + | (errno ? 0 \ + : AMGC_ERROR_CHILD), \ + 0) + +#define AMGC_FILE_ERROR(dctx) \ + amgc_record_error( \ + dctx, \ + EIO, \ + 0, \ + __func__, \ + __LINE__, \ + AMGC_ERROR_TOP_LEVEL, \ + 0) + +#define AMGC_CUSTOM_ERROR(dctx,elibcode) \ + amgc_record_error( \ + dctx, \ + 0, \ + elibcode, \ + __func__, \ + __LINE__, \ + AMGC_ERROR_TOP_LEVEL \ + | AMGC_ERROR_CUSTOM, \ + 0) + +#define AMGC_NESTED_ERROR(dctx) \ + amgc_record_error( \ + dctx, \ + 0, \ + 0, \ + __func__, \ + __LINE__, \ + AMGC_ERROR_NESTED, \ + 0) |