MarkShieldInputStream.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.io.input;

  18. import java.io.ByteArrayInputStream;
  19. import java.io.IOException;
  20. import java.io.InputStream;

  21. /**
  22.  * This is an alternative to {@link ByteArrayInputStream}
  23.  * which removes the synchronization overhead for non-concurrent
  24.  * access; as such this class is not thread-safe.
  25.  *
  26.  * Proxy stream that prevents the underlying input stream from being marked/reset.
  27.  * <p>
  28.  * This class is typically used in cases where an input stream that supports
  29.  * marking needs to be passed to a component that wants to explicitly mark
  30.  * the stream, but it is not desirable to allow marking of the stream.
  31.  * </p>
  32.  *
  33.  * @since 2.8.0
  34.  */
  35. public class MarkShieldInputStream extends ProxyInputStream {

  36.     /**
  37.      * Constructs a proxy that shields the given input stream from being
  38.      * marked or rest.
  39.      *
  40.      * @param in underlying input stream
  41.      */
  42.     public MarkShieldInputStream(final InputStream in) {
  43.         super(in);
  44.     }

  45.     @SuppressWarnings("sync-override")
  46.     @Override
  47.     public void mark(final int readLimit) {
  48.         // no-op
  49.     }

  50.     @Override
  51.     public boolean markSupported() {
  52.         return false;
  53.     }

  54.     @SuppressWarnings("sync-override")
  55.     @Override
  56.     public void reset() throws IOException {
  57.         throw UnsupportedOperationExceptions.reset();
  58.     }
  59. }