All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.aries.util.filesystem.impl.DirectoryImpl Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIESOR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package org.apache.aries.util.filesystem.impl;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import org.apache.aries.util.filesystem.ICloseableDirectory;
import org.apache.aries.util.filesystem.IDirectory;
import org.apache.aries.util.filesystem.IFile;

/**
 * An IDirectory representing a java.io.File whose isDirectory method returns true.
 */
public class DirectoryImpl extends FileImpl implements IDirectory
{
  /**
   * @param dir      the file to represent.
   * @param rootFile the file that represents the FS root.
   */
  public DirectoryImpl(File dir, File rootFile)
  {
    super(dir, rootFile);
  }

  public IFile getFile(String name)
  {
    File desiredFile = new File(file, name);
    IFile result = null;
    
    if (desiredFile.exists()) 
    {
        if(!desiredFile.isDirectory())
          result = new FileImpl(desiredFile, rootDirFile);
        else
          result = new DirectoryImpl(desiredFile, rootDirFile);
    }
    
    return result;
  }

  public boolean isRoot()
  {
    boolean result = (rootDirFile == file);
    return result;
  }

  public List listFiles()
  {
    List files = new ArrayList();
    File[] filesInDir = file.listFiles();
    if (filesInDir != null) {
      for (File f : filesInDir) {
        if (f.isFile()) {
          files.add(new FileImpl(f, rootDirFile));
        } else if (f.isDirectory()) {
          files.add(new DirectoryImpl(f, rootDirFile));
        }
      }
    }
    return files;
  }
  
  public List listAllFiles()
  {
    List files = new ArrayList();
    File[] filesInDir = file.listFiles();
    if (filesInDir != null) {
      for (File f : filesInDir) {
        if (f.isFile()) {
          files.add(new FileImpl(f, rootDirFile));
        } else if (f.isDirectory()) {
          IDirectory subdir = new DirectoryImpl(f, rootDirFile);
          files.add(subdir);
          files.addAll(subdir.listAllFiles());
        }
      }
    }
    return files;
  }
  
  public Iterator iterator()
  {
	return listFiles().iterator();
  }

  public IDirectory getParent()
  {
    return isRoot() ? null : super.getParent();
  }

  public IDirectory convert()
  {
    return this;
  }

  public InputStream open() throws IOException
  {
    throw new UnsupportedOperationException();
  }

  public long getLastModified()
  {
    long result = super.getLastModified();
    for (IFile aFile : this) {
      long tmpLastModified = aFile.getLastModified();
      
      if (tmpLastModified > result) result = tmpLastModified;
    }
    return result;
  }

  public ICloseableDirectory toCloseable() {
	return new CloseableDirectory(this);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy