com.mchange.io.impl.DirectoryDescendingFileFinderImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.mchange-commons-java
Show all versions of org.apache.servicemix.bundles.mchange-commons-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
/*
* Distributed as part of mchange-commons-java 0.2.11
*
* Copyright (C) 2015 Machinery For Change, Inc.
*
* Author: Steve Waldman
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of EITHER:
*
* 1) The GNU Lesser General Public License (LGPL), version 2.1, as
* published by the Free Software Foundation
*
* OR
*
* 2) The Eclipse Public License (EPL), version 1.0
*
* You may choose which license to accept if you wish to redistribute
* or modify this work. You may offer derivatives of this work
* under the license you have chosen, or you may provide the same
* choice of license which you have been offered here.
*
* This software 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.
*
* You should have received copies of both LGPL v2.1 and EPL v1.0
* along with this software; see the files LICENSE-EPL and LICENSE-LGPL.
* If not, the text of these licenses are currently available at
*
* LGPL v2.1: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
* EPL v1.0: http://www.eclipse.org/org/documents/epl-v10.php
*
*/
package com.mchange.io.impl;
import java.io.*;
import java.util.*;
import com.mchange.io.*;
/**
* @deprecated use com.mchange.v2.io.DirectoryDescentUtils
*/
public class DirectoryDescendingFileFinderImpl implements IOEnumeration, FileEnumeration
{
private final static Object dummy = new Object();
Hashtable markedDirex = new Hashtable();
Stack direx = new Stack();
Stack files = new Stack();
FilenameFilter filter;
boolean canonical;
public DirectoryDescendingFileFinderImpl(File root, FilenameFilter filter, boolean canonical)
throws IOException
{
if (!root.isDirectory())
throw new IllegalArgumentException(root.getName() + " is not a directory.");
this.filter = filter;
this.canonical = canonical;
blossomDirectory(root);
while (files.empty() && !direx.empty())
blossomDirectory((File) direx.pop());
}
public DirectoryDescendingFileFinderImpl(File root) throws IOException
{this(root, null, false);}
public boolean hasMoreFiles()
{return !files.empty();}
public File nextFile() throws IOException
{
if (files.empty()) throw new NoSuchElementException();
File out = (File) files.pop();
while (files.empty() && !direx.empty())
blossomDirectory((File) direx.pop());
return out;
}
public boolean hasMoreElements()
{return hasMoreFiles();}
public Object nextElement() throws IOException
{return nextFile();}
private void blossomDirectory(File dir) throws IOException
{
//System.out.println(">> blossomDirectory() on " + dir.getPath());
String canonicalPath = dir.getCanonicalPath();
String[] listing = (filter == null ? dir.list() : dir.list(filter));
for (int i = listing.length; --i >= 0; )
{
//System.out.println(">> listing: " + listing[i]);
if (filter == null || filter.accept(dir, listing[i]))
{
String name = (canonical ? canonicalPath : dir.getPath()) + File.separator + listing[i];
File file = new File(name);
//System.out.println(">> parent: " + dir.getName());
//System.out.println(">> created file: " + file.getPath());
if (file.isFile()) files.push(file);
else //dir
{
if (!markedDirex.containsKey(file.getCanonicalPath()))
direx.push(file);
}
}
}
markedDirex.put(canonicalPath, dummy);
}
//the only difference between this and blossomDirectory()
//above is that the root directory path is not prepended to
//files and directories... we want the files outputted to
//be specified relative to the root in the constructor.
// private void blossomRoot(File root) throws IOException
// {
// String canonicalPath = root.getCanonicalPath();
// String[] listing = (filter == null ? root.list() : root.list(filter));
// for (int i = listing.length; --i >= 0; )
// {
// if (filter == null || filter.accept(root, listing[i]))
// {
// File file = new File(listing[i]); //here is the difference
// if (file.isFile()) files.push(file);
// else //dir
// {
// if (!markedDirex.containsKey(file.getCanonicalPath()))
// direx.push(file);
// }
// }
// }
// markedDirex.put(canonicalPath, dummy);
// }
public static void main(String[] argv)
{
try
{
File root = new File(argv[0]);
FileEnumeration files = new DirectoryDescendingFileFinderImpl(root);
while (files.hasMoreFiles())
System.out.println(files.nextFile().getAbsolutePath());
}
catch (Exception e)
{e.printStackTrace();}
}
}