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

xerces-2_12_0.samples.socket.io.WrappedInputStream Maven / Gradle / Ivy

Go to download

Xerces2 is the next generation of high performance, fully compliant XML parsers in the Apache Xerces family. This new version of Xerces introduces the Xerces Native Interface (XNI), a complete framework for building parser components and configurations that is extremely modular and easy to program. The Apache Xerces2 parser is the reference implementation of XNI but other parser components, configurations, and parsers can be written using the Xerces Native Interface. For complete design and implementation documents, refer to the XNI Manual. Xerces2 is a fully conforming XML Schema 1.0 processor. A partial experimental implementation of the XML Schema 1.1 Structures and Datatypes Working Drafts (December 2009) and an experimental implementation of the XML Schema Definition Language (XSD): Component Designators (SCD) Candidate Recommendation (January 2010) are provided for evaluation. For more information, refer to the XML Schema page. Xerces2 also provides a complete implementation of the Document Object Model Level 3 Core and Load/Save W3C Recommendations and provides a complete implementation of the XML Inclusions (XInclude) W3C Recommendation. It also provides support for OASIS XML Catalogs v1.1. Xerces2 is able to parse documents written according to the XML 1.1 Recommendation, except that it does not yet provide an option to enable normalization checking as described in section 2.13 of this specification. It also handles namespaces according to the XML Namespaces 1.1 Recommendation, and will correctly serialize XML 1.1 documents if the DOM level 3 load/save APIs are in use.

The newest version!
/*
 * 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 socket.io;

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

/**
 * This input stream works in conjunction with the WrappedOutputStream
 * to introduce a protocol for reading arbitrary length data in a
 * uniform way.
 * 

* Note: See the javadoc for WrappedOutputStream for * more information. * * @see WrappedOutputStream * * @author Andy Clark, IBM * * @version $Id$ */ public class WrappedInputStream extends FilterInputStream { // // Data // /** Bytes left on input stream for current packet. */ protected int fPacketCount; /** * Data input stream. This stream is used to input the block sizes * from the data stream that are written by the WrappedOutputStream. *

* Note: The data input stream is only used for * reading the byte count for performance reasons. We avoid the * method indirection for reading the byte data. */ protected DataInputStream fDataInputStream; /** To mark that the stream is "closed". */ protected boolean fClosed; // // Constructors // /** Constructs a wrapper for the given an input stream. */ public WrappedInputStream(InputStream stream) { super(stream); fDataInputStream = new DataInputStream(stream); } // (InputStream) // // InputStream methods // /** Reads a single byte. */ public int read() throws IOException { // ignore, if already closed if (fClosed) { return -1; } // read packet header if (fPacketCount == 0) { fPacketCount = fDataInputStream.readInt() & 0x7FFFFFFF; if (fPacketCount == 0) { fClosed = true; return -1; } } // read a byte from the packet fPacketCount--; return super.in.read(); } // read():int /** * Reads a block of bytes and returns the total number of bytes read. */ public int read(byte[] b, int offset, int length) throws IOException { // ignore, if already closed if (fClosed) { return -1; } // read packet header if (fPacketCount == 0) { fPacketCount = fDataInputStream.readInt() & 0x7FFFFFFF; if (fPacketCount == 0) { fClosed = true; return -1; } } // read bytes from packet if (length > fPacketCount) { length = fPacketCount; } int count = super.in.read(b, offset, length); if (count == -1) { // NOTE: This condition should not happen. The end of // the stream should always be designated by a // byte count header of 0. -Ac fClosed = true; return -1; } fPacketCount -= count; // return total bytes read return count; } // read(byte[],int,int):int /** Skips the specified number of bytes from the input stream. */ public long skip(long n) throws IOException { if (!fClosed) { // NOTE: This should be rewritten to be more efficient. -Ac for (long i = 0; i < n; i++) { int b = read(); if (b == -1) { return i + 1; } } return n; } return 0; } // skip(long):long /** * Closes the input stream. This method will search for the end of * the wrapped input, positioning the stream at after the end packet. *

* Note: This method does not close the underlying * input stream. */ public void close() throws IOException { if (!fClosed) { fClosed = true; do { super.in.skip(fPacketCount); fPacketCount = fDataInputStream.readInt() & 0x7FFFFFFF; } while (fPacketCount > 0); } } // close() } // class WrappedInputStream





© 2015 - 2025 Weber Informatics LLC | Privacy Policy