/* * This program 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 2 * of the License, or (at your option) any later version. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * * For information about the authors of this project Have a look * at the AUTHORS file in the root of this project. */ package net.sourceforge.fullsync.rules.filefilter; import net.sourceforge.fullsync.fs.File; import net.sourceforge.fullsync.rules.filefilter.values.OperandValue; import net.sourceforge.fullsync.rules.filefilter.values.SizeValue; public class FileSizeFileFilterRule extends FileFilterRule { public static final String TYPE_NAME = "File size"; public static final int OP_IS = 0; public static final int OP_ISNT = 1; public static final int OP_IS_GREATER_THAN = 2; public static final int OP_IS_LESS_THAN = 3; private static final long serialVersionUID = 2L; private static final String[] allOperators = new String[] { "is", "isn't", "is greater than", "is less than" }; private SizeValue size; private int op; @Override public String getRuleType() { return TYPE_NAME; } public static String[] getAllOperators() { return allOperators; } public FileSizeFileFilterRule(SizeValue size, int operator) { this.size = size; this.op = operator; } @Override public int getOperator() { return op; } @Override public String getOperatorName() { return allOperators[op]; } @Override public OperandValue getValue() { return size; } @Override public boolean match(File file) throws FilterRuleNotAppliableException { long filesize = file.getSize(); if (-1 == filesize) { throw new FilterRuleNotAppliableException("The file doesn't have any size attribute"); } switch (op) { case OP_IS: return filesize == size.getBytes(); case OP_ISNT: return filesize != size.getBytes(); case OP_IS_GREATER_THAN: return filesize > size.getBytes(); case OP_IS_LESS_THAN: return filesize < size.getBytes(); } return false; } @Override public String toString() { StringBuilder buff = new StringBuilder(30); buff.append("file size "); buff.append(allOperators[op]); buff.append(" '"); buff.append(size.toString()); buff.append("'"); return buff.toString(); } }