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

com.upokecenter.util.DataIO Maven / Gradle / Ivy

Go to download

A Java library that implements character encodings used in Web pages and email.

There is a newer version: 0.6.0
Show newest version
package com.upokecenter.util;
/*
Written by Peter O. in 2014.
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
If you like this, you should donate to Peter O.
at: http://peteroupc.github.io/
 */

import java.io.*;

    /**
     * Convenience class that contains static methods for wrapping byte arrays and
     * streams into byte readers and byte writers.
     */
  public final class DataIO {
private DataIO() {
}
    /**
     * Wraps a byte array into a byte reader. The reader will start at the
     * beginning of the byte array. 

In the .NET implementation, this * method is implemented as an extension method to any byte array object * and can be called as follows: bytes.ToByteReader(). If the * object's class already has a ToByteReader method with the same * parameters, that method takes precedence over this extension * method.

* @param bytes The byte array to wrap. * @return A byte reader wrapping the byte array. * @throws java.lang.NullPointerException The parameter {@code bytes} is null. */ public static IReader ToReader(byte[] bytes) { if (bytes == null) { throw new NullPointerException("bytes"); } return new ByteArrayTransform(bytes, 0, bytes.length); } /** * Wraps a portion of a byte array into a byte reader object.

In the .NET * implementation, this method is implemented as an extension method to * any byte array object and can be called as follows: * bytes.ToByteReader(offset, length). If the object's class * already has a ToByteReader method with the same parameters, that * method takes precedence over this extension method.

* @param bytes The byte array to wrap. * @param offset A zero-based index showing where the desired portion of * "bytes" begins. * @param length The length, in bytes, of the desired portion of "bytes" (but * not more than "bytes" 's length). * @return A byte reader wrapping the byte array. * @throws java.lang.NullPointerException The parameter {@code bytes} is null. * @throws IllegalArgumentException Either {@code offset} or {@code length} is * less than 0 or greater than {@code bytes} 's length, or {@code bytes} * ' s length minus {@code offset} is less than {@code length}. */ public static IReader ToReader( byte[] bytes, int offset, int length) { if (bytes == null) { throw new NullPointerException("bytes"); } if (offset < 0) { throw new IllegalArgumentException("offset (" + offset + ") is less than 0"); } if (offset > bytes.length) { throw new IllegalArgumentException("offset (" + offset + ") is more than " + bytes.length); } if (length < 0) { throw new IllegalArgumentException("length (" + length + ") is less than 0"); } if (length > bytes.length) { throw new IllegalArgumentException("length (" + length + ") is more than " + bytes.length); } if (bytes.length - offset < length) { throw new IllegalArgumentException("bytes's length minus " + offset + " (" + (bytes.length - offset) + ") is less than " + length); } return new ByteArrayTransform(bytes, offset, length); } /** * Wraps an input stream into a reader object. If an IOException is thrown by * the input stream, the reader object throws InvalidOperationException * instead.

In the .NET implementation, this method is implemented as * an extension method to any object implementing InputStream and can be * called as follows: input.ToByteReader(). If the object's class * already has a ToByteReader method with the same parameters, that * method takes precedence over this extension method.

* @param input The input stream to wrap. * @return A byte reader wrapping the input stream. * @throws java.lang.NullPointerException The parameter {@code input} is null. */ public static IReader ToReader(InputStream input) { if (input == null) { throw new NullPointerException("input"); } return new WrappedStream(input); } /** * Not documented yet.

In the .NET implementation, this method is * implemented as an extension method to any object implementing byte[] * and can be called as follows: bytes.ToByteReader(offset, * length). If the object's class already has a ToByteReader method * with the same parameters, that method takes precedence over this * extension method.

* @param bytes The parameter {@code bytes} is not documented yet. * @param offset A zero-based index showing where the desired portion of {@code * bytes} begins. * @param length The length, in bytes, of the desired portion of {@code bytes} * (but not more than {@code bytes} 's length). * @return An IByteReader object. * @throws IllegalArgumentException Either {@code offset} or {@code length} is * less than 0 or greater than {@code bytes} 's length, or {@code bytes} * ' s length minus {@code offset} is less than {@code length}. * @throws java.lang.NullPointerException The parameter {@code bytes} is null. * @deprecated Use ToReader instead. */ @Deprecated public static IByteReader ToByteReader( byte[] bytes, int offset, int length) { return (IByteReader)ToReader(bytes, offset, length); } /** * Not documented yet.

In the .NET implementation, this method is * implemented as an extension method to any object implementing InputStream * and can be called as follows: input.ToByteReader(). If the * object's class already has a ToByteReader method with the same * parameters, that method takes precedence over this extension * method.

* @param input The parameter {@code input} is not documented yet. * @return An IByteReader object. * @deprecated Use ToReader instead. */ @Deprecated public static IByteReader ToByteReader(InputStream input) { return (IByteReader)ToReader(input); } /** * Not documented yet.

In the .NET implementation, this method is * implemented as an extension method to any object implementing byte[] * and can be called as follows: bytes.ToByteReader(). If the * object's class already has a ToByteReader method with the same * parameters, that method takes precedence over this extension * method.

* @param bytes The parameter {@code bytes} is not documented yet. * @return An IByteReader object. * @deprecated Use ToReader instead. */ @Deprecated public static IByteReader ToByteReader(byte[] bytes) { return (IByteReader)ToReader(bytes); } /** * Wraps an output stream into a writer object. If an IOException is thrown by * the input stream, the writer object throws InvalidOperationException * instead.

In the .NET implementation, this method is implemented as * an extension method to any object implementing InputStream and can be * called as follows: output.ToWriter(). If the object's class * already has a ToWriter method with the same parameters, that method * takes precedence over this extension method.

* @param output Output stream to wrap. * @return A byte writer that wraps the given output stream. * @throws java.lang.NullPointerException The parameter {@code output} is null. */ public static IWriter ToWriter(OutputStream output) { if (output == null) { throw new NullPointerException("output"); } return new WrappedOutputStream(output); } /** * Wraps a byte writer (one that only implements a ReadByte method) to a writer * (one that also implements a three-parameter Read method.)

In the * .NET implementation, this method is implemented as an extension * method to any object implementing IByteWriter and can be called as * follows: output.ToWriter(). If the object's class already has * a ToWriter method with the same parameters, that method takes * precedence over this extension method.

* @param output A byte stream. * @return A writer that wraps the given stream. * @throws java.lang.NullPointerException The parameter {@code output} is null. */ public static IWriter ToWriter(IByteWriter output) { if (output == null) { throw new NullPointerException("output"); } return new WrappedOutputStreamFromByteWriter(output); } private static final class ByteArrayTransform implements IReader { private final byte[] bytes; private final int endOffset; private int offset; public ByteArrayTransform(byte[] bytes, int offset, int length) { this.bytes = bytes; this.offset = offset; this.endOffset = offset + length; } /** * This is an internal method. * @return A 32-bit signed integer. */ public int read() { if (this.offset >= this.endOffset) { return -1; } int b = this.bytes[this.offset]; ++this.offset; return ((int)b) & 0xff; } /** * This is an internal method. * @param bytes The parameter {@code bytes} is not documented yet. * @param offset A zero-based index showing where the desired portion of {@code * bytes} begins. * @param length The length, in bytes, of the desired portion of {@code bytes} * (but not more than {@code bytes} 's length). * @return A 32-bit signed integer. * @throws java.lang.NullPointerException The parameter {@code bytes} is null. * @throws IllegalArgumentException Either {@code offset} or {@code length} is * less than 0 or greater than {@code bytes} 's length, or {@code bytes} * ' s length minus {@code offset} is less than {@code length}. */ public int Read(byte[] bytes, int offset, int length) { if (bytes == null) { throw new NullPointerException("bytes"); } if (offset < 0) { throw new IllegalArgumentException("offset (" + offset + ") is less than 0"); } if (offset > bytes.length) { throw new IllegalArgumentException("offset (" + offset + ") is more than " + bytes.length); } if (length < 0) { throw new IllegalArgumentException("length (" + length + ") is less than 0"); } if (length > bytes.length) { throw new IllegalArgumentException("length (" + length + ") is more than " + bytes.length); } if (bytes.length - offset < length) { throw new IllegalArgumentException("bytes's length minus " + offset + " (" + (bytes.length - offset) + ") is less than " + length); } int count = 0; for (int i = 0; i < length; ++i) { int c = this.read(); if (c == -1) { break; } bytes[offset] = (byte)(c & 0xff); ++count; ++offset; } return count; } } private static final class WrappedOutputStream implements IWriter { private final OutputStream output; public WrappedOutputStream(OutputStream output) { this.output = output; } /** * This is an internal method. * @param byteValue The parameter {@code byteValue} is a 32-bit signed integer. */ public void write(int byteValue) { try { this.output.write((byte)byteValue); } catch (IOException ex) { throw new IllegalStateException(ex.getMessage(), ex); } } /** * This is an internal method. * @param bytes A byte array. * @param offset A zero-based index showing where the desired portion of * "bytes" begins. * @param length The length, in bytes, of the desired portion of "bytes" (but * not more than "bytes" 's length). * @throws IllegalArgumentException Either {@code offset} or {@code length} is * less than 0 or greater than {@code bytes} 's length, or {@code bytes} * ' s length minus {@code offset} is less than {@code length}. * @throws java.lang.NullPointerException The parameter {@code bytes} is null. */ public void write(byte[] bytes, int offset, int length) { try { this.output.write(bytes, offset, length); } catch (IOException ex) { throw new IllegalStateException(ex.getMessage(), ex); } } } private static final class WrappedOutputStreamFromByteWriter implements IWriter { private final IByteWriter output; public WrappedOutputStreamFromByteWriter(IByteWriter output) { this.output = output; } /** * This is an internal method. * @param byteValue The parameter {@code byteValue} is a 32-bit signed integer. */ public void write(int byteValue) { this.output.write((byte)byteValue); } /** * This is an internal method. * @param bytes A byte array. * @param offset A zero-based index showing where the desired portion of * "bytes" begins. * @param length The length, in bytes, of the desired portion of "bytes" (but * not more than "bytes" 's length). * @throws java.lang.NullPointerException The parameter {@code bytes} is null. * @throws IllegalArgumentException Either {@code offset} or {@code length} is * less than 0 or greater than {@code bytes} 's length, or {@code bytes} * ' s length minus {@code offset} is less than {@code length}. */ public void write(byte[] bytes, int offset, int length) { if (bytes == null) { throw new NullPointerException("bytes"); } if (offset < 0) { throw new IllegalArgumentException("offset (" + offset + ") is less than 0"); } if (offset > bytes.length) { throw new IllegalArgumentException("offset (" + offset + ") is more than " + bytes.length); } if (length < 0) { throw new IllegalArgumentException("length (" + length + ") is less than 0"); } if (length > bytes.length) { throw new IllegalArgumentException("length (" + length + ") is more than " + bytes.length); } if (bytes.length - offset < length) { throw new IllegalArgumentException("bytes's length minus " + offset + " (" + (bytes.length - offset) + ") is less than " + length); } for (int i = 0; i < length; ++i) { this.output.write((byte)bytes[i]); } } } private static final class WrappedStream implements IReader { private final InputStream stream; public WrappedStream(InputStream stream) { this.stream = stream; } /** * This is an internal method. * @return A 32-bit signed integer. */ public int read() { try { return this.stream.read(); } catch (IOException ex) { throw new IllegalStateException(ex.getMessage(), ex); } } public int Read(byte[] bytes, int offset, int length) { try { return Math.max(0, this.stream.read(bytes, offset, length)); } catch (IOException ex) { throw new IllegalStateException(ex.getMessage(), ex); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy