mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 16:07:05 -06:00
63 lines
1.7 KiB
C
63 lines
1.7 KiB
C
|
|
/**
|
|
* Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
|
|
* Copyright (c) 2016 Tino Reichardt
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#include "zstd.h"
|
|
#include "zstd-mt.h"
|
|
|
|
/* ****************************************
|
|
* ZSTDMT Error Management
|
|
******************************************/
|
|
|
|
size_t zstdmt_errcode;
|
|
|
|
/**
|
|
* ZSTDCB_isError() - tells if a return value is an error code
|
|
*/
|
|
unsigned ZSTDCB_isError(size_t code)
|
|
{
|
|
return (code > ZSTDCB_ERROR(maxCode));
|
|
}
|
|
|
|
/**
|
|
* LZ4MT_getErrorString() - give error code string from function result
|
|
*/
|
|
const char *ZSTDCB_getErrorString(size_t code)
|
|
{
|
|
static const char *noErrorCode = "Unspecified zstmt error code";
|
|
|
|
if (ZSTD_isError(zstdmt_errcode))
|
|
return ZSTD_getErrorName(zstdmt_errcode);
|
|
|
|
switch ((ZSTDCB_ErrorCode) (0 - code)) {
|
|
case ZSTDCB_PREFIX(no_error):
|
|
return "No error detected";
|
|
case ZSTDCB_PREFIX(memory_allocation):
|
|
return "Allocation error : not enough memory";
|
|
case ZSTDCB_PREFIX(read_fail):
|
|
return "Read failure";
|
|
case ZSTDCB_PREFIX(write_fail):
|
|
return "Write failure";
|
|
case ZSTDCB_PREFIX(data_error):
|
|
return "Malformed input";
|
|
case ZSTDCB_PREFIX(frame_compress):
|
|
return "Could not compress frame at once";
|
|
case ZSTDCB_PREFIX(frame_decompress):
|
|
return "Could not decompress frame at once";
|
|
case ZSTDCB_PREFIX(compressionParameter_unsupported):
|
|
return "Compression parameter is out of bound";
|
|
case ZSTDCB_PREFIX(compression_library):
|
|
return "Compression library reports failure";
|
|
case ZSTDCB_PREFIX(maxCode):
|
|
default:
|
|
return noErrorCode;
|
|
}
|
|
}
|