package net.pms.newgui; import java.io.File; import java.io.IOException; import java.text.MessageFormat; import java.util.Vector; import javax.swing.Icon; import javax.swing.JFileChooser; import javax.swing.UIManager; import javax.swing.filechooser.FileSystemView; import javax.swing.filechooser.FileView; /** * Fallback implementation of a FileSystemView. *

* Intendend usage:
* If the standard JFileChooser cannot open due to an exception, as described in http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6544857 *

* Example: * *

 *   File currentDir = ...;
 *   JFrame parentFrame = ...;
 *   JFileChooser chooser;
 *   try {
 *       chooser = new JFileChooser(currentDir);
 *   } catch (Exception e) {
 *       chooser = new JFileChooser(currentDir, new RestrictedFileSystemView());
 *   }
 *   int returnValue = chooser.showOpenDialog(parentFrame);
 * 
* * This FileSystemView only provides basic functionality (and probably a poor look & feel), but it can be a life saver * if otherwise no dialog pops up in your application. *

* The implementation does not use sun.awt.shell.* classes. * */ public class RestrictedFileSystemView extends FileSystemView { private static final String newFolderString = UIManager.getString("FileChooser.other.newFolder"); private File _defaultDirectory; public RestrictedFileSystemView() { this(null); } public RestrictedFileSystemView(File defaultDirectory) { _defaultDirectory = defaultDirectory; } /** * Determines if the given file is a root in the navigatable tree(s). * * @param f a File object representing a directory * @return true if f is a root in the navigatable tree. * @see #isFileSystemRoot */ public boolean isRoot(File f) { if (f == null || !f.isAbsolute()) { return false; } File[] roots = getRoots(); for (int i = 0; i < roots.length; i++) { if (roots[i].equals(f)) { return true; } } return false; } /** * Returns true if the file (directory) can be visited. Returns false if the directory cannot be traversed. * * @param f the File * @return true if the file/directory can be traversed, otherwise false * @see JFileChooser#isTraversable * @see FileView#isTraversable */ public Boolean isTraversable(File f) { return Boolean.valueOf(f.isDirectory()); } /** * Name of a file, directory, or folder as it would be displayed in a system file browser * * @param f a File object * @return the file name as it would be displayed by a native file chooser * @see JFileChooser#getName */ public String getSystemDisplayName(File f) { String name = null; if (f != null) { if (isRoot(f)) { name = f.getAbsolutePath(); } else { name = f.getName(); } } return name; } /** * Type description for a file, directory, or folder as it would be displayed in a system file browser. * * @param f a File object * @return the file type description as it would be displayed by a native file chooser or null if no native * information is available. * @see JFileChooser#getTypeDescription */ public String getSystemTypeDescription(File f) { return null; } /** * Icon for a file, directory, or folder as it would be displayed in a system file browser. * * @param f a File object * @return an icon as it would be displayed by a native file chooser, null if not available * @see JFileChooser#getIcon */ public Icon getSystemIcon(File f) { if (f != null) { return UIManager.getIcon(f.isDirectory() ? "FileView.directoryIcon" : "FileView.fileIcon"); } else { return null; } } /** * @param folder a File object repesenting a directory * @param file a File object * @return true if folder is a directory and contains * file. */ public boolean isParent(File folder, File file) { if (folder == null || file == null) { return false; } else { return folder.equals(file.getParentFile()); } } /** * @param parent a File object repesenting a directory * @param fileName a name of a file or folder which exists in parent * @return a File object. This is normally constructed with new * File(parent, fileName). */ public File getChild(File parent, String fileName) { return createFileObject(parent, fileName); } /** * Checks if f represents a real directory or file as opposed to a special folder such as * "Desktop". Used by UI classes to decide if a folder is selectable when doing directory choosing. * * @param f a File object * @return true if f is a real file or directory. */ public boolean isFileSystem(File f) { return true; } /** * Returns whether a file is hidden or not. */ public boolean isHiddenFile(File f) { return f.isHidden(); } /** * Is dir the root of a tree in the file system, such as a drive or partition. * * @param dir a File object representing a directory * @return true if f is a root of a filesystem * @see #isRoot */ public boolean isFileSystemRoot(File dir) { return isRoot(dir); } /** * Used by UI classes to decide whether to display a special icon for drives or partitions, e.g. a "hard disk" icon. * * The default implementation has no way of knowing, so always returns false. * * @param dir a directory * @return false always */ public boolean isDrive(File dir) { return false; } /** * Used by UI classes to decide whether to display a special icon for a floppy disk. Implies isDrive(dir). * * The default implementation has no way of knowing, so always returns false. * * @param dir a directory * @return false always */ public boolean isFloppyDrive(File dir) { return false; } /** * Used by UI classes to decide whether to display a special icon for a computer node, e.g. "My Computer" or a * network server. * * The default implementation has no way of knowing, so always returns false. * * @param dir a directory * @return false always */ public boolean isComputerNode(File dir) { return false; } /** * Returns all root partitions on this system. For example, on Windows, this would be the "Desktop" folder, while on * DOS this would be the A: through Z: drives. */ public File[] getRoots() { return File.listRoots(); } // Providing default implementations for the remaining methods // because most OS file systems will likely be able to use this // code. If a given OS can't, override these methods in its // implementation. public File getHomeDirectory() { return createFileObject(System.getProperty("user.home")); } /** * Return the user's default starting directory for the file chooser. * * @return a File object representing the default starting folder */ public File getDefaultDirectory() { if (_defaultDirectory == null) { try { File tempFile = File.createTempFile("filesystemview", "restricted"); tempFile.deleteOnExit(); _defaultDirectory = tempFile.getParentFile(); } catch (IOException e) { e.printStackTrace(); } } return _defaultDirectory; } /** * Returns a File object constructed in dir from the given filename. */ public File createFileObject(File dir, String filename) { if (dir == null) { return new File(filename); } else { return new File(dir, filename); } } /** * Returns a File object constructed from the given path string. */ public File createFileObject(String path) { File f = new File(path); if (isFileSystemRoot(f)) { f = createFileSystemRoot(f); } return f; } /** * Gets the list of shown (i.e. not hidden) files. */ public File[] getFiles(File dir, boolean useFileHiding) { Vector files = new Vector(); // add all files in dir File[] names; names = dir.listFiles(); File f; int nameCount = (names == null) ? 0 : names.length; for (int i = 0; i < nameCount; i++) { if (Thread.currentThread().isInterrupted()) { break; } f = names[i]; if (!useFileHiding || !isHiddenFile(f)) { files.addElement(f); } } return (File[]) files.toArray(new File[files.size()]); } /** * Returns the parent directory of dir. * * @param dir the File being queried * @return the parent directory of dir, or null if dir is * null */ public File getParentDirectory(File dir) { if (dir != null && dir.exists()) { File psf = dir.getParentFile(); if (psf != null) { if (isFileSystem(psf)) { File f = psf; if (f != null && !f.exists()) { // This could be a node under "Network Neighborhood". File ppsf = psf.getParentFile(); if (ppsf == null || !isFileSystem(ppsf)) { // We're mostly after the exists() override for windows below. f = createFileSystemRoot(f); } } return f; } else { return psf; } } } return null; } /** * Creates a new File object for f with correct behavior for a file system root * directory. * * @param f a File object representing a file system root directory, for example "/" on Unix or "C:\" * on Windows. * @return a new File object */ protected File createFileSystemRoot(File f) { return new FileSystemRoot(f); } static class FileSystemRoot extends File { private static final long serialVersionUID = -807847319198119832L; public FileSystemRoot(File f) { super(f, ""); } public FileSystemRoot(String s) { super(s); } public boolean isDirectory() { return true; } public String getName() { return getPath(); } } public File createNewFolder(File containingDir) throws IOException { if (containingDir == null) { throw new IOException("Containing directory is null:"); } File newFolder = null; newFolder = createFileObject(containingDir, newFolderString); int i = 2; while (newFolder.exists() && (i < 100)) { newFolder = createFileObject(containingDir, MessageFormat.format(newFolderString, new Object[]{new Integer(i)})); i++; } if (newFolder.exists()) { throw new IOException("Directory already exists:" + newFolder.getAbsolutePath()); } else { newFolder.mkdirs(); } return newFolder; } }