Package org.nfctools.tags

Source Code of org.nfctools.tags.TagInputStream

/**
* Copyright 2011-2012 Adrian Stabiszewski, as@nfctools.org
*
* Licensed 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.nfctools.tags;

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

import org.nfctools.NfcException;
import org.nfctools.mf.block.MfBlock;
import org.nfctools.mf.ul.MemoryLayout;
import org.nfctools.mf.ul.MfUlReaderWriter;

public class TagInputStream extends InputStream {

  private MemoryLayout memoryLayout;
  private MfUlReaderWriter readerWriter;

  private byte[] currentBlock;
  private int currentPage;
  private int currentByte;

  public TagInputStream(MemoryLayout memoryLayout, MfUlReaderWriter readerWriter) {
    this.memoryLayout = memoryLayout;
    this.readerWriter = readerWriter;
    currentPage = memoryLayout.getFirstDataPage();
  }

  private void readNextBlock() {
    try {
      MfBlock[] blocks = readerWriter.readBlock(currentPage, 1);
      currentBlock = blocks[0].getData();
      currentPage++;
      currentByte = 0;
    }
    catch (IOException e) {
      new NfcException(e);
    }
  }

  @Override
  public int available() throws IOException {
    if (currentBlock == null) {
      return memoryLayout.getMaxSize();
    }
    else {
      return (memoryLayout.getLastDataPage() - currentPage + 1) * memoryLayout.getBytesPerPage()
          + (memoryLayout.getBytesPerPage() - currentByte);
    }
  }

  @Override
  public int read() throws IOException {
    if (currentBlock == null || currentByte >= currentBlock.length) {
      if (available() > 0)
        readNextBlock();
      else
        return -1;
    }

    byte returnByte = currentBlock[currentByte++];
    return returnByte & 0xFF;
  }
}
TOP

Related Classes of org.nfctools.tags.TagInputStream

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.