DirectoryFileComparator.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.io.comparator;

  18. import java.io.File;
  19. import java.io.Serializable;
  20. import java.util.Comparator;

  21. /**
  22.  * Compare two files using the {@link File#isDirectory()} method.
  23.  * <p>
  24.  * This comparator can be used to sort lists or arrays by directories and files.
  25.  * </p>
  26.  * <p>
  27.  * Example of sorting a list of files/directories using the {@link #DIRECTORY_COMPARATOR} singleton instance:
  28.  * </p>
  29.  *
  30.  * <pre>
  31.  *       List&lt;File&gt; list = ...
  32.  *       ((AbstractFileComparator) DirectoryFileComparator.DIRECTORY_COMPARATOR).sort(list);
  33.  * </pre>
  34.  * <p>
  35.  * Example of doing a <em>reverse</em> sort of an array of files/directories using the {@link #DIRECTORY_REVERSE}
  36.  * singleton instance:
  37.  * </p>
  38.  *
  39.  * <pre>
  40.  *       File[] array = ...
  41.  *       ((AbstractFileComparator) DirectoryFileComparator.DIRECTORY_REVERSE).sort(array);
  42.  * </pre>
  43.  * <h2>Deprecating Serialization</h2>
  44.  * <p>
  45.  * <em>Serialization is deprecated and will be removed in 3.0.</em>
  46.  * </p>
  47.  *
  48.  * @since 2.0
  49.  */
  50. public class DirectoryFileComparator extends AbstractFileComparator implements Serializable {

  51.     private static final int TYPE_FILE = 2;

  52.     private static final int TYPE_DIRECTORY = 1;

  53.     private static final long serialVersionUID = 296132640160964395L;

  54.     /** Singleton default comparator instance */
  55.     public static final Comparator<File> DIRECTORY_COMPARATOR = new DirectoryFileComparator();

  56.     /** Singleton reverse default comparator instance */
  57.     public static final Comparator<File> DIRECTORY_REVERSE = new ReverseFileComparator(DIRECTORY_COMPARATOR);

  58.     /**
  59.      * Construct a new instance.
  60.      */
  61.     public DirectoryFileComparator() {
  62.         // empty
  63.     }

  64.     /**
  65.      * Compares the two files using the {@link File#isDirectory()} method.
  66.      *
  67.      * @param file1 The first file to compare.
  68.      * @param file2 The second file to compare.
  69.      * @return the result of calling file1's {@link File#compareTo(File)} with file2 as the parameter.
  70.      */
  71.     @Override
  72.     public int compare(final File file1, final File file2) {
  73.         return getType(file1) - getType(file2);
  74.     }

  75.     /**
  76.      * Converts type to numeric value.
  77.      *
  78.      * @param file The file.
  79.      * @return 1 for directories and 2 for files.
  80.      */
  81.     private int getType(final File file) {
  82.         return file.isDirectory() ? TYPE_DIRECTORY : TYPE_FILE;
  83.     }
  84. }