Create your own basic UUID : UUID GUID « Development Class « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Development Class » UUID GUIDScreenshots 
Create your own basic UUID
  
/*

 Derby - Class org.apache.derby.impl.services.uuid.BasicUUID

 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements.  See the NOTICE file distributed with
 this work for additional information regarding copyright ownership.
 The ASF licenses this file to you under the Apache License, Version 2.0
 (the "License"); you may not use this file except in compliance with
 the License.  You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.

 */

import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.io.StringReader;

public class BasicUUID {
  /*
   * * Fields of BasicUUID
   */

  private long majorId; // only using 48 bits

  private long timemillis;

  private int sequence;

  /*
   * * Methods of BasicUUID
   */

  /**
   * Constructor only called by BasicUUIDFactory.
   */
  public BasicUUID(long majorId, long timemillis, int sequence) {
    this.majorId = majorId;
    this.timemillis = timemillis;
    this.sequence = sequence;
  }

  /**
   * Constructor only called by BasicUUIDFactory. Constructs a UUID from the
   * string representation produced by toString.
   
   @see BasicUUID#toString
   */
  public BasicUUID(String uuidstring) {
    StringReader sr = new StringReader(uuidstring);
    sequence = (intreadMSB(sr);

    long ltimemillis = readMSB(sr<< 32;
    ltimemillis += readMSB(sr<< 16;
    ltimemillis += readMSB(sr);
    timemillis = ltimemillis;
    majorId = readMSB(sr);
  }

  /**
   * Constructor only called by BasicUUIDFactory. Constructs a UUID from the
   * byte array representation produced by toByteArrayio.
   
   @see BasicUUID#toByteArray
   */
  public BasicUUID(byte[] b) {
    int lsequence = 0;
    for (int ix = 0; ix < 4; ix++) {
      lsequence = lsequence << 8;
      lsequence = lsequence | (0xff & b[ix]);
    }

    long ltimemillis = 0;
    for (int ix = 4; ix < 10; ix++) {
      ltimemillis = ltimemillis << 8;
      ltimemillis = ltimemillis | (0xff & b[ix]);
    }

    long linetaddr = 0;
    for (int ix = 10; ix < 16; ix++) {
      linetaddr = linetaddr << 8;
      linetaddr = linetaddr | (0xff & b[ix]);
    }

    sequence = lsequence;
    timemillis = ltimemillis;
    majorId = linetaddr;
  }

  /*
   * Formatable methods
   */

  // no-arg constructor, required by Formatable
  public BasicUUID() {
    super();
  }

  /**
   * Write this out.
   
   @exception IOException
   *              error writing to log stream
   */
  public void writeExternal(ObjectOutput outthrows IOException {
    // RESOLVE: write out the byte array instead?
    out.writeLong(majorId);
    out.writeLong(timemillis);
    out.writeInt(sequence);
  }

  /**
   * Read this in
   
   @exception IOException
   *              error reading from log stream
   */
  public void readExternal(ObjectInput inthrows IOException {
    majorId = in.readLong();
    timemillis = in.readLong();
    sequence = in.readInt();
  }

  private static void writeMSB(char[] data, int offset, long value, int nbytes) {
    for (int i = nbytes - 1; i >= 0; i--) {
      long b = (value & (255L << (* i))) >>> (* i);

      int c = (int) ((b & 0xf0>> 4);
      data[offset++(char) (c < 10 ? c + '0' (c - 10'a');
      c = (int) (b & 0x0f);
      data[offset++(char) (c < 10 ? c + '0' (c - 10'a');
    }
  }

  /**
   * Read a long value, msb first, from its character representation in the
   * string reader, using '-' or end of string to delimit.
   */
  private static long readMSB(StringReader sr) {
    long value = 0;

    try {
      int c;
      while ((c = sr.read()) != -1) {
        if (c == '-')
          break;
        value <<= 4;

        int nibble;
        if (c <= '9')
          nibble = c - '0';
        else if (c <= 'F')
          nibble = c - 'A' 10;
        else
          nibble = c - 'a' 10;
        value += nibble;
      }
    catch (Exception e) {
    }

    return value;
  }

  /*
   * * Methods of UUID
   */

  /**
   * Implement value equality.
   
   */
  public boolean equals(Object otherObject) {
    if (!(otherObject instanceof BasicUUID))
      return false;

    BasicUUID other = (BasicUUIDotherObject;

    return (this.sequence == other.sequence&& (this.timemillis == other.timemillis)
        && (this.majorId == other.majorId);
  }

  /**
   * Provide a hashCode which is compatible with the equals() method.
   */
  public int hashCode() {
    long hc = majorId ^ timemillis;

    return sequence ^ ((int) (hc >> 4));
  }

  /**
   * Produce a string representation of this UUID which can be passed to
   * UUIDFactory.recreateUUID later on to reconstruct it. The funny
   * representation is designed to (sort of) match the format of Microsoft's
   * UUIDGEN utility.
   */
  public String toString() {
    return stringWorkhorse('-');
  }

  /**
   * Produce a string representation of this UUID which is suitable for use as a
   * unique ANSI identifier.
   */
  public String toANSIidentifier() {
    return "U" + stringWorkhorse('X');
  }

  /**
   * Private workhorse of the string making routines.
   
   @param separator
   *          Character to separate number blocks. Null means do not include a
   *          separator.
   
   @return string representation of UUID.
   */
  public String stringWorkhorse(char separator) {
    char[] data = new char[36];

    writeMSB(data, 0(longsequence, 4);

    int offset = 8;
    if (separator != 0)
      data[offset++= separator;

    long ltimemillis = timemillis;
    writeMSB(data, offset, (ltimemillis & 0x0000ffff00000000L>>> 322);
    offset += 4;
    if (separator != 0)
      data[offset++= separator;
    writeMSB(data, offset, (ltimemillis & 0x00000000ffff0000L>>> 162);
    offset += 4;
    if (separator != 0)
      data[offset++= separator;
    writeMSB(data, offset, (ltimemillis & 0x000000000000ffffL)2);
    offset += 4;
    if (separator != 0)
      data[offset++= separator;
    writeMSB(data, offset, majorId, 6);
    offset += 12;

    return new String(data, 0, offset);
  }

  /**
   * Store this UUID in a byte array. Arrange the bytes in the UUID in the same
   * order the code which stores a UUID in a string does.
   
   @see org.apache.derby.catalog.UUID#toByteArray
   */
  public byte[] toByteArray() {
    byte[] result = new byte[16];

    int lsequence = sequence;
    result[0(byte) (lsequence >>> 24);
    result[1(byte) (lsequence >>> 16);
    result[2(byte) (lsequence >>> 8);
    result[3(bytelsequence;

    long ltimemillis = timemillis;
    result[4(byte) (ltimemillis >>> 40);
    result[5(byte) (ltimemillis >>> 32);
    result[6(byte) (ltimemillis >>> 24);
    result[7(byte) (ltimemillis >>> 16);
    result[8(byte) (ltimemillis >>> 8);
    result[9(byteltimemillis;

    long linetaddr = majorId;
    result[10(byte) (linetaddr >>> 40);
    result[11(byte) (linetaddr >>> 32);
    result[12(byte) (linetaddr >>> 24);
    result[13(byte) (linetaddr >>> 16);
    result[14(byte) (linetaddr >>> 8);
    result[15(bytelinetaddr;

    return result;
  }

  /**
   * Clone this UUID.
   
   @return a copy of this UUID
   */
  public BasicUUID cloneMe() {
    return new BasicUUID(majorId, timemillis, sequence);
  }

  public String toHexString() {
    return stringWorkhorse((char0);
  }
}

   
    
  
Related examples in the same category
1. Random GUID
2. Algorithm for generating Random GUID
3. Get a unique identifier Using java.rmi.dgc.VMID
4. Using java.util.UUID
5. Session ID generator
6. UUID generator from Sun Microsystems
7. UUID generator from http://www1.ics.uci.edu
8. Using java.util.concurrent.AtomicLong: A numerical id, start at zero and increment by one.
9. A 32 byte GUID generator
10. A unique identifier
11. Generate pseudo-GUID sequences
12. Generates a UUID
13. Generates random UUIDs
14. Generator for Globally unique Strings
15. ID generator
16. Simple Id Generator
17. UUID generation
18. UUID generator of 32 bytes long values
19. Simple Long Id Generator
20. Long Sequence Generator
21. UUID generator
22. Thread-safe version of the Axiom UUIDGenerator
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.