All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.rpc.util.UUID Maven / Gradle / Ivy

/*
 * Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package com.sun.xml.rpc.util;


//package java.util;

import java.security.*;
import java.io.IOException;
import java.io.UnsupportedEncodingException;

/**
 * 
 * @author Vivek Pandey
 *
 * Modified visibility to hide it from applications.
 * 
 */

/**
 * 
 * A class that represents a universally unique identifier (UUID). A UUID
 * represents a 128-bit value.
 *
 * 

There exist different variants of these global identifiers. The methods * of this class are for manipulating the Leach-Salz variant, although the * constructors allow the creation of any variant of UUID (described below). * *

The layout of a variant 2 (Leach-Salz) UUID is as follows: * * The most significant long consists of the following unsigned fields: *

 * 0xFFFFFFFF00000000 time_low
 * 0x00000000FFFF0000 time_mid
 * 0x000000000000F000 version
 * 0x0000000000000FFF time_hi
 * 
* The least significant long consists of the following unsigned fields: *
 * 0xC000000000000000 variant
 * 0x3FFF000000000000 clock_seq
 * 0x0000FFFFFFFFFFFF node
 * 
* *

The variant field contains a value which identifies the layout of * the UUID. The bit layout described above is valid only for * a UUID with a variant value of 2, which indicates the * Leach-Salz variant. * *

The version field holds a value that describes the type of this * UUID. There are four different basic types of UUIDs: time-based, * DCE security, name-based, and randomly generated UUIds. These types * have a version value of 1, 2, 3 and 4, respectively. * *

For more information including algorithms used to create UUIDs, * see the expired Internet-Draft UUIDs and GUIDs * or the standards body definition at * ISO/IEC 11578:1996. * * @version 1.3, 12/19/03 * @since JDK1.5 */ final class UUID //implements java.io.Serializable, Comparable { implements java.io.Serializable{ /** * Explicit serialVersionUID for interoperability. */ private static final long serialVersionUID = -4856846361193249489L; /* * The most significant 64 bits of this UUID. * * @serial */ private long mostSigBits; /* * The least significant 64 bits of this UUID. * * @serial */ private long leastSigBits; /* * The version number associated with this UUID. Computed on demand. */ private transient int version = -1; /* * The variant number associated with this UUID. Computed on demand. */ private transient int variant = -1; /* * The timestamp associated with this UUID. Computed on demand. */ private transient long timestamp = -1; /* * The clock sequence associated with this UUID. Computed on demand. */ private transient int sequence = -1; /* * The node number associated with this UUID. Computed on demand. */ private transient long node = -1; /* * The random number generator used by this class to create random * based UUIDs. */ private static SecureRandom numberGenerator = null; // Constructors and Factories /* * Private constructor which uses a byte array to construct the new UUID. */ private UUID(byte[] data) { //assert data.length == 16; if(data.length != 16) { //TBD: throw exception, vivekp } for (int i=0; i<8; i++) mostSigBits = (mostSigBits << 8) | (data[i] & 0xff); for (int i=8; i<16; i++) leastSigBits = (leastSigBits << 8) | (data[i] & 0xff); } /** * Constructs a new UUID using the specified data. * mostSigBits is used for the most significant 64 bits of the * UUID and leastSig becomes the least significant 64 * bits of the UUID. * * @param mostSig * @param leastSig */ private UUID(long mostSigBits, long leastSigBits) { this.mostSigBits = mostSigBits; this.leastSigBits = leastSigBits; } /** * Constructs a new UUID using 16 bytes read from the specified * data source in standard network byte order. * * @param in - the input stream to read data from * @throws java.io.IOException - if an error occurs while reading 16 bytes */ private UUID(java.io.DataInput in) throws IOException { this.mostSigBits = in.readLong(); this.leastSigBits = in.readLong(); } /** * Static factory to retrieve a type 4 (pseudo randomly generated) UUID. * * @return a randomly generated UUID. */ protected static UUID randomUUID() { if (numberGenerator == null) numberGenerator = new SecureRandom(); byte[] randomBytes = new byte[16]; numberGenerator.nextBytes(randomBytes); randomBytes[6] &= 0x0f; /* clear version */ randomBytes[6] |= 0x40; /* set to version 4 */ randomBytes[8] &= 0x3f; /* clear variant */ randomBytes[8] |= 0x80; /* set to IETF variant */ UUID result = new UUID(randomBytes); return new UUID(randomBytes); } /** * Static factory to retrieve a type 3 (name based) UUID based on * the specified String. * * @param a string to be used to construct a UUID. * @return a UUIDUUID based on * the specified byte array. * * @param a byte array to be used to construct a UUID. * @return a UUIDUUID from the string standard representation as * described in the toString() method. * * @param a string that specifies a specific UUID. * @return a UUIDUUID. The version * number describes how this UUID was generated. * * The version number has the following meaning:

*

    *
  • 1 Time-based UUID *
  • 2 DCE security UUID *
  • 3 Name-based UUID *
  • 4 Randomly generated UUID *
* * @return the version number of this UUID. */ private int version() { if (version < 0) { // Version is bits masked by 0x000000000000F000 in MS long version = (int)((mostSigBits >> 12) & 0x0f); } return version; } /** * The variant number associated with this UUID. The variant * number describes the layout of the UUID. * * The variant number has the following meaning:

*

    *
  • 0 Reserved for NCS backward compatibility *
  • 2 The Leach-Salz variant (used by this class) *
  • 6 Reserved, Microsoft Corporation backward compatibility *
  • 7 Reserved for future definition *
* * @return the variant number of this UUID. */ private int variant() { if (variant < 0) { // This field is composed of a varying number of bits if ((leastSigBits >>> 63) == 0) { variant = 0; } else if ((leastSigBits >>> 62) == 2) { variant = 2; } else { variant = (int)(leastSigBits >>> 61); } } return variant; } /** * The timestamp value associated with this UUID. * *

The 60 bit timestamp value is constructed from the time_low, * time_mid, and time_hi fields of this UUID. The resulting * timestamp is measured in 100-nanosecond units since midnight, * October 15, 1582 UTC.

* * The timestamp value is only meaningful in a time-based UUID, which * has version type 1. If this UUID is not a time-based UUID then * this method throws UnsupportedOperationException. * * @throws UnsupportedOperationException if this UUID is not a * version 1 UUID. */ private long timestamp() { if (version() != 1) { throw new UnsupportedOperationException("Not a time-based UUID"); } timestamp = (mostSigBits & 0x0000000000000FFFL) << 48; timestamp |= ((mostSigBits >> 16) & 0xFFFFL) << 32; timestamp |= mostSigBits >>> 32; return timestamp; } /** * The clock sequence value associated with this UUID. * *

The 14 bit clock sequence value is constructed from the clock * sequence field of this UUID. The clock sequence field is used to * guarantee temporal uniqueness in a time-based UUID.

* * The clockSequence value is only meaningful in a time-based UUID, which * has version type 1. If this UUID is not a time-based UUID then * this method throws UnsupportedOperationException. * * @return the clock sequence of this UUID. * @throws UnsupportedOperationException if this UUID is not a * version 1 UUID. */ private int clockSequence() { if (version() != 1) { throw new UnsupportedOperationException("Not a time-based UUID"); } sequence = (int)((leastSigBits & 0x3FFF000000000000L) >>> 48); return sequence; } /** * The node value associated with this UUID. * *

The 48 bit node value is constructed from the node field of * this UUID. This field is intended to hold the IEEE 802 address * of the machine that generated this UUID to guarantee spatial * uniqueness.

* * The node value is only meaningful in a time-based UUID, which * has version type 1. If this UUID is not a time-based UUID then * this method throws UnsupportedOperationException. * * @return the node value of this UUID. * @throws UnsupportedOperationException if this UUID is not a * version 1 UUID. */ private long node() { if (version() != 1) { throw new UnsupportedOperationException("Not a time-based UUID"); } node = leastSigBits & 0x0000FFFFFFFFFFFFL; return node; } // Object Inherited Methods /** * Returns a String object representing this * UUID. * *

The UUID string representation is as described by this BNF : *

     *  UUID                   =  "-"  "-"
     *                            "-"
     *                            "-"
     *                           
     *  time_low               = 4*
     *  time_mid               = 2*
     *  time_high_and_version  = 2*
     *  variant_and_sequence   = 2*
     *  node                   = 6*
     *  hexOctet               = 
     *  hexDigit               =
     *        "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"
     *        | "a" | "b" | "c" | "d" | "e" | "f"
     *        | "A" | "B" | "C" | "D" | "E" | "F"
     * 
* * @return a string representation of this UUID. */ public String toString() { return (digits(mostSigBits >> 32, 8) + "-" + digits(mostSigBits >> 16, 4) + "-" + digits(mostSigBits, 4) + "-" + digits(leastSigBits >> 48, 4) + "-" + digits(leastSigBits, 12)); } /** Returns val represented by the specified number of hex digits. */ private static String digits(long val, int digits) { long hi = 1L << (digits * 4); return Long.toHexString(hi | (val & (hi - 1))).substring(1); } /** * Returns a hash code for this UUID. * * @return a hash code value for this UUID. */ public int hashCode() { return (int)((mostSigBits >> 32) ^ mostSigBits ^ (leastSigBits >> 32) ^ leastSigBits); } /** * Compares this object to the specified object. The result is * true if and only if the argument is not * null, is is a UUID object, has the same variant, * and contains the same value, bit for bit, as this UUID. * * @param obj the object to compare with. * @return true if the objects are the same; * false otherwise. */ public boolean equals(Object obj) { if (!(obj instanceof UUID)) return false; if (((UUID)obj).variant() != this.variant()) return false; UUID id = (UUID)obj; return (mostSigBits == id.mostSigBits && leastSigBits == id.leastSigBits); } // Comparison Operations /** * Compares this UUID with the specified UUID. * *

The first of two UUIDs follows the second if the most significant * field in which the UUIDs differ is greater for the first UUID. * *

An IllegalArgumentException is thrown if the argument is not of the * same variant type as this UUID. * * @param val UUID to which this UUID is to be compared. * @return -1, 0 or 1 as this UUID is less than, equal * to, or greater than val. * @throws IllegalArgumentException if val is a different * variant of UUID. */ private int compareTo(UUID val) { if (val.variant() != this.variant()) throw new IllegalArgumentException(); // The ordering is intentionally set up so that the UUIDs // can simply be numerically compared as two numbers return (this.mostSigBits < val.mostSigBits ? -1 : (this.mostSigBits > val.mostSigBits ? 1 : (this.leastSigBits < val.leastSigBits ? -1 : (this.leastSigBits > val.leastSigBits ? 1 : 0)))); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy