/* ====================================================================
   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.
==================================================================== */

package org.apache.poi.hpsf;

import java.util.Arrays;

import org.apache.poi.util.HexDump;

Represents a class ID (16 bytes). Unlike other little-endian type the ClassID is not just 16 bytes stored in the wrong order. Instead, it is a double word (4 bytes) followed by two words (2 bytes each) followed by 8 bytes.

The ClassID (or CLSID) is a UUID - see RFC 4122

/** * Represents a class ID (16 bytes). Unlike other little-endian * type the {@link ClassID} is not just 16 bytes stored in the wrong * order. Instead, it is a double word (4 bytes) followed by two * words (2 bytes each) followed by 8 bytes.<p> * * The ClassID (or CLSID) is a UUID - see RFC 4122 */
public class ClassID {
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID OLE10_PACKAGE = ClassIDPredefined.OLE_V1_PACKAGE.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID PPT_SHOW = ClassIDPredefined.POWERPOINT_V8.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID XLS_WORKBOOK = ClassIDPredefined.EXCEL_V7_WORKBOOK.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID TXT_ONLY = ClassIDPredefined.TXT_ONLY.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EXCEL_V3 = ClassIDPredefined.EXCEL_V3.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EXCEL_V3_CHART = ClassIDPredefined.EXCEL_V3_CHART.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EXCEL_V3_MACRO = ClassIDPredefined.EXCEL_V3_MACRO.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EXCEL95 = ClassIDPredefined.EXCEL_V7.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EXCEL95_CHART = ClassIDPredefined.EXCEL_V7_CHART.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EXCEL97 = ClassIDPredefined.EXCEL_V8.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EXCEL97_CHART = ClassIDPredefined.EXCEL_V8_CHART.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EXCEL2003 = ClassIDPredefined.EXCEL_V11.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EXCEL2007 = ClassIDPredefined.EXCEL_V12.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EXCEL2007_MACRO= ClassIDPredefined.EXCEL_V12_MACRO.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EXCEL2007_XLSB = ClassIDPredefined.EXCEL_V12_XLSB.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EXCEL2010 = ClassIDPredefined.EXCEL_V14.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EXCEL2010_CHART= ClassIDPredefined.EXCEL_V14_CHART.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EXCEL2010_ODS = ClassIDPredefined.EXCEL_V14_ODS.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID WORD95 = ClassIDPredefined.WORD_V7.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID WORD97 = ClassIDPredefined.WORD_V8.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID WORD2007 = ClassIDPredefined.WORD_V12.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID WORD2007_MACRO = ClassIDPredefined.WORD_V12_MACRO.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID POWERPOINT97 = ClassIDPredefined.POWERPOINT_V8.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID POWERPOINT95 = ClassIDPredefined.POWERPOINT_V7.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID POWERPOINT2007 = ClassIDPredefined.POWERPOINT_V12.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID POWERPOINT2007_MACRO = ClassIDPredefined.POWERPOINT_V12_MACRO.getClassID();
Deprecated:use enum ClassIDPredefined
/** @deprecated use enum {@link ClassIDPredefined} */
@Deprecated public static final ClassID EQUATION30 = ClassIDPredefined.EQUATION_V3.getClassID();
The number of bytes occupied by this object in the byte stream.
/** The number of bytes occupied by this object in the byte stream. */
public static final int LENGTH = 16;
The bytes making out the class ID in correct order, i.e. big-endian.
/** * The bytes making out the class ID in correct order, i.e. big-endian. */
private final byte[] bytes = new byte[LENGTH];
Creates a ClassID and reads its value from a byte array.
Params:
  • src – The byte array to read from.
  • offset – The offset of the first byte to read.
/** * Creates a {@link ClassID} and reads its value from a byte array. * * @param src The byte array to read from. * @param offset The offset of the first byte to read. */
public ClassID(final byte[] src, final int offset) { read(src, offset); }
Creates a ClassID and initializes its value with 0x00 bytes.
/** * Creates a {@link ClassID} and initializes its value with 0x00 bytes. */
public ClassID() { Arrays.fill(bytes, (byte)0); }
Creates a ClassID from a human-readable representation of the Class ID in standard format "{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}".
Params:
  • externalForm – representation of the Class ID represented by this object.
/** * Creates a {@link ClassID} from a human-readable representation of the Class ID in standard * format {@code "{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}"}. * * @param externalForm representation of the Class ID represented by this object. */
public ClassID(String externalForm) { String clsStr = externalForm.replaceAll("[{}-]", ""); for (int i=0; i<clsStr.length(); i+=2) { bytes[i/2] = (byte)Integer.parseInt(clsStr.substring(i, i+2), 16); } }
Returns:The number of bytes occupied by this object in the byte stream.
/** * @return The number of bytes occupied by this object in the byte stream. */
public int length() { return LENGTH; }
Gets the bytes making out the class ID. They are returned in correct order, i.e. big-endian.
Returns:the bytes making out the class ID.
/** * Gets the bytes making out the class ID. They are returned in correct order, i.e. big-endian. * * @return the bytes making out the class ID. */
public byte[] getBytes() { return bytes; }
Sets the bytes making out the class ID.
Params:
  • bytes – The bytes making out the class ID in big-endian format. They are copied without their order being changed.
/** * Sets the bytes making out the class ID. * * @param bytes The bytes making out the class ID in big-endian format. They * are copied without their order being changed. */
public void setBytes(final byte[] bytes) { System.arraycopy(bytes, 0, this.bytes, 0, LENGTH); }
Reads the class ID's value from a byte array by turning little-endian into big-endian.
Params:
  • src – The byte array to read from
  • offset – The offset within the src byte array
Returns:A byte array containing the class ID.
/** * Reads the class ID's value from a byte array by turning little-endian into big-endian. * * @param src The byte array to read from * @param offset The offset within the {@code src} byte array * @return A byte array containing the class ID. */
public byte[] read(final byte[] src, final int offset) { /* Read double word. */ bytes[0] = src[3 + offset]; bytes[1] = src[2 + offset]; bytes[2] = src[1 + offset]; bytes[3] = src[0 + offset]; /* Read first word. */ bytes[4] = src[5 + offset]; bytes[5] = src[4 + offset]; /* Read second word. */ bytes[6] = src[7 + offset]; bytes[7] = src[6 + offset]; /* Read 8 bytes. */ System.arraycopy(src, 8 + offset, bytes, 8, 8); return bytes; }
Writes the class ID to a byte array in the little-endian format.
Params:
  • dst – The byte array to write to.
  • offset – The offset within the dst byte array.
Throws:
  • ArrayStoreException – if there is not enough room for the class ID 16 bytes in the byte array after the offset position.
/** * Writes the class ID to a byte array in the little-endian format. * * @param dst The byte array to write to. * * @param offset The offset within the {@code dst} byte array. * * @exception ArrayStoreException if there is not enough room for the class * ID 16 bytes in the byte array after the {@code offset} position. */
public void write(final byte[] dst, final int offset) throws ArrayStoreException { /* Check array size: */ if (dst.length < LENGTH) { throw new ArrayStoreException ("Destination byte[] must have room for at least 16 bytes, " + "but has a length of only " + dst.length + "."); } /* Write double word. */ dst[0 + offset] = bytes[3]; dst[1 + offset] = bytes[2]; dst[2 + offset] = bytes[1]; dst[3 + offset] = bytes[0]; /* Write first word. */ dst[4 + offset] = bytes[5]; dst[5 + offset] = bytes[4]; /* Write second word. */ dst[6 + offset] = bytes[7]; dst[7 + offset] = bytes[6]; /* Write 8 bytes. */ System.arraycopy(bytes, 8, dst, 8 + offset, 8); }
Checks whether this ClassID is equal to another object.
Params:
  • o – the object to compare this ClassID with
Returns:true if the objects are equal, else false.
/** * Checks whether this {@code ClassID} is equal to another object. * * @param o the object to compare this {@code ClassID} with * @return {@code true} if the objects are equal, else {@code false}. */
@Override public boolean equals(final Object o) { return (o instanceof ClassID) && Arrays.equals(bytes, ((ClassID)o).bytes); }
Checks whether this ClassID is equal to another ClassID with inverted endianess, because there are apparently not only version 1 GUIDs (aka "network" with big-endian encoding), but also version 2 GUIDs (aka "native" with little-endian encoding) out there.
Params:
  • o – the object to compare this ClassID with
Returns:true if the objects are equal, else false.
/** * Checks whether this {@code ClassID} is equal to another ClassID with inverted endianess, * because there are apparently not only version 1 GUIDs (aka "network" with big-endian encoding), * but also version 2 GUIDs (aka "native" with little-endian encoding) out there. * * @param o the object to compare this {@code ClassID} with * @return {@code true} if the objects are equal, else {@code false}. */
public boolean equalsInverted(ClassID o) { return o.bytes[0] == bytes[3] && o.bytes[1] == bytes[2] && o.bytes[2] == bytes[1] && o.bytes[3] == bytes[0] && o.bytes[4] == bytes[5] && o.bytes[5] == bytes[4] && o.bytes[6] == bytes[7] && o.bytes[7] == bytes[6] && o.bytes[8] == bytes[8] && o.bytes[9] == bytes[9] && o.bytes[10] == bytes[10] && o.bytes[11] == bytes[11] && o.bytes[12] == bytes[12] && o.bytes[13] == bytes[13] && o.bytes[14] == bytes[14] && o.bytes[15] == bytes[15] ; }
See Also:
  • hashCode.hashCode()
/** * @see Object#hashCode() */
@Override public int hashCode() { return toString().hashCode(); }
Returns a human-readable representation of the Class ID in standard format "{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}".
Returns:String representation of the Class ID represented by this object.
/** * Returns a human-readable representation of the Class ID in standard * format {@code "{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}"}. * * @return String representation of the Class ID represented by this object. */
@Override public String toString() { StringBuilder sbClassId = new StringBuilder(38); sbClassId.append('{'); for (int i = 0; i < LENGTH; i++) { sbClassId.append(HexDump.toHex(bytes[i])); if (i == 3 || i == 5 || i == 7 || i == 9) { sbClassId.append('-'); } } sbClassId.append('}'); return sbClassId.toString(); } }