| /* |
| * Copyright (C) Tildeslash Ltd. All rights reserved. |
| * |
| * This program is free software: you can redistribute it and/or modify |
| * it under the terms of the GNU Affero General Public License version 3. |
| * |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU Affero General Public License for more details. |
| * |
| * You should have received a copy of the GNU Affero General Public License |
| * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| * |
| * In addition, as a special exception, the copyright holders give |
| * permission to link the code of portions of this program with the |
| * OpenSSL library under certain conditions as described in each |
| * individual source file, and distribute linked combinations |
| * including the two. |
| * |
| * You must obey the GNU Affero General Public License in all respects |
| * for all of the code used other than OpenSSL. |
| */ |
| |
| |
| #include "Config.h" |
| |
| #include <stdio.h> |
| #include <errno.h> |
| #include <string.h> |
| #include <stdlib.h> |
| |
| #include "Str.h" |
| #include "system/System.h" |
| |
| |
| /** |
| * Implementation of the System Facade for Unix Systems. |
| * |
| * @see http://www.mmonit.com/ |
| * @file |
| */ |
| |
| |
| /* ----------------------------------------------------------- Definitions */ |
| |
| |
| extern void(*_AbortHandler)(const char *error, va_list ap); |
| extern void(*_ErrorHandler)(const char *error, va_list ap); |
| |
| |
| /* ---------------------------------------------------------------- Public */ |
| |
| |
| const char *System_getLastError(void) { |
| return strerror(errno); |
| } |
| |
| |
| const char *System_getError(int error) { |
| return strerror(error); |
| } |
| |
| |
| void System_abort(const char *e, ...) { |
| va_list ap; |
| va_start(ap, e); |
| if (_AbortHandler) |
| _AbortHandler(e, ap); |
| else { |
| vfprintf(stderr, e, ap); |
| abort(); |
| } |
| va_end(ap); |
| } |
| |
| |
| void System_error(const char *e, ...) { |
| va_list ap; |
| va_start(ap, e); |
| if (_ErrorHandler) |
| _ErrorHandler(e, ap); |
| else |
| vfprintf(stderr, e, ap); |
| va_end(ap); |
| } |