blob: 3e99b87e7f00662a87065036376cec423f7743de [file] [log] [blame]
Yann Collet4ded9e52016-08-30 10:04:33 -07001/**
2 * Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
3 * All rights reserved.
4 *
5 * This source code is licensed under the BSD-style license found in the
6 * LICENSE file in the root directory of this source tree. An additional grant
7 * of patent rights can be found in the PATENTS file in the same directory.
8 */
Yann Collet977f1f32016-01-21 15:38:47 +01009
Yann Collet977f1f32016-01-21 15:38:47 +010010/* Note : this module is expected to remain private, do not expose it */
11
12#ifndef ERROR_H_MODULE
13#define ERROR_H_MODULE
14
15#if defined (__cplusplus)
16extern "C" {
17#endif
18
19
Yann Collet72bff502016-02-03 12:06:24 +010020/* ****************************************
21* Dependencies
Yann Collet977f1f32016-01-21 15:38:47 +010022******************************************/
Yann Collet72bff502016-02-03 12:06:24 +010023#include <stddef.h> /* size_t */
Yann Colleta17fd732016-10-11 16:41:09 -070024#include "zstd_errors.h" /* enum list */
Yann Collet977f1f32016-01-21 15:38:47 +010025
26
Yann Collet72bff502016-02-03 12:06:24 +010027/* ****************************************
Yann Collet977f1f32016-01-21 15:38:47 +010028* Compiler-specific
29******************************************/
30#if defined(__GNUC__)
31# define ERR_STATIC static __attribute__((unused))
32#elif defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */)
33# define ERR_STATIC static inline
34#elif defined(_MSC_VER)
35# define ERR_STATIC static __inline
36#else
37# define ERR_STATIC static /* this version may generate warnings for unused static functions; disable the relevant warning */
38#endif
39
40
Yann Collet72bff502016-02-03 12:06:24 +010041/*-****************************************
Yann Colletde406ee2016-03-20 15:46:10 +010042* Customization (error_public.h)
Yann Collet977f1f32016-01-21 15:38:47 +010043******************************************/
Yann Collet982ffc72016-02-05 02:33:10 +010044typedef ZSTD_ErrorCode ERR_enum;
Yann Collet977f1f32016-01-21 15:38:47 +010045#define PREFIX(name) ZSTD_error_##name
46
Yann Collet72bff502016-02-03 12:06:24 +010047
48/*-****************************************
49* Error codes handling
50******************************************/
Yann Collet977f1f32016-01-21 15:38:47 +010051#ifdef ERROR
Yann Collet72bff502016-02-03 12:06:24 +010052# undef ERROR /* reported already defined on VS 2015 (Rich Geldreich) */
Yann Collet977f1f32016-01-21 15:38:47 +010053#endif
Yann Colletde406ee2016-03-20 15:46:10 +010054#define ERROR(name) ((size_t)-PREFIX(name))
Yann Collet977f1f32016-01-21 15:38:47 +010055
56ERR_STATIC unsigned ERR_isError(size_t code) { return (code > ERROR(maxCode)); }
57
Yann Colletc75e4c22016-05-10 17:47:11 +020058ERR_STATIC ERR_enum ERR_getErrorCode(size_t code) { if (!ERR_isError(code)) return (ERR_enum)0; return (ERR_enum) (0-code); }
Yann Collet977f1f32016-01-21 15:38:47 +010059
Yann Collet72bff502016-02-03 12:06:24 +010060
61/*-****************************************
Yann Collet977f1f32016-01-21 15:38:47 +010062* Error Strings
63******************************************/
64
Yann Colletc75e4c22016-05-10 17:47:11 +020065ERR_STATIC const char* ERR_getErrorString(ERR_enum code)
Yann Collet977f1f32016-01-21 15:38:47 +010066{
Yann Collet72bff502016-02-03 12:06:24 +010067 static const char* notErrorCode = "Unspecified error code";
Yann Colletc75e4c22016-05-10 17:47:11 +020068 switch( code )
Yann Collet977f1f32016-01-21 15:38:47 +010069 {
Yann Collet72bff502016-02-03 12:06:24 +010070 case PREFIX(no_error): return "No error detected";
71 case PREFIX(GENERIC): return "Error (generic)";
72 case PREFIX(prefix_unknown): return "Unknown frame descriptor";
Yann Collet4bf317d2016-08-28 07:43:34 -070073 case PREFIX(version_unsupported): return "Version not supported";
Yann Collet17e482e2016-08-23 16:58:10 +020074 case PREFIX(parameter_unknown): return "Unknown parameter type";
Yann Collet72bff502016-02-03 12:06:24 +010075 case PREFIX(frameParameter_unsupported): return "Unsupported frame parameter";
76 case PREFIX(frameParameter_unsupportedBy32bits): return "Frame parameter unsupported in 32-bits mode";
Yann Collet21588e32016-03-30 16:50:44 +020077 case PREFIX(compressionParameter_unsupported): return "Compression parameter is out of bound";
Yann Collet72bff502016-02-03 12:06:24 +010078 case PREFIX(init_missing): return "Context should be init first";
79 case PREFIX(memory_allocation): return "Allocation error : not enough memory";
80 case PREFIX(stage_wrong): return "Operation not authorized at current processing stage";
81 case PREFIX(dstSize_tooSmall): return "Destination buffer is too small";
82 case PREFIX(srcSize_wrong): return "Src size incorrect";
83 case PREFIX(corruption_detected): return "Corrupted block detected";
Yann Collet8e3a36a2016-06-01 00:18:28 +020084 case PREFIX(checksum_wrong): return "Restored data doesn't match checksum";
Yann Colletde406ee2016-03-20 15:46:10 +010085 case PREFIX(tableLog_tooLarge): return "tableLog requires too much memory : unsupported";
86 case PREFIX(maxSymbolValue_tooLarge): return "Unsupported max Symbol Value : too large";
Yann Collet72bff502016-02-03 12:06:24 +010087 case PREFIX(maxSymbolValue_tooSmall): return "Specified maxSymbolValue is too small";
88 case PREFIX(dictionary_corrupted): return "Dictionary is corrupted";
Yann Colletc46fb922016-05-29 05:01:04 +020089 case PREFIX(dictionary_wrong): return "Dictionary mismatch";
Yann Collet72bff502016-02-03 12:06:24 +010090 case PREFIX(maxCode):
Yann Colletc75e4c22016-05-10 17:47:11 +020091 default: return notErrorCode;
Yann Collet977f1f32016-01-21 15:38:47 +010092 }
93}
94
Yann Colletc75e4c22016-05-10 17:47:11 +020095ERR_STATIC const char* ERR_getErrorName(size_t code)
96{
97 return ERR_getErrorString(ERR_getErrorCode(code));
98}
Yann Collet977f1f32016-01-21 15:38:47 +010099
100#if defined (__cplusplus)
101}
102#endif
103
104#endif /* ERROR_H_MODULE */