* [PATCH v3] BaseTools/LzmaCompress: Add two switches
@ 2019-09-18 8:30 Zhang, Shenglei
2019-09-19 15:46 ` Liming Gao
0 siblings, 1 reply; 2+ messages in thread
From: Zhang, Shenglei @ 2019-09-18 8:30 UTC (permalink / raw)
To: devel; +Cc: Zhang, Shenglei, Bob Feng, Liming Gao
From: "Zhang, Shenglei" <shenglei.zhang@intel.com>
As is requested in the BZ 2077, add two switches to support setting
compression mode and dictionary size.
(https://bugzilla.tianocore.org/show_bug.cgi?id=2077)
Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com>
---
v2: 1.Update DictionarySize to mDictionarySize.
2.Update CompressionMode to mCompressionMode.
3.Use CLzmaEncProps *props as the input parameter of the
function Encode.
v3: Remove the component "mDictionarySize >= 0" in the if judgement.line 303
This is to fix the build failure under Mac OS. Beacuse the type of
mDictionarySize is UINT64, which is always >= 0.
.../Source/C/LzmaCompress/LzmaCompress.c | 43 +++++++++++++++----
BaseTools/Source/C/LzmaCompress/GNUmakefile | 4 +-
BaseTools/Source/C/LzmaCompress/Makefile | 4 +-
3 files changed, 40 insertions(+), 11 deletions(-)
diff --git a/BaseTools/Source/C/LzmaCompress/LzmaCompress.c b/BaseTools/Source/C/LzmaCompress/LzmaCompress.c
index a3607f9b2084..328ecfa930da 100644
--- a/BaseTools/Source/C/LzmaCompress/LzmaCompress.c
+++ b/BaseTools/Source/C/LzmaCompress/LzmaCompress.c
@@ -5,7 +5,7 @@
LzmaUtil.c -- Test application for LZMA compression
2018-04-30 : Igor Pavlov : Public domain
- Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
@@ -23,6 +23,7 @@
#include "Sdk/C/LzmaEnc.h"
#include "Sdk/C/Bra.h"
#include "CommonLib.h"
+#include "ParseInf.h"
#define LZMA_HEADER_SIZE (LZMA_PROPS_SIZE + 8)
@@ -36,10 +37,14 @@ const char *kCantReadMessage = "Can not read input file";
const char *kCantWriteMessage = "Can not write output file";
const char *kCantAllocateMessage = "Can not allocate memory";
const char *kDataErrorMessage = "Data error";
+const char *kInvalidParamValMessage = "Invalid parameter value";
static Bool mQuietMode = False;
static CONVERTER_TYPE mConType = NoConverter;
+UINT64 mDictionarySize = 31;
+UINT64 mCompressionMode = 2;
+
#define UTILITY_NAME "LzmaCompress"
#define UTILITY_MAJOR_VERSION 0
#define UTILITY_MINOR_VERSION 2
@@ -58,6 +63,8 @@ void PrintHelp(char *buffer)
" -v, --verbose: increase output messages\n"
" -q, --quiet: reduce output messages\n"
" --debug [0-9]: set debug level\n"
+ " -a: set compression mode 0 = fast, 1 = normal, default: 1 (normal)\n"
+ " d: sets Dictionary size - [0, 30], default: 23 (8MB)\n"
" --version: display the program version and exit\n"
" -h, --help: display this help text\n"
);
@@ -87,7 +94,7 @@ void PrintVersion(char *buffer)
sprintf (buffer, "%s Version %d.%d %s ", UTILITY_NAME, UTILITY_MAJOR_VERSION, UTILITY_MINOR_VERSION, __BUILD_VERSION);
}
-static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize)
+static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize, CLzmaEncProps *props)
{
SRes res;
size_t inSize = (size_t)fileSize;
@@ -95,10 +102,6 @@ static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 file
Byte *outBuffer = 0;
Byte *filteredStream = 0;
size_t outSize;
- CLzmaEncProps props;
-
- LzmaEncProps_Init(&props);
- LzmaEncProps_Normalize(&props);
if (inSize != 0) {
inBuffer = (Byte *)MyAlloc(inSize);
@@ -151,7 +154,7 @@ static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 file
res = LzmaEncode(outBuffer + LZMA_HEADER_SIZE, &outSizeProcessed,
mConType != NoConverter ? filteredStream : inBuffer, inSize,
- &props, outBuffer, &outPropsSize, 0,
+ props, outBuffer, &outPropsSize, 0,
NULL, &g_Alloc, &g_Alloc);
if (res != SZ_OK)
@@ -246,6 +249,12 @@ int main2(int numArgs, const char *args[], char *rs)
const char *outputFile = "file.tmp";
int param;
UInt64 fileSize;
+ CLzmaEncProps *props;
+
+ props = (CLzmaEncProps *)AllocateZeroPool(sizeof(CLzmaEncProps));
+
+ LzmaEncProps_Init(props);
+ LzmaEncProps_Normalize(props);
FileSeqInStream_CreateVTable(&inStream);
File_Construct(&inStream.file);
@@ -280,6 +289,24 @@ int main2(int numArgs, const char *args[], char *rs)
// parameter compatibility with other build tools.
//
param++;
+ } else if (strcmp(args[param], "-a") == 0) {
+ AsciiStringToUint64(args[param + 1],FALSE,&mCompressionMode);
+ if ((mCompressionMode == 0)||(mCompressionMode == 1)){
+ props->algo = (int)mCompressionMode;
+ param++;
+ continue;
+ } else {
+ return PrintError(rs, kInvalidParamValMessage);
+ }
+ } else if (strcmp(args[param], "d") == 0) {
+ AsciiStringToUint64(args[param + 1],FALSE,&mDictionarySize);
+ if (mDictionarySize <= 30){
+ props->dictSize = (UINT32)mDictionarySize;
+ param++;
+ continue;
+ } else {
+ return PrintError(rs, kInvalidParamValMessage);
+ }
} else if (
strcmp(args[param], "-h") == 0 ||
strcmp(args[param], "--help") == 0
@@ -335,7 +362,7 @@ int main2(int numArgs, const char *args[], char *rs)
if (!mQuietMode) {
printf("Encoding\n");
}
- res = Encode(&outStream.vt, &inStream.vt, fileSize);
+ res = Encode(&outStream.vt, &inStream.vt, fileSize, props);
}
else
{
diff --git a/BaseTools/Source/C/LzmaCompress/GNUmakefile b/BaseTools/Source/C/LzmaCompress/GNUmakefile
index 533f0a59a0af..c837e7782373 100644
--- a/BaseTools/Source/C/LzmaCompress/GNUmakefile
+++ b/BaseTools/Source/C/LzmaCompress/GNUmakefile
@@ -1,13 +1,15 @@
## @file
# GNU/Linux makefile for 'LzmaCompress' module build.
#
-# Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2009 - 2019, Intel Corporation. All rights reserved.<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
MAKEROOT ?= ..
APPNAME = LzmaCompress
+LIBS = -lCommon
+
SDK_C = Sdk/C
OBJECTS = \
diff --git a/BaseTools/Source/C/LzmaCompress/Makefile b/BaseTools/Source/C/LzmaCompress/Makefile
index 12be48de2940..055f5d3ac3ca 100644
--- a/BaseTools/Source/C/LzmaCompress/Makefile
+++ b/BaseTools/Source/C/LzmaCompress/Makefile
@@ -1,14 +1,14 @@
## @file
# Windows makefile for 'LzmaCompress' module build.
#
-# Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2009 - 2019, Intel Corporation. All rights reserved.<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
!INCLUDE ..\Makefiles\ms.common
APPNAME = LzmaCompress
-#LIBS = $(LIB_PATH)\Common.lib
+LIBS = $(LIB_PATH)\Common.lib
SDK_C = Sdk\C
--
2.18.0.windows.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v3] BaseTools/LzmaCompress: Add two switches
2019-09-18 8:30 [PATCH v3] BaseTools/LzmaCompress: Add two switches Zhang, Shenglei
@ 2019-09-19 15:46 ` Liming Gao
0 siblings, 0 replies; 2+ messages in thread
From: Liming Gao @ 2019-09-19 15:46 UTC (permalink / raw)
To: Zhang, Shenglei, devel@edk2.groups.io; +Cc: Feng, Bob C
Shenglei:
I have one comment.
> -----Original Message-----
> From: Zhang, Shenglei
> Sent: Wednesday, September 18, 2019 4:31 PM
> To: devel@edk2.groups.io
> Cc: Zhang, Shenglei <shenglei.zhang@intel.com>; Feng, Bob C <bob.c.feng@intel.com>; Gao, Liming <liming.gao@intel.com>
> Subject: [PATCH v3] BaseTools/LzmaCompress: Add two switches
>
> From: "Zhang, Shenglei" <shenglei.zhang@intel.com>
>
> As is requested in the BZ 2077, add two switches to support setting
> compression mode and dictionary size.
> (https://bugzilla.tianocore.org/show_bug.cgi?id=2077)
>
> Cc: Bob Feng <bob.c.feng@intel.com>
> Cc: Liming Gao <liming.gao@intel.com>
> Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com>
> ---
> v2: 1.Update DictionarySize to mDictionarySize.
> 2.Update CompressionMode to mCompressionMode.
> 3.Use CLzmaEncProps *props as the input parameter of the
> function Encode.
>
> v3: Remove the component "mDictionarySize >= 0" in the if judgement.line 303
> This is to fix the build failure under Mac OS. Beacuse the type of
> mDictionarySize is UINT64, which is always >= 0.
>
>
> .../Source/C/LzmaCompress/LzmaCompress.c | 43 +++++++++++++++----
> BaseTools/Source/C/LzmaCompress/GNUmakefile | 4 +-
> BaseTools/Source/C/LzmaCompress/Makefile | 4 +-
> 3 files changed, 40 insertions(+), 11 deletions(-)
>
> diff --git a/BaseTools/Source/C/LzmaCompress/LzmaCompress.c b/BaseTools/Source/C/LzmaCompress/LzmaCompress.c
> index a3607f9b2084..328ecfa930da 100644
> --- a/BaseTools/Source/C/LzmaCompress/LzmaCompress.c
> +++ b/BaseTools/Source/C/LzmaCompress/LzmaCompress.c
> @@ -5,7 +5,7 @@
> LzmaUtil.c -- Test application for LZMA compression
> 2018-04-30 : Igor Pavlov : Public domain
>
> - Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
> + Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
> SPDX-License-Identifier: BSD-2-Clause-Patent
>
> **/
> @@ -23,6 +23,7 @@
> #include "Sdk/C/LzmaEnc.h"
> #include "Sdk/C/Bra.h"
> #include "CommonLib.h"
> +#include "ParseInf.h"
>
> #define LZMA_HEADER_SIZE (LZMA_PROPS_SIZE + 8)
>
> @@ -36,10 +37,14 @@ const char *kCantReadMessage = "Can not read input file";
> const char *kCantWriteMessage = "Can not write output file";
> const char *kCantAllocateMessage = "Can not allocate memory";
> const char *kDataErrorMessage = "Data error";
> +const char *kInvalidParamValMessage = "Invalid parameter value";
>
> static Bool mQuietMode = False;
> static CONVERTER_TYPE mConType = NoConverter;
>
> +UINT64 mDictionarySize = 31;
> +UINT64 mCompressionMode = 2;
> +
> #define UTILITY_NAME "LzmaCompress"
> #define UTILITY_MAJOR_VERSION 0
> #define UTILITY_MINOR_VERSION 2
> @@ -58,6 +63,8 @@ void PrintHelp(char *buffer)
> " -v, --verbose: increase output messages\n"
> " -q, --quiet: reduce output messages\n"
> " --debug [0-9]: set debug level\n"
> + " -a: set compression mode 0 = fast, 1 = normal, default: 1 (normal)\n"
> + " d: sets Dictionary size - [0, 30], default: 23 (8MB)\n"
> " --version: display the program version and exit\n"
> " -h, --help: display this help text\n"
> );
> @@ -87,7 +94,7 @@ void PrintVersion(char *buffer)
> sprintf (buffer, "%s Version %d.%d %s ", UTILITY_NAME, UTILITY_MAJOR_VERSION, UTILITY_MINOR_VERSION, __BUILD_VERSION);
> }
>
> -static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize)
> +static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize, CLzmaEncProps *props)
> {
> SRes res;
> size_t inSize = (size_t)fileSize;
> @@ -95,10 +102,6 @@ static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 file
> Byte *outBuffer = 0;
> Byte *filteredStream = 0;
> size_t outSize;
> - CLzmaEncProps props;
> -
> - LzmaEncProps_Init(&props);
> - LzmaEncProps_Normalize(&props);
>
> if (inSize != 0) {
> inBuffer = (Byte *)MyAlloc(inSize);
> @@ -151,7 +154,7 @@ static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 file
>
> res = LzmaEncode(outBuffer + LZMA_HEADER_SIZE, &outSizeProcessed,
> mConType != NoConverter ? filteredStream : inBuffer, inSize,
> - &props, outBuffer, &outPropsSize, 0,
> + props, outBuffer, &outPropsSize, 0,
> NULL, &g_Alloc, &g_Alloc);
>
> if (res != SZ_OK)
> @@ -246,6 +249,12 @@ int main2(int numArgs, const char *args[], char *rs)
> const char *outputFile = "file.tmp";
> int param;
> UInt64 fileSize;
> + CLzmaEncProps *props;
> +
> + props = (CLzmaEncProps *)AllocateZeroPool(sizeof(CLzmaEncProps));
> +
> + LzmaEncProps_Init(props);
> + LzmaEncProps_Normalize(props);
Here, you can still use local variable for CLzmaEncProps.
If AllocateZeroPool is used, you need to free the allocated buffer before exit.
Thanks
Liming
>
> FileSeqInStream_CreateVTable(&inStream);
> File_Construct(&inStream.file);
> @@ -280,6 +289,24 @@ int main2(int numArgs, const char *args[], char *rs)
> // parameter compatibility with other build tools.
> //
> param++;
> + } else if (strcmp(args[param], "-a") == 0) {
> + AsciiStringToUint64(args[param + 1],FALSE,&mCompressionMode);
> + if ((mCompressionMode == 0)||(mCompressionMode == 1)){
> + props->algo = (int)mCompressionMode;
> + param++;
> + continue;
> + } else {
> + return PrintError(rs, kInvalidParamValMessage);
> + }
> + } else if (strcmp(args[param], "d") == 0) {
> + AsciiStringToUint64(args[param + 1],FALSE,&mDictionarySize);
> + if (mDictionarySize <= 30){
> + props->dictSize = (UINT32)mDictionarySize;
> + param++;
> + continue;
> + } else {
> + return PrintError(rs, kInvalidParamValMessage);
> + }
> } else if (
> strcmp(args[param], "-h") == 0 ||
> strcmp(args[param], "--help") == 0
> @@ -335,7 +362,7 @@ int main2(int numArgs, const char *args[], char *rs)
> if (!mQuietMode) {
> printf("Encoding\n");
> }
> - res = Encode(&outStream.vt, &inStream.vt, fileSize);
> + res = Encode(&outStream.vt, &inStream.vt, fileSize, props);
> }
> else
> {
> diff --git a/BaseTools/Source/C/LzmaCompress/GNUmakefile b/BaseTools/Source/C/LzmaCompress/GNUmakefile
> index 533f0a59a0af..c837e7782373 100644
> --- a/BaseTools/Source/C/LzmaCompress/GNUmakefile
> +++ b/BaseTools/Source/C/LzmaCompress/GNUmakefile
> @@ -1,13 +1,15 @@
> ## @file
> # GNU/Linux makefile for 'LzmaCompress' module build.
> #
> -# Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
> +# Copyright (c) 2009 - 2019, Intel Corporation. All rights reserved.<BR>
> # SPDX-License-Identifier: BSD-2-Clause-Patent
> #
> MAKEROOT ?= ..
>
> APPNAME = LzmaCompress
>
> +LIBS = -lCommon
> +
> SDK_C = Sdk/C
>
> OBJECTS = \
> diff --git a/BaseTools/Source/C/LzmaCompress/Makefile b/BaseTools/Source/C/LzmaCompress/Makefile
> index 12be48de2940..055f5d3ac3ca 100644
> --- a/BaseTools/Source/C/LzmaCompress/Makefile
> +++ b/BaseTools/Source/C/LzmaCompress/Makefile
> @@ -1,14 +1,14 @@
> ## @file
> # Windows makefile for 'LzmaCompress' module build.
> #
> -# Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR>
> +# Copyright (c) 2009 - 2019, Intel Corporation. All rights reserved.<BR>
> # SPDX-License-Identifier: BSD-2-Clause-Patent
> #
> !INCLUDE ..\Makefiles\ms.common
>
> APPNAME = LzmaCompress
>
> -#LIBS = $(LIB_PATH)\Common.lib
> +LIBS = $(LIB_PATH)\Common.lib
>
> SDK_C = Sdk\C
>
> --
> 2.18.0.windows.1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-09-19 15:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-09-18 8:30 [PATCH v3] BaseTools/LzmaCompress: Add two switches Zhang, Shenglei
2019-09-19 15:46 ` Liming Gao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox