f2d8ad505665d72b0220133e7dfd8b843634c524
[jalview.git] / src / jalview / ws / io / mime / MimeTypes.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1)
3  * Copyright (C) 2014 The Jalview Authors
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  * The Jalview Authors are detailed in the 'AUTHORS' file.
18  */
19 package jalview.ws.io.mime;
20
21 import jalview.io.packed.DataProvider.JvDataType;
22
23 /**
24  * static functions for resolving Jalview datatypes from mime types
25  * 
26  * @author JimP TODO: consider making get(Mime)TypeOf functions throw exceptions
27  *         rather than returning null
28  */
29 public class MimeTypes
30 {
31   /**
32    * pair list {String,JvDataType} giving a mime-type followed by its associated
33    * JvDataType enumeration.
34    */
35   final public static Object[] typemap = new Object[]
36   { "application/x-align", JvDataType.ALIGNMENT,
37       "application/x-jalview-annotation", JvDataType.ANNOTATION,
38       "application/x-newick", JvDataType.TREE,
39       "application/x-new-hampshire", JvDataType.TREE,
40       "application/x-new-hampshire-extended", JvDataType.TREE,
41       "application/x-nh", JvDataType.TREE, "application/x-nhx",
42       JvDataType.TREE, "application/x-gff", JvDataType.FEATURES,
43       "application/x-gff3", JvDataType.FEATURES,
44       "application/x-jalview-feature-file", JvDataType.FEATURES,
45       "application/x-pdb", JvDataType.SEQASSOCATED };
46
47   /**
48    * 
49    * @param mimeType
50    * @return the associated jalview datatype or null if no mapping is available
51    */
52   public static JvDataType getTypeOf(String mimeType)
53   {
54     String mt = mimeType.toLowerCase();
55     for (int i = 0; i < typemap.length; i += 2)
56     {
57       if (typemap[i].equals(mt))
58       {
59         return (JvDataType) typemap[i + 1];
60       }
61     }
62     return null;
63   }
64
65   /**
66    * 
67    * @param type
68    * @return the primary mimetype associated with this type.
69    */
70   public static String getMimeTypeOf(JvDataType type)
71   {
72     for (int i = 1; i < typemap.length; i += 2)
73     {
74       if (typemap[i].equals(type))
75       {
76         return (String) typemap[i - 1];
77       }
78     }
79     return null;
80   }
81 }