1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package org.synchronoss.cpo;
22
23 import org.slf4j.*;
24
25 import java.math.BigInteger;
26 import java.net.InetAddress;
27 import java.security.SecureRandom;
28
29 public class GUID {
30
31 private static GUID guid_ = new GUID();
32 private SecureRandom seeder;
33 SecureRandom sr;
34 String guidMidValue;
35 private static final Logger logger = LoggerFactory.getLogger(GUID.class);
36
37 private GUID() {
38 initGuid();
39 }
40
41 private void initGuid() {
42 try {
43 seeder = SecureRandom.getInstance("SHA1PRNG");
44 seeder.generateSeed(20);
45 sr = SecureRandom.getInstance("SHA1PRNG");
46 byte[] newSeed = new byte[20];
47 seeder.nextBytes(newSeed);
48 sr.setSeed(newSeed);
49
50 StringBuilder tmpBuffer = new StringBuilder();
51
52 InetAddress inet = InetAddress.getLocalHost();
53 byte[] bytes = inet.getAddress();
54 String hexInetAddress = hexFormat(new BigInteger(bytes).intValue());
55
56
57 String thisHashCode = hexFormat(this.hashCode());
58
59
60
61
62
63 tmpBuffer.append("-");
64 tmpBuffer.append(hexInetAddress.substring(0, 4));
65 tmpBuffer.append("-");
66 tmpBuffer.append(hexInetAddress.substring(4));
67 tmpBuffer.append("-");
68 tmpBuffer.append(thisHashCode.substring(0, 4));
69 tmpBuffer.append("-");
70 tmpBuffer.append(thisHashCode.substring(4));
71 guidMidValue = tmpBuffer.toString();
72 } catch (Exception e) {
73 logger.debug("initGuid: " + e.getMessage());
74 }
75 }
76
77 static GUID getInstance() {
78 return guid_;
79 }
80
81 public static String getGUID() {
82 GUID guid = GUID.getInstance();
83 long timeNow = System.currentTimeMillis();
84 int timeLow = (int) timeNow & 0xFFFFFFFF;
85 int node = guid.sr.nextInt();
86 String retVal = (hexFormat(timeLow) + guid.guidMidValue + hexFormat(node));
87 logger.debug("getGUID(): " + retVal);
88 return retVal;
89 }
90
91
92
93
94
95
96
97 private static String hexFormat(int trgt) {
98 String s = Integer.toHexString(trgt);
99 int sz = s.length();
100
101 if (sz == 8) {
102 return s;
103 }
104 int fill = 8 - sz;
105 StringBuilder buf = new StringBuilder();
106
107 for (int i = 0; i < fill; ++i) {
108
109 buf.append('0');
110 }
111 buf.append(s);
112 return buf.toString();
113 }
114 }