@@ -33,6 +33,13 @@ public class RandomBasedGenerator extends NoArgGenerator
33
33
* Random number generator that this generator uses.
34
34
*/
35
35
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 ;
36
43
37
44
/**
38
45
* @param rnd Random number generator to use for generating UUIDs; if null,
@@ -51,6 +58,9 @@ public RandomBasedGenerator(Random rnd)
51
58
if (_sharedRandom == null ) {
52
59
_sharedRandom = rnd = new SecureRandom ();
53
60
}
61
+ _secureRandom = true ;
62
+ } else {
63
+ _secureRandom = (rnd instanceof SecureRandom );
54
64
}
55
65
_random = rnd ;
56
66
}
@@ -71,9 +81,44 @@ public RandomBasedGenerator(Random rnd)
71
81
*/
72
82
73
83
@ 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
+ }
77
100
return UUIDUtil .constructUUID (UUIDType .RANDOM_BASED , r1 , r2 );
78
101
}
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
+ }
79
124
}
0 commit comments