cb8a954f6b65c75818b582cc05fe20408c792411
[jalview.git] / src / jalview / ws / io / mime / MimeTypes.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8)
3  * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
10  *  
11  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 package jalview.ws.io.mime;
19
20 import jalview.io.packed.DataProvider.JvDataType;
21
22 /**
23  * static functions for resolving Jalview datatypes from mime types
24  * 
25  * @author JimP TODO: consider making get(Mime)TypeOf functions throw exceptions
26  *         rather than returning null
27  */
28 public class MimeTypes
29 {
30   /**
31    * pair list {String,JvDataType} giving a mime-type followed by its associated
32    * JvDataType enumeration.
33    */
34   final public static Object[] typemap = new Object[]
35   { "application/x-align", JvDataType.ALIGNMENT,
36       "application/x-jalview-annotation", JvDataType.ANNOTATION,
37       "application/x-newick", JvDataType.TREE,
38       "application/x-new-hampshire", JvDataType.TREE,
39       "application/x-new-hampshire-extended", JvDataType.TREE,
40       "application/x-nh", JvDataType.TREE, "application/x-nhx",
41       JvDataType.TREE, "application/x-gff", JvDataType.FEATURES,
42       "application/x-gff3", JvDataType.FEATURES,
43       "application/x-jalview-feature-file", JvDataType.FEATURES,
44       "application/x-pdb", JvDataType.SEQASSOCATED };
45
46   /**
47    * 
48    * @param mimeType
49    * @return the associated jalview datatype or null if no mapping is available
50    */
51   public static JvDataType getTypeOf(String mimeType)
52   {
53     String mt = mimeType.toLowerCase();
54     for (int i = 0; i < typemap.length; i += 2)
55     {
56       if (typemap[i].equals(mt))
57       {
58         return (JvDataType) typemap[i + 1];
59       }
60     }
61     return null;
62   }
63
64   /**
65    * 
66    * @param type
67    * @return the primary mimetype associated with this type.
68    */
69   public static String getMimeTypeOf(JvDataType type)
70   {
71     for (int i = 1; i < typemap.length; i += 2)
72     {
73       if (typemap[i].equals(type))
74       {
75         return (String) typemap[i - 1];
76       }
77     }
78     return null;
79   }
80 }