-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CRYPTO-2: Create benchmark for Apache Commons Crypto #1
Open
winningsix
wants to merge
1
commit into
apache:master
Choose a base branch
from
winningsix:benchmark
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
warmupIterations 1000 | ||
iterations 1000 | ||
dataSize 1073741824 | ||
operationSize 8192 | ||
|
||
bufferSize 20 | ||
cipherClasses org.apache.commons.crypto.cipher.OpensslCipher,org.apache.commons.crypto.cipher.JceCipher | ||
transformations AES/CTR/NoPadding,AES/CBC/NoPadding |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
#!/bin/bash | ||
set -x | ||
if [ "$#" -ne 2 ];then | ||
echo "Usage: sh run-benchmark.sh path/to/JDKwithoutAESNIsupport path/to/JDKwithAESNIsupport \n JDK7u45 or higher supports AES-NI." | ||
exit 1 | ||
fi | ||
echo "This benchmark will evaluate the performance of Chimera in different transfomations, ciphers and JDK versions" | ||
|
||
if [ ! -f "conf/benchmark.properties" ];then | ||
echo "Not able to find the benchmark.propety, will use default propety instead" | ||
cp conf/benchmark.properties.template conf/benchmark.properties | ||
fi | ||
|
||
CRYPTO_JAR=`find . -name commons-crypto*.jar` | ||
|
||
echo "Using JDK in path $1 to evalue the performance" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Suggest to pass singe JDK as the script parameter. People can run twice with different path for benchmarking for different JDK. |
||
$1/bin/java -Djava.library.path="$PATH" -cp $CRYPTO_JAR:target/test-classes org.apache.commons.crypto.benchmark.CommonsCryptoBenchmark conf/benchmark.properties | ||
echo "Using JDK in path $2 to evaluate the performance" | ||
$2/bin/java -Djava.library.path="$PATH" -cp $CRYPTO_JAR:target/test-classes org.apache.commons.crypto.benchmark.CommonsCryptoBenchmark conf/benchmark.properties |
121 changes: 121 additions & 0 deletions
121
src/test/java/org/apache/commons/crypto/benchmark/CommonsCryptoBenchmark.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* <p/> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p/> | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.commons.crypto.benchmark; | ||
|
||
import org.apache.commons.crypto.benchmark.option.BenchmarkOption; | ||
import org.apache.commons.crypto.benchmark.option.StreamOption; | ||
import org.apache.commons.crypto.cipher.CipherTransformation; | ||
|
||
import java.io.*; | ||
import java.util.Properties; | ||
|
||
public class CommonsCryptoBenchmark { | ||
static String defaultConfigPath = "./conf/benchmark.properties"; | ||
|
||
public static void main(String[] args) throws IOException { | ||
Properties prop = new Properties(); | ||
String propFileName = "benchmark.properties"; | ||
|
||
if (args != null && args.length != 0 && args.length != 1 && args.length != 4) { | ||
System.out.println( | ||
"Usage: java -Djava.library.path=\"$PATH\" -cp path/to/commons-crypto-[version].jar:path/to/target/test-classes/ org.apache.commons.crypto.benchmark.CommonsCryptoBenchmark [warmupIterations] [iterations] [dataSize] [operationSize] or java -Djava.library.path=\"$PATH\" -cp commons-crypto-[version].jar:path/to/Chimera/target/test-classes/ org.apache.commons.crypto.benchmark.CommonsCryptoBenchmark [path/to/configuration]"); | ||
System.out.println("args[0]: " + args[0]); | ||
System.exit(1); | ||
} | ||
|
||
String confFilePath = defaultConfigPath; | ||
if (args.length == 1) { | ||
System.out | ||
.println("Use configurations specified by a configuration file."); | ||
confFilePath = args[0]; | ||
} | ||
|
||
File configFile = new File(confFilePath); | ||
InputStream inputStream; | ||
|
||
if (args.length == 0 || args.length == 1) { | ||
if (configFile.exists()) { | ||
inputStream = new FileInputStream(configFile); | ||
} else { | ||
System.out.println( | ||
"can not find the configuration file under the current path"); | ||
inputStream = CommonsCryptoBenchmark.class.getClassLoader() | ||
.getResourceAsStream(propFileName); | ||
} | ||
prop.load(inputStream); | ||
} | ||
|
||
// Benchmark related configurations | ||
BenchmarkOption.CipherBenchmarkOptionBuilder cipherBenchmarkOptionBuilder | ||
= BenchmarkOption.newBuilder(); | ||
if(args.length == 1){ | ||
if (prop.containsKey("warmupIterations")) { | ||
cipherBenchmarkOptionBuilder.buildWarmupIterations(Integer | ||
.parseInt(prop.getProperty("warmupIterations"))); | ||
} | ||
if (prop.containsKey("iterations")) { | ||
cipherBenchmarkOptionBuilder.buildIterations(Integer | ||
.parseInt(prop.getProperty("iterations"))); | ||
} | ||
if (prop.containsKey("dataSize")) { | ||
cipherBenchmarkOptionBuilder.buildDataSize(Integer.parseInt( | ||
prop.getProperty("dataSize"))); | ||
} | ||
if (prop.containsKey("operationSize")) { | ||
cipherBenchmarkOptionBuilder.buildOperationSize(Integer | ||
.parseInt(prop.getProperty("operationSize"))); | ||
} | ||
}else{ | ||
// specify by cmd | ||
cipherBenchmarkOptionBuilder.buildWarmupIterations(Integer | ||
.parseInt(args[0])); | ||
cipherBenchmarkOptionBuilder.buildIterations(Integer | ||
.parseInt(args[1])); | ||
cipherBenchmarkOptionBuilder.buildDataSize(Integer | ||
.parseInt(args[2])); | ||
cipherBenchmarkOptionBuilder.buildOperationSize(Integer | ||
.parseInt(args[3])); | ||
} | ||
|
||
BenchmarkOption benchmarkOption = cipherBenchmarkOptionBuilder.create(); | ||
|
||
System.out.println("current benchmarkOption option is " + benchmarkOption); | ||
// Stream related configuration | ||
String transformations = (prop.contains("transformations")) ? prop | ||
.getProperty( | ||
"transformations") : ("AES/CTR/NoPadding,AES/CBC/NoPadding"); | ||
String cipherClazzNames = (prop.contains("cipherClasses")) ? prop | ||
.getProperty("cipherClasses") : ("org.apache.commons.crypto.cipher" + | ||
".OpensslCipher,org.apache.commons.crypto.cipher.JceCipher"); | ||
int bufferSize = (prop.containsKey("bufferSize")) ? Integer | ||
.parseInt(prop.getProperty("bufferSize")) : (512 * 1024); | ||
for (String t : transformations.split(",")) { | ||
for(String c : cipherClazzNames.split(",")){ | ||
CipherTransformation transformation = CipherTransformation.fromName(t); | ||
StreamOption streamOption = StreamOption.newBuilder() | ||
.setBufferSize(bufferSize) | ||
.setCipherTransformation(transformation) | ||
.setCipherClazzName(c).build(); | ||
System.out.println("current stream option is " + streamOption); | ||
CryptoStreamBenchmark cryptoStreamBenchmark = new CryptoStreamBenchmark( | ||
benchmarkOption, streamOption); | ||
cryptoStreamBenchmark.getBenchMarkData(); | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why we need shade? used for packaging the dependence?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to add a shade jar to include dependencies used by Common Crypto.