mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-07-30 07:44:13 +02:00
e4b4ba875b
Replaces the QProcess->7z shim with the public-domain LZMA SDK (23.01) 7-Zip reader, vendored under sources/import/edz/lzma/ (decode-only subset). New edzsevenzip.cpp wraps SzArEx_Open/SzArEx_Extract and writes entries via Qt, so EdzArchive no longer needs an external 7-Zip at runtime. Enables the C language in CMake for the vendored sources. Verified: the bundled decoder extracts all three ifm sample .edz and the generated elements still match the Python oracle exactly (byte-correct decode), with no 7z on the path. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
51 lines
1.4 KiB
C
51 lines
1.4 KiB
C
/* RotateDefs.h -- Rotate functions
|
|
2023-06-18 : Igor Pavlov : Public domain */
|
|
|
|
#ifndef ZIP7_INC_ROTATE_DEFS_H
|
|
#define ZIP7_INC_ROTATE_DEFS_H
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <stdlib.h>
|
|
|
|
/* don't use _rotl with old MINGW. It can insert slow call to function. */
|
|
|
|
/* #if (_MSC_VER >= 1200) */
|
|
#pragma intrinsic(_rotl)
|
|
#pragma intrinsic(_rotr)
|
|
/* #endif */
|
|
|
|
#define rotlFixed(x, n) _rotl((x), (n))
|
|
#define rotrFixed(x, n) _rotr((x), (n))
|
|
|
|
#if (_MSC_VER >= 1300)
|
|
#define Z7_ROTL64(x, n) _rotl64((x), (n))
|
|
#define Z7_ROTR64(x, n) _rotr64((x), (n))
|
|
#else
|
|
#define Z7_ROTL64(x, n) (((x) << (n)) | ((x) >> (64 - (n))))
|
|
#define Z7_ROTR64(x, n) (((x) >> (n)) | ((x) << (64 - (n))))
|
|
#endif
|
|
|
|
#else
|
|
|
|
/* new compilers can translate these macros to fast commands. */
|
|
|
|
#if defined(__clang__) && (__clang_major__ >= 4) \
|
|
|| defined(__GNUC__) && (__GNUC__ >= 5)
|
|
/* GCC 4.9.0 and clang 3.5 can recognize more correct version: */
|
|
#define rotlFixed(x, n) (((x) << (n)) | ((x) >> (-(n) & 31)))
|
|
#define rotrFixed(x, n) (((x) >> (n)) | ((x) << (-(n) & 31)))
|
|
#define Z7_ROTL64(x, n) (((x) << (n)) | ((x) >> (-(n) & 63)))
|
|
#define Z7_ROTR64(x, n) (((x) >> (n)) | ((x) << (-(n) & 63)))
|
|
#else
|
|
/* for old GCC / clang: */
|
|
#define rotlFixed(x, n) (((x) << (n)) | ((x) >> (32 - (n))))
|
|
#define rotrFixed(x, n) (((x) >> (n)) | ((x) << (32 - (n))))
|
|
#define Z7_ROTL64(x, n) (((x) << (n)) | ((x) >> (64 - (n))))
|
|
#define Z7_ROTR64(x, n) (((x) >> (n)) | ((x) << (64 - (n))))
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|