/* Copyright 2019-2022 Dmitry Isaenko This file is part of Konogonka. Konogonka is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Konogonka 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 General Public License for more details. You should have received a copy of the GNU General Public License along with Konogonka. If not, see . */ package konogonka.Controllers.XCI; import konogonka.Controllers.IRowModel; public class Hfs0RowModel implements IRowModel { private static int numberCnt = 0; public static void resetNumCnt(){ numberCnt = 0; } private final int number; private final String fileName; private final long fileSize; private final long fileOffset; private final long hashedRegionSize; private final boolean padding; private final String SHA256Hash; private boolean markForUpload; Hfs0RowModel(String fileName, long size, long offset, long hashedRegionSize, boolean padding, byte[] SHA256Hash){ this.markForUpload = false; this.fileName = fileName; this.fileOffset = offset; this.fileSize = size; this.hashedRegionSize = hashedRegionSize; this.padding = padding; StringBuilder sb = new StringBuilder(); for (byte b: SHA256Hash) sb.append(String.format("%02x", b)); this.SHA256Hash = sb.toString(); this.number = numberCnt++; } // Model methods start public int getNumber(){ return number; } public String getFileName(){ return fileName; } public long getFileSize() { return fileSize; } public long getFileOffset() {return fileOffset; } public long getHashedRegionSize() { return hashedRegionSize; } public boolean isPadding() { return padding; } public String getSHA256Hash() { return SHA256Hash; } public boolean isMarkSelected() { return markForUpload; } // Model methods end public void setMarkSelected(boolean value){ markForUpload = value; } }