View Javadoc
1   /*
2    * Copyright (C) 2003-2012 David E. Berry
3    *
4    * This library is free software; you can redistribute it and/or
5    * modify it under the terms of the GNU Lesser General Public
6    * License as published by the Free Software Foundation; either
7    * version 2.1 of the License, or (at your option) any later version.
8    *
9    * This library is distributed in the hope that it will be useful,
10   * but WITHOUT ANY WARRANTY; without even the implied warranty of
11   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12   * Lesser General Public License for more details.
13   *
14   * You should have received a copy of the GNU Lesser General Public
15   * License along with this library; if not, write to the Free Software
16   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
17   *
18   * A copy of the GNU Lesser General Public License may also be found at
19   * http://www.gnu.org/licenses/lgpl.txt
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        // get the inet address
52        InetAddress inet = InetAddress.getLocalHost();
53        byte[] bytes = inet.getAddress();
54        String hexInetAddress = hexFormat(new BigInteger(bytes).intValue());
55  
56        // get the hashcode
57        String thisHashCode = hexFormat(this.hashCode());
58  
59        /*
60         * set up a cached midValue as this is the same per method / call as is object specific and is the /
61         * ...-xxxx-xxxx-xxxx-xxxx.. mid part of the sequence
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     * Returns an 8 character hexidecimal representation of trgt. If the result is not equal to eight characters leading
93     * zeros are prefixed.
94     *
95     * @return 8 character hex representation of trgt
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       // add leading zeros
109       buf.append('0');
110     }
111     buf.append(s);
112     return buf.toString();
113   }
114 }