/
niceSOFT
/
zchunk
Обзор
Документация
Войти
/
niceSOFT
/
zchunk
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/lib/error.c
108 строк
3 KB
Jonathan Dieter
Stop storing last error when missing zchunk context
18 июл 2024, 04:44
18 июл 2024, 04:44
a93b6cb
Код
Авторство
О чём код?
/* * Copyright 2018 Jonathan Dieter <jdieter@gmail.com> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include <stdio.h> #include <assert.h> #include <string.h> #include <stdarg.h> #include <stdbool.h> #include <zck.h> #include "zck_private.h" static const char *empty_error = ""; void set_error_wf(zckCtx *zck, int fatal, const char *function, const char *format, ...) { va_list args; int size = 0; char *old_msg = NULL; int old_size = 0; assert(format != NULL); va_start(args, format); size = vsnprintf(NULL, 0, format, args); va_end(args); va_start(args, format); zck_log_v(function, ZCK_LOG_ERROR, format, args); va_end(args); if(zck == NULL) return; zck->error_state = 1 + (fatal > 0 ? 1 : 0); if(size < 0) return; if(zck->msg != NULL) { old_size = strlen(zck->msg); old_msg = zck->msg; } if(old_msg) zck->msg = zmalloc(size + old_size + 3); else zck->msg = zmalloc(size + 2); if (!zck->msg) { zck_log(ZCK_LOG_ERROR, "OOM in %s", __func__); return; } va_start(args, format); vsnprintf(zck->msg, size + 1, format, args); va_end(args); if(old_msg) { snprintf(zck->msg + size, old_size + 3, ": %s", old_msg); free(old_msg); } else { snprintf(zck->msg + size, 2, "\n"); } } int ZCK_PUBLIC_API zck_is_error(zckCtx *zck) { if(zck == NULL) return 0; return zck->error_state; } const char ZCK_PUBLIC_API *zck_get_error(zckCtx *zck) { if(zck == NULL || zck->msg == NULL) return empty_error; return zck->msg; } bool ZCK_PUBLIC_API zck_clear_error(zckCtx *zck) { if(zck != NULL && zck->error_state > 1) return false; if(zck == NULL) return true; free(zck->msg); zck->msg = NULL; zck->error_state = 0; return true; }