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

com.adobe.agl.impl.StringPrepDataReader Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
/*
 ******************************************************************************
 * Copyright (C) 2003-2008, International Business Machines Corporation and   *
 * others. All Rights Reserved.                                               *
 ******************************************************************************
 *
 * Created on May 2, 2003
 *
 * To change the template for this generated file go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
package com.adobe.agl.impl;

/*
 * File: StringPrepDataReader.java
 * ************************************************************************
 *
 * ADOBE CONFIDENTIAL
 * ___________________
 *
 *  Copyright 2012 Adobe Systems Incorporated
 *  All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Adobe Systems Incorporated and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Adobe Systems Incorporated and its
 * suppliers and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe Systems Incorporated.
 **************************************************************************/

import java.io.DataInputStream;
import java.io.IOException;
import java.io.InputStream;



/**
 * @author ram
 *
 * To change the template for this generated type comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
public final class StringPrepDataReader implements ICUBinary.Authenticate {
    private final static boolean debug = ICUDebug.enabled("NormalizerDataReader");
    
   /**
    * 

private constructor.

* @param inputStream ICU uprop.dat file input stream * @exception IOException throw if data file fails authentication */ public StringPrepDataReader(InputStream inputStream) throws IOException{ if(debug) System.out.println("Bytes in inputStream " + inputStream.available()); unicodeVersion = ICUBinary.readHeader(inputStream, DATA_FORMAT_ID, this); if(debug) System.out.println("Bytes left in inputStream " +inputStream.available()); dataInputStream = new DataInputStream(inputStream); if(debug) System.out.println("Bytes left in dataInputStream " +dataInputStream.available()); } public void read(byte[] idnaBytes, char[] mappingTable) throws IOException{ //Read the bytes that make up the idnaTrie dataInputStream.readFully(idnaBytes); //Read the extra data for(int i=0;i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy