/* * $Id$ * * Copyright (C) 2003-2015 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package org.jnode.fs.hfsplus.tree; import org.jnode.fs.hfsplus.catalog.CatalogFile; import org.jnode.fs.hfsplus.catalog.CatalogFolder; import org.jnode.util.BigEndian; public class LeafRecord extends AbstractNodeRecord { private int type; public LeafRecord(final Key key, final byte[] recordData) { this.key = key; this.recordData = new byte[recordData.length]; System.arraycopy(recordData, 0, this.recordData, 0, recordData.length); type = BigEndian.getInt16(this.recordData, 0); } public LeafRecord(final Key key, final byte[] nodeData, final int offset, final int recordDataSize) { this.key = key; this.recordData = new byte[recordDataSize - key.getKeyLength()]; System.arraycopy(nodeData, offset + key.getKeyLength(), this.recordData, 0, this.recordData.length); type = BigEndian.getInt16(this.recordData, 0); } public final int getType() { return type; } @Override public final String toString() { return "Type: " + getTypeString() + "\tKey: " + getKey(); } public String getTypeString() { switch (type) { case CatalogFolder.RECORD_TYPE_FOLDER: return "Folder"; case CatalogFolder.RECORD_TYPE_FOLDER_THREAD: return "FolderThread"; case CatalogFile.RECORD_TYPE_FILE: return "File"; case CatalogFile.RECORD_TYPE_FILE_THREAD: return "FileThread"; } return "Unknown-" + type; } }