/* * eXist Open Source Native XML Database * Copyright (C) 2001-2012 The eXist Project * http://exist-db.org * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program 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. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * $Id$ */ package org.exist.client; import java.io.File; import java.util.Iterator; import java.util.List; import javax.swing.filechooser.FileFilter; import org.exist.util.MimeTable; /** * A FileFilter that filters for files based on their extension * Uses the filename extensions defined in mime-types.xml * * Java 6 API has a similar FileNameExtensionFilter */ public class MimeTypeFileFilter extends FileFilter { private String description = null; private List<String> extensions = null; public MimeTypeFileFilter(String mimeType) { description = MimeTable.getInstance().getContentType(mimeType).getDescription(); extensions = MimeTable.getInstance().getAllExtensions(mimeType); } @Override public boolean accept(File file) { if(file.isDirectory()){ //permit directories to be viewed return true; } final int extensionOffset = file.getName().lastIndexOf('.'); //do-not allow files without an extension if(extensionOffset == -1) { return false; } //check the extension is that of a file as defined in mime-types.xml final String fileExtension = file.getName().substring(extensionOffset).toLowerCase(); for(final String extension : extensions) { if(fileExtension.equals(extension)) { return true; } } return false; } @Override public String getDescription() { final StringBuilder description = new StringBuilder(this.description); description.append(" ("); for(final Iterator<String> itExtensions = extensions.iterator(); itExtensions.hasNext();) { description.append(itExtensions.next()); if(itExtensions.hasNext()) { description.append(' '); } } description.append(")"); return description.toString(); } }