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

org.apache.activemq.artemis.utils.ActiveMQBufferInputStream Maven / Gradle / Ivy

There is a newer version: 2.36.0
Show 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 org.apache.activemq.artemis.utils;

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

import org.apache.activemq.artemis.api.core.ActiveMQBuffer;

/**
 * Used to send large messages
 */
public class ActiveMQBufferInputStream extends InputStream {

   /* (non-Javadoc)
    * @see java.io.InputStream#read()
    */
   // Constants -----------------------------------------------------

   // Attributes ----------------------------------------------------
   private ActiveMQBuffer bb;

   // Static --------------------------------------------------------

   // Constructors --------------------------------------------------

   // Public --------------------------------------------------------

   public ActiveMQBufferInputStream(final ActiveMQBuffer paramByteBuffer) {
      bb = paramByteBuffer;
   }

   @Override
   public int read() throws IOException {
      if (bb == null) {
         throw new IOException("read on a closed InputStream");
      }

      if (remainingBytes() == 0) {
         return -1;
      } else {
         return bb.readByte() & 0xFF;
      }
   }

   @Override
   public int read(final byte[] byteArray) throws IOException {
      if (bb == null) {
         throw new IOException("read on a closed InputStream");
      }

      return read(byteArray, 0, byteArray.length);
   }

   @Override
   public int read(final byte[] byteArray, final int off, final int len) throws IOException {
      if (bb == null) {
         throw new IOException("read on a closed InputStream");
      }

      if (byteArray == null) {
         throw new NullPointerException();
      }
      if (off < 0 || off > byteArray.length || len < 0 || off + len > byteArray.length || off + len < 0) {
         throw new IndexOutOfBoundsException();
      }
      if (len == 0) {
         return 0;
      }

      int size = Math.min(remainingBytes(), len);

      if (size == 0) {
         return -1;
      }

      bb.readBytes(byteArray, off, size);
      return size;
   }

   @Override
   public long skip(final long len) throws IOException {
      if (bb == null) {
         throw new IOException("skip on a closed InputStream");
      }

      if (len <= 0L) {
         return 0L;
      }

      int size = Math.min(remainingBytes(), (int) len);

      bb.skipBytes(size);

      return size;
   }

   @Override
   public int available() throws IOException {
      if (bb == null) {
         throw new IOException("available on a closed InputStream");
      }

      return remainingBytes();
   }

   @Override
   public void close() throws IOException {
      bb = null;
   }

   @Override
   public synchronized void mark(final int paramInt) {
   }

   @Override
   public synchronized void reset() throws IOException {
      throw new IOException("mark/reset not supported");
   }

   @Override
   public boolean markSupported() {
      return false;
   }

   // Package protected ---------------------------------------------

   // Protected -----------------------------------------------------

   // Private -------------------------------------------------------

   /**
    * @return
    */
   private int remainingBytes() {
      return bb.writerIndex() - bb.readerIndex();
   }

   // Inner classes -------------------------------------------------

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy