📄 cmsuuid.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src/org/opencms/util/CmsUUID.java,v $
* Date : $Date: 2006/04/28 15:20:52 $
* Version: $Revision: 1.21 $
*
* This library is part of OpenCms -
* the Open Source Content Mananagement System
*
* Copyright (c) 2005 Alkacon Software GmbH (http://www.alkacon.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* For further information about Alkacon Software GmbH, please see the
* company website: http://www.alkacon.com
*
* For further information about OpenCms, please see the
* project website: http://www.opencms.org
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.opencms.util;
import org.opencms.main.CmsIllegalArgumentException;
import org.opencms.main.CmsInitException;
import org.opencms.main.CmsLog;
import org.opencms.main.CmsRuntimeException;
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.io.Serializable;
import org.apache.commons.logging.Log;
import org.doomdark.uuid.EthernetAddress;
import org.doomdark.uuid.UUID;
import org.doomdark.uuid.UUIDGenerator;
/**
* Generates a UUID using spatial and temporal uniqueness.<p>
*
* Spatial uniqueness is derived from
* ethernet address (MAC, 802.1); temporal from system clock.<p>
*
* For more information about the algorithm used, please see
* <a href="http://www.opengroup.org/dce/info/draft-leach-uuids-guids-01.txt">
* draft-leach-uuids-guids-01.txt</a>.<p>
*
* Because Java is unable to read the MAC address of the machine
* (without using JNI), the MAC address has to be provided first
* by using the static {@link #init(String)} method.<p>
*
* This class is just a facade wrapper for the "real" UUID implementation.<p>
*
* @author Alexander Kandzior
*
* @version $Revision: 1.21 $
*
* @since 6.0.0
*/
public final class CmsUUID extends Object implements Serializable, Cloneable, Comparable, Externalizable {
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(CmsUUID.class);
/** Ethernet addess of the server machine. */
private static EthernetAddress m_ethernetAddress;
/** Flag to indicate if the ethernet address has been initialized. */
private static boolean m_isNotInitialized = true;
/** OpenCms UUID (name based uuid of "www.opencms.org" in the dns name space). */
private static UUID m_opencmsUUID = UUIDGenerator.getInstance().generateNameBasedUUID(
new UUID(UUID.NAMESPACE_DNS),
"www.opencms.org");
/** Constant for the null UUID. */
private static final CmsUUID NULL_UUID = new CmsUUID(UUID.getNullUUID());
/** Serial version UID required for safe serialization. */
private static final long serialVersionUID = 1736324454709298676L;
/** Internal UUID implementation. */
private UUID m_uuid;
/**
* Creates a new UUID.<p>
*
* Please note that the static init() method has to be called first to initialize the
* enternet address of the machine.<p>
*/
public CmsUUID() {
if (m_isNotInitialized) {
throw new CmsRuntimeException(Messages.get().container(Messages.ERR_INVALID_ETHERNET_ADDRESS_0));
}
m_uuid = UUIDGenerator.getInstance().generateTimeBasedUUID(m_ethernetAddress);
}
/**
* Create a UUID based on a binary data array.<p>
*
* @param data a binary data array representing a UUID
*/
public CmsUUID(byte[] data) {
m_uuid = new UUID(data);
}
/**
* Create a UUID based on a String.<p>
*
* @param uuid a String representing a UUID
* @throws NumberFormatException in case uuid is not a valid UUID
*/
public CmsUUID(String uuid)
throws NumberFormatException {
m_uuid = new UUID(uuid);
}
/**
* Create a new UUID based on another one (used internal for cloning).<p>
*
* @param uuid the UUID to clone
*/
private CmsUUID(UUID uuid) {
m_uuid = uuid;
}
/**
* Check that the given id is not the null id.<p>
*
* @param id the id to check
* @param canBeNull only if flag is set, <code>null</code> is accepted
*
* @see #isNullUUID()
*/
public static void checkId(CmsUUID id, boolean canBeNull) {
if (canBeNull && id == null) {
return;
}
if ((!canBeNull && id == null) || id.isNullUUID()) {
throw new CmsIllegalArgumentException(Messages.get().container(Messages.ERR_INVALID_UUID_1, id));
}
}
/**
* Returns a constant (name based) UUID,
* based on the given name in the OpenCms name space.
*
* @param name the name to derive the uuid from
* @return name based UUID of the given name
*/
public static CmsUUID getConstantUUID(String name) {
return new CmsUUID(UUIDGenerator.getInstance().generateNameBasedUUID(m_opencmsUUID, name));
}
/**
* Returns a String representing a dummy (random based) ethernet address.<p>
*
* @return a String representing a dummy (random based) ethernet address
*/
public static String getDummyEthernetAddress() {
return UUIDGenerator.getInstance().getDummyAddress().toString();
}
/**
* Returns a null UUID,
* use this null UUID to check if a UUID has been initilized or not.<p>
*
* @return a null UUID
*/
public static CmsUUID getNullUUID() {
return NULL_UUID;
}
/**
* Returns a constant (name based) UUID for OpenCms,
* based on "www.opencms.org" in the dns name space.
*
* @return name based UUID of OpenCms
*/
public static CmsUUID getOpenCmsUUID() {
return new CmsUUID(m_opencmsUUID);
}
/**
* Initialize the UUID generator with the ethernet address of the server machine.<p>
*
* The ethernetAddress parameter must represent a 'standard' ethernet MAC address string
* (e.g. '00:C0:F0:3D:5B:7C').
*
* @param ethernetAddress the ethernet address of the server machine
* @throws CmsInitException in case the ethernetAddress String is not a valid ethernet address
*/
public static void init(String ethernetAddress) throws CmsInitException {
try {
m_ethernetAddress = new EthernetAddress(ethernetAddress);
} catch (Exception e) {
throw new CmsInitException(Messages.get().container(
Messages.ERR_INVALID_ETHERNET_ADDRESS_1,
ethernetAddress));
}
m_isNotInitialized = false;
}
/**
* Returns <code>true</code> if the given UUID is valid.<p>
*
* @param uuid the UUID to check
*
* @return <code>true</code> if the given UUID is valid
*/
public static boolean isValidUUID(String uuid) {
try {
return (null != uuid) && (null != UUID.valueOf(uuid));
} catch (NumberFormatException e) {
// return false
}
return false;
}
/**
* Creates a clone of this CmsUUID.<p>
*
* @return a clone of this CmsUUID
*/
public Object clone() {
if (this == NULL_UUID) {
return NULL_UUID;
}
return new CmsUUID((UUID)m_uuid.clone());
}
/**
* @see java.lang.Comparable#compareTo(java.lang.Object)
*/
public int compareTo(Object obj) {
if (obj instanceof CmsUUID) {
return m_uuid.compareTo(((CmsUUID)obj).m_uuid);
}
return 0;
}
/**
* @see java.lang.Object#equals(java.lang.Object)
*/
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (obj instanceof CmsUUID) {
return ((CmsUUID)obj).m_uuid.equals(m_uuid);
}
return false;
}
/**
* Optimized hashCode implementation for UUID's.<p>
*
* @see java.lang.Object#hashCode()
*/
public int hashCode() {
return m_uuid.hashCode();
}
/**
* Returns true if this UUID is equal to the null UUID.<p>
*
* @return true if this UUID is equal to the null UUID
*/
public boolean isNullUUID() {
if (this == NULL_UUID) {
return true;
}
return m_uuid.equals(UUID.getNullUUID());
}
/**
* @see java.io.Externalizable#readExternal(java.io.ObjectInput)
*/
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
Object o = null;
try {
o = in.readObject();
} catch (Exception e) {
// there was an error getting the object form the ObjectInput
// so try to access it in the old way as it was done before
// OpenCms 6.2
if (in.readLong() == serialVersionUID) {
m_uuid = new UUID((String)in.readObject());
} else {
throw new IOException("Cannot read externalized UUID because of a version mismatch.");
}
}
if (o != null) {
if (o instanceof String) {
// this UUID has been serialized using the new method
if (LOG.isDebugEnabled()) {
LOG.debug(Messages.get().getBundle().key(Messages.LOG_READ_UUID_1, o));
}
m_uuid = new UUID((String)o);
} else if (o instanceof UUID) {
// this UUID has been serialized using the old method
if (LOG.isDebugEnabled()) {
LOG.debug(Messages.get().getBundle().key(Messages.LOG_READ_UUID_OLD_1, o));
}
m_uuid = (UUID)o;
}
}
// throw an error if the uuid could ne be deserialized
if (m_uuid == null) {
// UUID cannot be deserialized
if (LOG.isDebugEnabled()) {
LOG.debug(Messages.get().getBundle().key(Messages.LOG_ERR_READ_UUID_0));
}
throw new IOException("Cannot read externalized UUID.");
}
}
/**
* Returns the UUID as a 16-byte byte array.<p>
*
* @return 16-byte byte array that contains the UUID's bytes in the network byte order
*/
public byte[] toByteArray() {
return m_uuid.toByteArray();
}
/**
* @see java.lang.Object#toString()
*/
public String toString() {
return m_uuid.toString();
}
/**
*
* @see java.io.Externalizable#writeExternal(java.io.ObjectOutput)
*/
public void writeExternal(ObjectOutput out) throws IOException {
if (LOG.isDebugEnabled()) {
LOG.debug(Messages.get().getBundle().key(Messages.LOG_WRITE_UUID_1, m_uuid.toString()));
}
out.writeObject(m_uuid.toString());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -