Path: blob/main/sys/contrib/zstd/lib/zstd_errors.h
48254 views
/*1* Copyright (c) Yann Collet, Facebook, Inc.2* All rights reserved.3*4* This source code is licensed under both the BSD-style license (found in the5* LICENSE file in the root directory of this source tree) and the GPLv2 (found6* in the COPYING file in the root directory of this source tree).7* You may select, at your option, one of the above-listed licenses.8*/910#ifndef ZSTD_ERRORS_H_39827342311#define ZSTD_ERRORS_H_3982734231213#if defined (__cplusplus)14extern "C" {15#endif1617/*===== dependency =====*/18#include <stddef.h> /* size_t */192021/* ===== ZSTDERRORLIB_API : control library symbols visibility ===== */22#ifndef ZSTDERRORLIB_VISIBILITY23# if defined(__GNUC__) && (__GNUC__ >= 4)24# define ZSTDERRORLIB_VISIBILITY __attribute__ ((visibility ("default")))25# else26# define ZSTDERRORLIB_VISIBILITY27# endif28#endif29#if defined(ZSTD_DLL_EXPORT) && (ZSTD_DLL_EXPORT==1)30# define ZSTDERRORLIB_API __declspec(dllexport) ZSTDERRORLIB_VISIBILITY31#elif defined(ZSTD_DLL_IMPORT) && (ZSTD_DLL_IMPORT==1)32# define ZSTDERRORLIB_API __declspec(dllimport) ZSTDERRORLIB_VISIBILITY /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/33#else34# define ZSTDERRORLIB_API ZSTDERRORLIB_VISIBILITY35#endif3637/*-*********************************************38* Error codes list39*-*********************************************40* Error codes _values_ are pinned down since v1.3.1 only.41* Therefore, don't rely on values if you may link to any version < v1.3.1.42*43* Only values < 100 are considered stable.44*45* note 1 : this API shall be used with static linking only.46* dynamic linking is not yet officially supported.47* note 2 : Prefer relying on the enum than on its value whenever possible48* This is the only supported way to use the error list < v1.3.149* note 3 : ZSTD_isError() is always correct, whatever the library version.50**********************************************/51typedef enum {52ZSTD_error_no_error = 0,53ZSTD_error_GENERIC = 1,54ZSTD_error_prefix_unknown = 10,55ZSTD_error_version_unsupported = 12,56ZSTD_error_frameParameter_unsupported = 14,57ZSTD_error_frameParameter_windowTooLarge = 16,58ZSTD_error_corruption_detected = 20,59ZSTD_error_checksum_wrong = 22,60ZSTD_error_dictionary_corrupted = 30,61ZSTD_error_dictionary_wrong = 32,62ZSTD_error_dictionaryCreation_failed = 34,63ZSTD_error_parameter_unsupported = 40,64ZSTD_error_parameter_outOfBound = 42,65ZSTD_error_tableLog_tooLarge = 44,66ZSTD_error_maxSymbolValue_tooLarge = 46,67ZSTD_error_maxSymbolValue_tooSmall = 48,68ZSTD_error_stage_wrong = 60,69ZSTD_error_init_missing = 62,70ZSTD_error_memory_allocation = 64,71ZSTD_error_workSpace_tooSmall= 66,72ZSTD_error_dstSize_tooSmall = 70,73ZSTD_error_srcSize_wrong = 72,74ZSTD_error_dstBuffer_null = 74,75/* following error codes are __NOT STABLE__, they can be removed or changed in future versions */76ZSTD_error_frameIndex_tooLarge = 100,77ZSTD_error_seekableIO = 102,78ZSTD_error_dstBuffer_wrong = 104,79ZSTD_error_srcBuffer_wrong = 105,80ZSTD_error_maxCode = 120 /* never EVER use this value directly, it can change in future versions! Use ZSTD_isError() instead */81} ZSTD_ErrorCode;8283/*! ZSTD_getErrorCode() :84convert a `size_t` function result into a `ZSTD_ErrorCode` enum type,85which can be used to compare with enum list published above */86ZSTDERRORLIB_API ZSTD_ErrorCode ZSTD_getErrorCode(size_t functionResult);87ZSTDERRORLIB_API const char* ZSTD_getErrorString(ZSTD_ErrorCode code); /**< Same as ZSTD_getErrorName, but using a `ZSTD_ErrorCode` enum argument */888990#if defined (__cplusplus)91}92#endif9394#endif /* ZSTD_ERRORS_H_398273423 */959697