fr.bmartel.speedtest.utils.RandomGen Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jspeedtest Show documentation
Show all versions of jspeedtest Show documentation
Speed Test library for Java/Android
/*
* The MIT License (MIT)
*
* Copyright (c) 2016-2017 Bertrand Martel
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package fr.bmartel.speedtest.utils;
import fr.bmartel.speedtest.SpeedTestConst;
import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.util.Random;
/**
* Generate Random byte array, file for randomly generated uploaded file.
*
* @author Bertrand Martel
*/
public class RandomGen {
/**
* Random object.
*/
private final Random mRandom = new Random();
/**
* Random generated file.
*/
private File mFile;
/**
* Generate random byte array.
*
* @param length number of bytes to be generated
* @return random byte array
*/
public byte[] generateRandomArray(final int length) {
final byte[] buffer = new byte[length];
final int iter = length / SpeedTestConst.UPLOAD_FILE_WRITE_CHUNK;
final int remain = length % SpeedTestConst.UPLOAD_FILE_WRITE_CHUNK;
for (int i = 0; i < iter; i++) {
final byte[] random = new byte[SpeedTestConst.UPLOAD_FILE_WRITE_CHUNK];
mRandom.nextBytes(random);
System.arraycopy(random, 0, buffer, i * SpeedTestConst.UPLOAD_FILE_WRITE_CHUNK, SpeedTestConst
.UPLOAD_FILE_WRITE_CHUNK);
}
if (remain > 0) {
final byte[] random = new byte[remain];
mRandom.nextBytes(random);
System.arraycopy(random, 0, buffer, iter * SpeedTestConst.UPLOAD_FILE_WRITE_CHUNK, remain);
}
return buffer;
}
/**
* Generate random file.
*
* @param length number of bytes to be generated
* @return file with random content
*/
public RandomAccessFile generateRandomFile(final int length) throws IOException {
mFile = File.createTempFile(SpeedTestConst.UPLOAD_TEMP_FILE_NAME,
SpeedTestConst.UPLOAD_TEMP_FILE_EXTENSION);
final RandomAccessFile randomFile = new RandomAccessFile(mFile.getAbsolutePath(), "rw");
randomFile.setLength(length);
final int iter = length / SpeedTestConst.UPLOAD_FILE_WRITE_CHUNK;
final int remain = length % SpeedTestConst.UPLOAD_FILE_WRITE_CHUNK;
for (int i = 0; i < iter; i++) {
final byte[] random = new byte[SpeedTestConst.UPLOAD_FILE_WRITE_CHUNK];
mRandom.nextBytes(random);
randomFile.write(random);
}
if (remain > 0) {
final byte[] random = new byte[remain];
mRandom.nextBytes(random);
randomFile.write(random);
}
return randomFile;
}
/**
* Delete random file.
*/
public void deleteFile() {
if (mFile != null) {
mFile.delete();
}
}
}