hadoop ByteBufferInputStream 源码

  • 2022-10-20
  • 浏览 (321)

haddop ByteBufferInputStream 代码

文件路径:/hadoop-cloud-storage-project/hadoop-cos/src/main/java/org/apache/hadoop/fs/cosn/ByteBufferInputStream.java

/**
 * 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
 * <p>
 * http://www.apache.org/licenses/LICENSE-2.0
 * <p>
 * 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.hadoop.fs.cosn;

import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteBuffer;
import java.nio.InvalidMarkException;

/**
 * The input stream class is used for buffered files.
 * The purpose of providing this class is to optimize buffer read performance.
 */
public class ByteBufferInputStream extends InputStream {
  private ByteBuffer byteBuffer;
  private boolean isClosed;

  public ByteBufferInputStream(ByteBuffer byteBuffer) throws IOException {
    if (null == byteBuffer) {
      throw new IOException("byte buffer is null");
    }
    this.byteBuffer = byteBuffer;
    this.isClosed = false;
  }

  @Override
  public int read() throws IOException {
    if (null == this.byteBuffer) {
      throw new IOException("this byte buffer for InputStream is null");
    }
    if (!this.byteBuffer.hasRemaining()) {
      return -1;
    }
    return this.byteBuffer.get() & 0xFF;
  }

  @Override
  public synchronized void mark(int readLimit) {
    if (!this.markSupported()) {
      return;
    }
    this.byteBuffer.mark();
    // Parameter readLimit is ignored
  }

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

  @Override
  public synchronized void reset() throws IOException {
    if (this.isClosed) {
      throw new IOException("Closed in InputStream");
    }
    try {
      this.byteBuffer.reset();
    } catch (InvalidMarkException e) {
      throw new IOException("Invalid mark");
    }
  }

  @Override
  public int available() {
    return this.byteBuffer.remaining();
  }

  @Override
  public void close() {
    this.byteBuffer.rewind();
    this.byteBuffer = null;
    this.isClosed = true;
  }
}

相关信息

hadoop 源码目录

相关文章

hadoop BufferPool 源码

hadoop ByteBufferOutputStream 源码

hadoop ByteBufferWrapper 源码

hadoop Constants 源码

hadoop CosN 源码

hadoop CosNConfigKeys 源码

hadoop CosNCopyFileContext 源码

hadoop CosNCopyFileTask 源码

hadoop CosNFileReadTask 源码

hadoop CosNFileSystem 源码

0  赞