Skip to content

Commit f4616ce

Browse files
committed
Minor improvements
1 parent bdace01 commit f4616ce

File tree

4 files changed

+51
-6
lines changed

4 files changed

+51
-6
lines changed

run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22

3-
java -classpath build/classes $*
3+
java -classpath target/classes $*

src/main/java/com/fasterxml/uuid/Jug.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ protected static void printUsage()
4949
String clsName = Jug.class.getName();
5050
System.err.println("Usage: java "+clsName+" [options] type");
5151
System.err.println("Where options are:");
52-
System.err.println(" --count / -c <number>: will generate <number> UUIDs (default: 1");
52+
System.err.println(" --count / -c <number>: will generate <number> UUIDs (default: 1)");
5353
System.err.println(" --ethernet-address / -e <ether-address>: defines the ethernet address");
5454
System.err.println(" (in xx:xx:xx:xx:xx:xx notation, usually obtained using 'ifconfig' etc)");
5555
System.err.println(" to use with time-based UUID generation");

src/main/java/com/fasterxml/uuid/impl/RandomBasedGenerator.java

+48-3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@ public class RandomBasedGenerator extends NoArgGenerator
3333
* Random number generator that this generator uses.
3434
*/
3535
protected final Random _random;
36+
37+
/**
38+
* Looks like {@link SecureRandom} implementation is more efficient
39+
* using single call access (compared to basic {@link java.util.Random}),
40+
* so let's use that knowledge to our benefit.
41+
*/
42+
protected final boolean _secureRandom;
3643

3744
/**
3845
* @param rnd Random number generator to use for generating UUIDs; if null,
@@ -51,6 +58,9 @@ public RandomBasedGenerator(Random rnd)
5158
if (_sharedRandom == null) {
5259
_sharedRandom = rnd = new SecureRandom();
5360
}
61+
_secureRandom = true;
62+
} else {
63+
_secureRandom = (rnd instanceof SecureRandom);
5464
}
5565
_random = rnd;
5666
}
@@ -71,9 +81,44 @@ public RandomBasedGenerator(Random rnd)
7181
*/
7282

7383
@Override
74-
public UUID generate() {
75-
long r1 = _random.nextLong();
76-
long r2 = _random.nextLong();
84+
public UUID generate()
85+
{
86+
/* 14-Oct-2010, tatu: Surprisingly, variant for reading byte array is
87+
* tad faster for SecureRandom... so let's use that then
88+
*/
89+
long r1, r2;
90+
91+
if (_secureRandom) {
92+
final byte[] buffer = new byte[16];
93+
_random.nextBytes(buffer);
94+
r1 = _toLong(buffer, 0);
95+
r2 = _toLong(buffer, 1);
96+
} else {
97+
r1 = _random.nextLong();
98+
r2 = _random.nextLong();
99+
}
77100
return UUIDUtil.constructUUID(UUIDType.RANDOM_BASED, r1, r2);
78101
}
102+
103+
/*
104+
/**********************************************************************
105+
/* Internal methods
106+
/**********************************************************************
107+
*/
108+
109+
private final static long _toLong(byte[] buffer, int offset)
110+
{
111+
long l1 = _toInt(buffer, offset);
112+
long l2 = _toInt(buffer, offset+4);
113+
long l = (l1 << 32) + ((l2 << 32) >>> 32);
114+
return l;
115+
}
116+
117+
private final static long _toInt(byte[] buffer, int offset)
118+
{
119+
return (buffer[offset] << 24)
120+
+ ((buffer[++offset] & 0xFF) << 16)
121+
+ ((buffer[++offset] & 0xFF) << 8)
122+
+ (buffer[++offset] & 0xFF);
123+
}
79124
}

src/main/java/test/MeasurePerformance.java src/main/java/perf/MeasurePerformance.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package test;
1+
package perf;
22

33
import java.util.UUID;
44

0 commit comments

Comments
 (0)