2017-08-27 12:05:17 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								/*
							 | 
						
					
						
							
								
									
										
										
										
											2020-09-18 21:38:36 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								 * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc.
							 | 
						
					
						
							
								
									
										
										
										
											2017-06-08 20:43:56 -05:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 * All rights reserved.
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 *
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-27 12:05:17 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								 * This source code is licensed under both the BSD-style license (found in the
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 * LICENSE file in the root directory of this source tree) and the GPLv2 (found
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 * in the COPYING file in the root directory of this source tree).
							 | 
						
					
						
							
								
									
										
										
										
											2017-10-26 16:41:47 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								 * You may select, at your option, one of the above-listed licenses.
							 | 
						
					
						
							
								
									
										
										
										
											2017-06-08 20:43:56 -05:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 */
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								/* The purpose of this file is to have a single list of error strings embedded in binary */
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								#include "error_private.h"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								const char* ERR_getErrorString(ERR_enum code)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								{
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-03 22:30:03 -02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								#ifdef ZSTD_STRIP_ERROR_STRINGS
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    (void)code;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    return "Error strings stripped";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								#else
							 | 
						
					
						
							
								
									
										
										
										
											2017-06-08 20:43:56 -05:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    static const char* const notErrorCode = "Unspecified error code";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    switch( code )
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(no_error): return "No error detected";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(GENERIC):  return "Error (generic)";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(prefix_unknown): return "Unknown frame descriptor";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(version_unsupported): return "Version not supported";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(frameParameter_unsupported): return "Unsupported frame parameter";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(frameParameter_windowTooLarge): return "Frame requires too much memory for decoding";
							 | 
						
					
						
							
								
									
										
										
										
											2017-08-27 12:05:17 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(corruption_detected): return "Corrupted block detected";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(checksum_wrong): return "Restored data doesn't match checksum";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(parameter_unsupported): return "Unsupported parameter";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(parameter_outOfBound): return "Parameter is out of bound";
							 | 
						
					
						
							
								
									
										
										
										
											2017-06-08 20:43:56 -05:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(init_missing): return "Context should be init first";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(memory_allocation): return "Allocation error : not enough memory";
							 | 
						
					
						
							
								
									
										
										
										
											2018-05-16 02:45:22 +09:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(workSpace_tooSmall): return "workSpace buffer is not large enough";
							 | 
						
					
						
							
								
									
										
										
										
											2017-06-08 20:43:56 -05:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(stage_wrong): return "Operation not authorized at current processing stage";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(tableLog_tooLarge): return "tableLog requires too much memory : unsupported";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(maxSymbolValue_tooLarge): return "Unsupported max Symbol Value : too large";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(maxSymbolValue_tooSmall): return "Specified maxSymbolValue is too small";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(dictionary_corrupted): return "Dictionary is corrupted";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(dictionary_wrong): return "Dictionary mismatch";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(dictionaryCreation_failed): return "Cannot create Dictionary from provided samples";
							 | 
						
					
						
							
								
									
										
										
										
											2017-10-26 16:41:47 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(dstSize_tooSmall): return "Destination buffer is too small";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(srcSize_wrong): return "Src size is incorrect";
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-03 22:30:03 -02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(dstBuffer_null): return "Operation on NULL destination buffer";
							 | 
						
					
						
							
								
									
										
										
										
											2017-10-26 16:41:47 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								        /* following error codes are not stable and may be removed or changed in a future version */
							 | 
						
					
						
							
								
									
										
										
										
											2017-07-22 18:46:05 -03:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(frameIndex_tooLarge): return "Frame index is too large";
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(seekableIO): return "An I/O error occurred when reading/seeking";
							 | 
						
					
						
							
								
									
										
										
										
											2020-09-18 21:38:36 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(dstBuffer_wrong): return "Destination buffer is wrong";
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-08 11:21:43 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(srcBuffer_wrong): return "Source buffer is wrong";
							 | 
						
					
						
							
								
									
										
										
										
											2017-06-08 20:43:56 -05:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    case PREFIX(maxCode):
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    default: return notErrorCode;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    }
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-03 22:30:03 -02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								#endif
							 | 
						
					
						
							
								
									
										
										
										
											2017-06-08 20:43:56 -05:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								}
							 |