From d413d68bcd714151b5bd064896e4ea61707b9833 Mon Sep 17 00:00:00 2001 From: midipix Date: Tue, 25 Oct 2016 22:43:49 -0400 Subject: internals: error trace implementation: added sfrt_record_error(). --- src/internal/sofort_errinfo_impl.c | 39 ++++++++++++++++++++ src/internal/sofort_errinfo_impl.h | 74 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 113 insertions(+) create mode 100644 src/internal/sofort_errinfo_impl.c create mode 100644 src/internal/sofort_errinfo_impl.h (limited to 'src') diff --git a/src/internal/sofort_errinfo_impl.c b/src/internal/sofort_errinfo_impl.c new file mode 100644 index 0000000..31b008a --- /dev/null +++ b/src/internal/sofort_errinfo_impl.c @@ -0,0 +1,39 @@ +#include +#include "sofort_driver_impl.h" +#include "sofort_errinfo_impl.h" + +int sfrt_record_error( + const struct sfrt_driver_ctx * dctx, + int esyscode, + int elibcode, + const char * efunction, + int eline, + unsigned eflags, + void * eany) +{ + struct sfrt_driver_ctx_impl * ictx; + struct sfrt_error_info * erri; + + ictx = sfrt_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/sofort_errinfo_impl.h b/src/internal/sofort_errinfo_impl.h new file mode 100644 index 0000000..8d42fc3 --- /dev/null +++ b/src/internal/sofort_errinfo_impl.h @@ -0,0 +1,74 @@ +#include +#include + +int sfrt_record_error( + const struct sfrt_driver_ctx *, + int esyscode, + int elibcode, + const char * efunction, + int eline, + unsigned eflags, + void * ectx); + +#define SFRT_SYSTEM_ERROR(dctx) \ + sfrt_record_error( \ + dctx, \ + errno, \ + 0, \ + __func__, \ + __LINE__, \ + SFRT_ERROR_TOP_LEVEL, \ + 0) + +#define SFRT_BUFFER_ERROR(dctx) \ + sfrt_record_error( \ + dctx, \ + ENOBUFS, \ + 0, \ + __func__, \ + __LINE__, \ + SFRT_ERROR_TOP_LEVEL, \ + 0) + +#define SFRT_SPAWN_ERROR(dctx) \ + sfrt_record_error( \ + dctx, \ + errno, \ + 0, \ + __func__, \ + __LINE__, \ + SFRT_ERROR_TOP_LEVEL \ + | (errno ? 0 \ + : SFRT_ERROR_CHILD), \ + 0) + +#define SFRT_FILE_ERROR(dctx) \ + sfrt_record_error( \ + dctx, \ + EIO, \ + 0, \ + __func__, \ + __LINE__, \ + SFRT_ERROR_TOP_LEVEL, \ + 0) + +#define SFRT_CUSTOM_ERROR(dctx,elibcode) \ + sfrt_record_error( \ + dctx, \ + 0, \ + elibcode, \ + __func__, \ + __LINE__, \ + SFRT_ERROR_TOP_LEVEL \ + | SFRT_ERROR_CUSTOM, \ + 0) + +#define SFRT_NESTED_ERROR(dctx) \ + sfrt_record_error( \ + dctx, \ + 0, \ + 0, \ + __func__, \ + __LINE__, \ + SFRT_ERROR_NESTED, \ + 0) -- cgit v1.2.3