comparison contrib/python-zstandard/zstd/common/error_private.c @ 37495:b1fb341d8a61

zstandard: vendor python-zstandard 0.9.0 This was just released. It features a number of goodies. More info at https://gregoryszorc.com/blog/2018/04/09/release-of-python-zstandard-0.9/. The clang-format ignore list was updated to reflect the new source of files. The project contains a vendored copy of zstandard 1.3.4. The old version was 1.1.3. One of the changes between those versions is that zstandard is now dual licensed BSD + GPLv2 and the patent rights grant has been removed. Good riddance. The API should be backwards compatible. So no changes in core should be needed. However, there were a number of changes in the library that we'll want to adapt to. Those will be addressed in subsequent commits. Differential Revision: https://phab.mercurial-scm.org/D3198
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 09 Apr 2018 10:13:29 -0700
parents 2e484bdea8c4
children 675775c33ab6
comparison
equal deleted inserted replaced
37494:1ce7a55b09d1 37495:b1fb341d8a61
1 /** 1 /*
2 * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. 2 * Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
5 * This source code is licensed under the BSD-style license found in the 5 * This source code is licensed under both the BSD-style license (found in the
6 * LICENSE file in the root directory of this source tree. An additional grant 6 * LICENSE file in the root directory of this source tree) and the GPLv2 (found
7 * of patent rights can be found in the PATENTS file in the same directory. 7 * in the COPYING file in the root directory of this source tree).
8 * You may select, at your option, one of the above-listed licenses.
8 */ 9 */
9 10
10 /* The purpose of this file is to have a single list of error strings embedded in binary */ 11 /* The purpose of this file is to have a single list of error strings embedded in binary */
11 12
12 #include "error_private.h" 13 #include "error_private.h"
18 { 19 {
19 case PREFIX(no_error): return "No error detected"; 20 case PREFIX(no_error): return "No error detected";
20 case PREFIX(GENERIC): return "Error (generic)"; 21 case PREFIX(GENERIC): return "Error (generic)";
21 case PREFIX(prefix_unknown): return "Unknown frame descriptor"; 22 case PREFIX(prefix_unknown): return "Unknown frame descriptor";
22 case PREFIX(version_unsupported): return "Version not supported"; 23 case PREFIX(version_unsupported): return "Version not supported";
23 case PREFIX(parameter_unknown): return "Unknown parameter type";
24 case PREFIX(frameParameter_unsupported): return "Unsupported frame parameter"; 24 case PREFIX(frameParameter_unsupported): return "Unsupported frame parameter";
25 case PREFIX(frameParameter_unsupportedBy32bits): return "Frame parameter unsupported in 32-bits mode";
26 case PREFIX(frameParameter_windowTooLarge): return "Frame requires too much memory for decoding"; 25 case PREFIX(frameParameter_windowTooLarge): return "Frame requires too much memory for decoding";
27 case PREFIX(compressionParameter_unsupported): return "Compression parameter is out of bound"; 26 case PREFIX(corruption_detected): return "Corrupted block detected";
27 case PREFIX(checksum_wrong): return "Restored data doesn't match checksum";
28 case PREFIX(parameter_unsupported): return "Unsupported parameter";
29 case PREFIX(parameter_outOfBound): return "Parameter is out of bound";
28 case PREFIX(init_missing): return "Context should be init first"; 30 case PREFIX(init_missing): return "Context should be init first";
29 case PREFIX(memory_allocation): return "Allocation error : not enough memory"; 31 case PREFIX(memory_allocation): return "Allocation error : not enough memory";
32 case PREFIX(workSpace_tooSmall): return "workSpace buffer is not large enough";
30 case PREFIX(stage_wrong): return "Operation not authorized at current processing stage"; 33 case PREFIX(stage_wrong): return "Operation not authorized at current processing stage";
31 case PREFIX(dstSize_tooSmall): return "Destination buffer is too small";
32 case PREFIX(srcSize_wrong): return "Src size incorrect";
33 case PREFIX(corruption_detected): return "Corrupted block detected";
34 case PREFIX(checksum_wrong): return "Restored data doesn't match checksum";
35 case PREFIX(tableLog_tooLarge): return "tableLog requires too much memory : unsupported"; 34 case PREFIX(tableLog_tooLarge): return "tableLog requires too much memory : unsupported";
36 case PREFIX(maxSymbolValue_tooLarge): return "Unsupported max Symbol Value : too large"; 35 case PREFIX(maxSymbolValue_tooLarge): return "Unsupported max Symbol Value : too large";
37 case PREFIX(maxSymbolValue_tooSmall): return "Specified maxSymbolValue is too small"; 36 case PREFIX(maxSymbolValue_tooSmall): return "Specified maxSymbolValue is too small";
38 case PREFIX(dictionary_corrupted): return "Dictionary is corrupted"; 37 case PREFIX(dictionary_corrupted): return "Dictionary is corrupted";
39 case PREFIX(dictionary_wrong): return "Dictionary mismatch"; 38 case PREFIX(dictionary_wrong): return "Dictionary mismatch";
39 case PREFIX(dictionaryCreation_failed): return "Cannot create Dictionary from provided samples";
40 case PREFIX(dstSize_tooSmall): return "Destination buffer is too small";
41 case PREFIX(srcSize_wrong): return "Src size is incorrect";
42 /* following error codes are not stable and may be removed or changed in a future version */
43 case PREFIX(frameIndex_tooLarge): return "Frame index is too large";
44 case PREFIX(seekableIO): return "An I/O error occurred when reading/seeking";
40 case PREFIX(maxCode): 45 case PREFIX(maxCode):
41 default: return notErrorCode; 46 default: return notErrorCode;
42 } 47 }
43 } 48 }