X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FJalviewFileView.java;h=a9fc7ed9de804bb4edab771f0d03afea5357c98f;hb=c6977851625f96831a95b45901aa1d84bd7774fe;hp=1aded9254a3087201b58ed41313e53fd941058e8;hpb=ad15cff29620f960119f80176f1fd443da9f6763;p=jalview.git diff --git a/src/jalview/io/JalviewFileView.java b/src/jalview/io/JalviewFileView.java index 1aded92..a9fc7ed 100755 --- a/src/jalview/io/JalviewFileView.java +++ b/src/jalview/io/JalviewFileView.java @@ -20,72 +20,114 @@ */ package jalview.io; -import java.io.*; -import java.util.*; +import java.util.Locale; -import javax.swing.*; -import javax.swing.filechooser.*; +import jalview.util.MessageManager; + +import java.io.File; +import java.net.URL; +import java.util.HashMap; +import java.util.Iterator; +import java.util.Map; + +import javax.swing.Icon; +import javax.swing.ImageIcon; +import javax.swing.filechooser.FileView; public class JalviewFileView extends FileView { - static Hashtable alignSuffix = new Hashtable(); + private static Map extensions; - static + private static Map icons; + + private void loadExtensions() { - // TODO: these names should come from the FormatAdapter lists for - // readable/writable extensions - alignSuffix.put("amsa", "AMSA file"); - alignSuffix.put("fasta", "Fasta file"); - alignSuffix.put("fa", "Fasta file"); - alignSuffix.put("fastq", "Fasta file"); - alignSuffix.put("mfa", "Fasta file"); - alignSuffix.put("blc", "BLC file"); - alignSuffix.put("msf", "MSF file"); - alignSuffix.put("pfam", "PFAM file"); - alignSuffix.put("aln", "Clustal file"); - alignSuffix.put("pir", "PIR file"); - alignSuffix.put("jar", "Jalview Project file (old)"); - alignSuffix.put("jvp", "Jalview Project file"); - alignSuffix.put("amsa", "AMSA file"); - alignSuffix.put("sto", "Stockholm File"); - alignSuffix.put("stk", "Stockholm File"); - alignSuffix.put("sto", "Stockholm File"); + extensions = new HashMap<>(); + for (FileFormatI ff : FileFormats.getInstance().getFormats()) + { + String desc = ff.getName() + " file"; + String exts = ff.getExtensions(); + for (String ext : exts.split(",")) + { + ext = ext.trim().toLowerCase(Locale.ROOT); + extensions.put(ext, desc + ("jar".equals(ext) ? " (old)" : "")); + } + } } + @Override public String getTypeDescription(File f) { String extension = getExtension(f); - String type = null; + + String type = getDescriptionForExtension(extension); if (extension != null) { - if (alignSuffix.containsKey(extension)) + if (extensions.containsKey(extension)) { - type = alignSuffix.get(extension).toString(); + type = extensions.get(extension).toString(); } } return type; } + private String getDescriptionForExtension(String extension) + { + synchronized (this) + { + if (extensions == null) + { + loadExtensions(); + } + } + return extensions.get(extension); + } + + @Override public Icon getIcon(File f) { String extension = getExtension(f); Icon icon = null; + String type = getDescriptionForExtension(extension); - if (extension != null) + if (type == null) { - if (alignSuffix.containsKey(extension)) + Iterator it = extensions.keySet().iterator(); + EXTENSION: while (it.hasNext()) { - icon = createImageIcon("/images/file.png"); + String ext = it.next(); + + // quick negative test + if (!f.getName().contains(ext)) + { + continue EXTENSION; + } + + BackupFilenameParts bfp = BackupFilenameParts + .currentBackupFilenameParts(f.getName(), ext, true); + if (bfp.isBackupFile()) + { + extension = ext; + type = getDescriptionForExtension(extension) + + MessageManager.getString("label.backup"); + break; + } } } + if (type != null) + { + icon = getImageIcon("/images/file.png"); + } + return icon; } - /* - * Get the extension of a file. + /** + * Returns the extension of a file (part of the name after the last period), + * in lower case, or null if the name ends in or does not include a period. */ public static String getExtension(File f) { @@ -95,28 +137,50 @@ public class JalviewFileView extends FileView if ((i > 0) && (i < (s.length() - 1))) { - ext = s.substring(i + 1).toLowerCase(); + ext = s.substring(i + 1).toLowerCase(Locale.ROOT); } return ext; } - /** Returns an ImageIcon, or null if the path was invalid. */ - protected static ImageIcon createImageIcon(String path) + /** + * Returns an ImageIcon, or null if the file was not found + * + * @param filePath + */ + protected ImageIcon getImageIcon(String filePath) { - java.net.URL imgURL = JalviewFileView.class.getResource(path); - - if (imgURL != null) + /* + * we reuse a single icon object per path here + */ + synchronized (this) { - return new ImageIcon(imgURL); + if (icons == null) + { + icons = new HashMap<>(); + } + if (!icons.containsKey(filePath)) + { + ImageIcon icon = null; + URL imgURL = JalviewFileView.class.getResource(filePath); + if (imgURL != null) + { + icon = new ImageIcon(imgURL); + } + else + { + System.err.println( + "JalviewFileView.createImageIcon: Couldn't find file: " + + filePath); + } + icons.put(filePath, icon); + } } - else - { - System.err - .println("JalviewFileView.createImageIcon: Couldn't find file: " - + path); - return null; - } + /* + * return the image from the table (which may be null if + * icon creation failed) + */ + return icons.get(filePath); } }