blob: 808d7bc076057b020435f1f37f0023566e43e909 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.wizards.datatransfer;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.ui.internal.ide.IDEWorkbenchPlugin;
/**
* This class provides information regarding the structure and
* content of specified file system File objects.
*/
public class FileSystemStructureProvider implements IImportStructureProvider {
/**
* Holds a singleton instance of this class.
*/
public static final FileSystemStructureProvider INSTANCE = new FileSystemStructureProvider();
/**
* Creates an instance of <code>FileSystemStructureProvider</code>.
*/
private FileSystemStructureProvider() {
super();
}
@Override
public List getChildren(Object element) {
File folder = (File) element;
String[] children = folder.list();
int childrenLength = children == null ? 0 : children.length;
List result = new ArrayList(childrenLength);
for (int i = 0; i < childrenLength; i++) {
result.add(new File(folder, children[i]));
}
return result;
}
@Override
public InputStream getContents(Object element) {
try {
return new FileInputStream((File) element);
} catch (FileNotFoundException e) {
IDEWorkbenchPlugin.log(e.getLocalizedMessage(), e);
return null;
}
}
@Override
public String getFullPath(Object element) {
return ((File) element).getPath();
}
@Override
public String getLabel(Object element) {
//Get the name - if it is empty then return the path as it is a file root
File file = (File) element;
String name = file.getName();
if (name.isEmpty()) {
return file.getPath();
}
return name;
}
@Override
public boolean isFolder(Object element) {
return ((File) element).isDirectory();
}
}