/
niceSOFT
/
createrepo_c
Обзор
Документация
Войти
/
niceSOFT
/
createrepo_c
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/error.c
100 строк
3 KB
Daniel Alley
Remove dependency on libmagic, hardcode magic number detection
25 окт 2023, 09:32
25 окт 2023, 09:32
57b4241
Код
Авторство
О чём код?
/* createrepo_c - Library of routines for manipulation with repodata * Copyright (C) 2013 Tomas Mlcoch * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, * USA. */ #include "error.h" const char * cr_strerror(cr_Error rc) { switch (rc) { case CRE_OK: return "No error"; case CRE_ERROR: return "No specified error"; case CRE_IO: return "Input/Output error"; case CRE_MEMORY: return "Out of memory"; case CRE_STAT: return "stat() system call failed"; case CRE_DB: return "Database error"; case CRE_BADARG: return "Bad function argument(s)"; case CRE_NOFILE: return "File doesn't exist"; case CRE_NODIR: return "Directory doesn't exist"; case CRE_EXISTS: return "File/Directory already exists"; case CRE_UNKNOWNCHECKSUMTYPE: return "Unknown/Unsupported checksum type"; case CRE_UNKNOWNCOMPRESSION: return "Unknown/Usupported compression"; case CRE_XMLPARSER: return "Error while parsing XML"; case CRE_XMLDATA: return "Loaded XML data are bad"; case CRE_CBINTERRUPTED: return "Interrupted by callback"; case CRE_BADXMLPRIMARY: return "Bad primary XML"; case CRE_BADXMLFILELISTS: return "Bad filelists XML"; case CRE_BADXMLOTHER: return "Bad other XML"; case CRE_MAGIC: return "Magic Number Recognition error"; case CRE_GZ: return "Gzip library related error"; case CRE_BZ2: return "Bzip2 library related error"; case CRE_XZ: return "XZ (lzma) library related error"; case CRE_OPENSSL: return "OpenSSL library related error"; case CRE_CURL: return "Curl library related error"; case CRE_ASSERT: return "Assert error"; case CRE_BADCMDARG: return "Bad command line argument(s)"; case CRE_SPAWNERRCODE: return "Child process exited with error code != 0"; case CRE_SPAWNKILLED: return "Child process killed by signal"; case CRE_SPAWNSTOPED: return "Child process stopped by signal"; case CRE_SPAWNABNORMAL: return "Child process exited abnormally"; case CRE_DELTARPM: return "Deltarpm error"; default: return "Unknown error"; } } GQuark createrepo_c_error_quark(void) { static GQuark quark = 0; if (!quark) quark = g_quark_from_static_string ("createrepo_c_error"); return quark; }