/***
* Copyright (c) 2008, Endless Loop Software, Inc.
*
* This file is part of EgoNet.
*
* EgoNet is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* EgoNet is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.egonet.util;
import java.security.SecureRandom;
public class EJBUtils
{
// initialise the secure random instance
private static final SecureRandom seeder = new SecureRandom();
public EJBUtils()
{
}
/**
* A 24 byte GUID generator (Globally Unique ID). These artificial keys SHOULD <strong>NOT </strong> be seen by the user,
* not even touched by the DBA but with very rare exceptions, just manipulated by the database and the programs.
*
* Usage: Add an id field (type java.lang.String) to your EJB, and add setId(XXXUtil.generateGUID(this)); to the ejbCreate method.
*/
public static final String generateGUID(Object target)
{
long timeNow = System.currentTimeMillis();
int timeLow = (int) timeNow & 0xFFFFFFFF;
int node = seeder.nextInt();
StringBuffer guid = new StringBuffer(24);
guid.append(hexFormat(timeLow, 8));
guid.append(hexFormat(System.identityHashCode(target), 8));
guid.append(hexFormat(node, 8));
return guid.toString();
}
public static int getInt(byte bytes[])
{
int i = 0;
int j = 24;
for (int k = 0; j >= 0; k++)
{
int l = bytes[k] & 0xff;
i += l << j;
j -= 8;
}
return i;
}
private static String hexFormat(int i, int j)
{
String s = Integer.toHexString(i);
return padHex(s, j) + s;
}
private static String padHex(String s, int i)
{
StringBuffer tmpBuffer = new StringBuffer();
if (s.length() < i)
{
for (int j = 0; j < i - s.length(); j++)
{
tmpBuffer.append('0');
}
}
return tmpBuffer.toString();
}
}