/* * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License, version 2 as published by the Free Software * Foundation. * * You should have received a copy of the GNU General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/gpl-2.0.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * 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. * * Copyright 2005 - 2008 Pentaho Corporation. All rights reserved. * */ package org.pentaho.platform.engine.services.solution; import java.util.Comparator; import org.pentaho.platform.util.StringUtil; /** * Class that compares solution paths used for sorting. It takes into account the path depth * and sorts the parent directories before than the children. * * @author dmoran * */ public class SolutionCompare implements Comparator { public int compare(final Object o1, final Object o2) { String str1 = o1.toString(); String str2 = o2.toString(); String str1Array[] = StringUtil.tokenStringToArray(str1, "/"); //$NON-NLS-1$ String str2Array[] = StringUtil.tokenStringToArray(str2, "/"); //$NON-NLS-1$ // If the solution paths are at the same depth, a straight compare will do if (str1Array.length == str2Array.length) { return (str1.compareToIgnoreCase(str2)); } // if the solution paths are un-even, just compare the path and not the Action Sequence int count = Math.min(str1Array.length, str2Array.length); for (int i = 0; i < count - 1; ++i) { int compare = str1Array[i].compareToIgnoreCase(str2Array[i]); if (compare != 0) { return (compare); } } // The shortest one comes first return (str1Array.length - str2Array.length); } }