in progress
[jalview.git] / forester / java / src / org / forester / phylogeny / data / Taxonomy.java
1 // $Id:
2 // FORESTER -- software libraries and applications
3 // for evolutionary biology research and applications.
4 //
5 // Copyright (C) 2008-2009 Christian M. Zmasek
6 // Copyright (C) 2008-2009 Burnham Institute for Medical Research
7 // All rights reserved
8 //
9 // This library is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU Lesser General Public
11 // License as published by the Free Software Foundation; either
12 // version 2.1 of the License, or (at your option) any later version.
13 //
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 // Lesser General Public License for more details.
18 //
19 // You should have received a copy of the GNU Lesser General Public
20 // License along with this library; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 //
23 // Contact: phylosoft @ gmail . com
24 // WWW: www.phylosoft.org/forester
25
26 package org.forester.phylogeny.data;
27
28 import java.io.IOException;
29 import java.io.Writer;
30 import java.util.ArrayList;
31 import java.util.List;
32
33 import org.forester.io.parsers.nhx.NHXtags;
34 import org.forester.io.parsers.phyloxml.PhyloXmlDataFormatException;
35 import org.forester.io.parsers.phyloxml.PhyloXmlMapping;
36 import org.forester.io.parsers.phyloxml.PhyloXmlUtil;
37 import org.forester.util.ForesterUtil;
38
39 public class Taxonomy implements PhylogenyData, MultipleUris, Comparable<Taxonomy> {
40
41     private String       _scientific_name;
42     private String       _common_name;
43     private List<String> _synonyms;
44     private String       _authority;
45     private Identifier   _identifier;
46     private String       _taxonomy_code;
47     private String       _rank;
48     private List<Uri>    _uris;
49     private List<String> _lineage;
50
51     public Taxonomy() {
52         init();
53     }
54
55     @Override
56     public StringBuffer asSimpleText() {
57         return asText();
58     }
59
60     @Override
61     public Uri getUri( final int index ) {
62         return getUris().get( index );
63     }
64
65     @Override
66     public void addUri( final Uri uri ) {
67         if ( getUris() == null ) {
68             setUris( new ArrayList<Uri>() );
69         }
70         getUris().add( uri );
71     }
72
73     @Override
74     public StringBuffer asText() {
75         final StringBuffer sb = new StringBuffer();
76         if ( getIdentifier() != null ) {
77             sb.append( "[" );
78             sb.append( getIdentifier().asSimpleText() );
79             sb.append( "]" );
80         }
81         if ( !ForesterUtil.isEmpty( getTaxonomyCode() ) ) {
82             if ( sb.length() > 0 ) {
83                 sb.append( " " );
84             }
85             sb.append( "[" );
86             sb.append( getTaxonomyCode() );
87             sb.append( "]" );
88         }
89         if ( !ForesterUtil.isEmpty( getScientificName() ) ) {
90             if ( sb.length() > 0 ) {
91                 sb.append( " " );
92             }
93             sb.append( getScientificName() );
94             if ( !ForesterUtil.isEmpty( getAuthority() ) ) {
95                 sb.append( " (" );
96                 sb.append( getAuthority() );
97                 sb.append( ")" );
98             }
99         }
100         if ( !ForesterUtil.isEmpty( getCommonName() ) ) {
101             if ( sb.length() > 0 ) {
102                 sb.append( " " );
103             }
104             sb.append( getCommonName() );
105         }
106         return sb;
107     }
108
109     @Override
110     public PhylogenyData copy() {
111         final Taxonomy t = new Taxonomy();
112         t.setTaxonomyCode( getTaxonomyCode() );
113         t.setScientificName( getScientificName() );
114         t.setCommonName( getCommonName() );
115         t.setAuthority( getAuthority() );
116         for( final String syn : getSynonyms() ) {
117             t.getSynonyms().add( syn );
118         }
119         if ( getIdentifier() != null ) {
120             t.setIdentifier( ( Identifier ) getIdentifier().copy() );
121         }
122         else {
123             t.setIdentifier( null );
124         }
125         t.setRank( new String( getRank() ) );
126         if ( getUris() != null ) {
127             t.setUris( new ArrayList<Uri>() );
128             for( final Uri uri : getUris() ) {
129                 if ( uri != null ) {
130                     t.getUris().add( uri );
131                 }
132             }
133         }
134         if ( getLineage() != null ) {
135             t.setLineage( new ArrayList<String>() );
136             for( final String l : getLineage() ) {
137                 if ( l != null ) {
138                     t.getLineage().add( l );
139                 }
140             }
141         }
142         return t;
143     }
144
145     @Override
146     public boolean equals( final Object o ) {
147         if ( this == o ) {
148             return true;
149         }
150         else if ( o == null ) {
151             return false;
152         }
153         else if ( o.getClass() != this.getClass() ) {
154             throw new IllegalArgumentException( "attempt to check [" + this.getClass() + "] equality to " + o + " ["
155                     + o.getClass() + "]" );
156         }
157         else {
158             return isEqual( ( Taxonomy ) o );
159         }
160     }
161
162     public String getAuthority() {
163         return _authority;
164     }
165
166     public String getCommonName() {
167         return _common_name;
168     }
169
170     public Identifier getIdentifier() {
171         return _identifier;
172     }
173
174     public String getRank() {
175         return _rank;
176     }
177
178     public String getScientificName() {
179         return _scientific_name;
180     }
181
182     public List<String> getSynonyms() {
183         if ( _synonyms == null ) {
184             _synonyms = new ArrayList<String>();
185         }
186         return _synonyms;
187     }
188
189     public String getTaxonomyCode() {
190         return _taxonomy_code;
191     }
192
193     @Override
194     public List<Uri> getUris() {
195         return _uris;
196     }
197
198     @Override
199     public int hashCode() {
200         if ( getIdentifier() != null ) {
201             return getIdentifier().hashCode();
202         }
203         else if ( !ForesterUtil.isEmpty( getTaxonomyCode() ) ) {
204             return getTaxonomyCode().hashCode();
205         }
206         else if ( !ForesterUtil.isEmpty( getScientificName() ) ) {
207             if ( !ForesterUtil.isEmpty( getAuthority() ) ) {
208                 return ( getScientificName().toLowerCase() + getAuthority().toLowerCase() ).hashCode();
209             }
210             return getScientificName().toLowerCase().hashCode();
211         }
212         else {
213             return getCommonName().toLowerCase().hashCode();
214         }
215     }
216
217     public void init() {
218         setScientificName( "" );
219         setCommonName( "" );
220         setIdentifier( null );
221         setRank( "" );
222         setTaxonomyCode( "" );
223         setAuthority( "" );
224         setSynonyms( null );
225         setUris( null );
226         setLineage( null );
227     }
228
229     public boolean isEmpty() {
230         return ( ( getIdentifier() == null ) && ForesterUtil.isEmpty( getTaxonomyCode() )
231                 && ForesterUtil.isEmpty( getCommonName() ) && ForesterUtil.isEmpty( getScientificName() )
232                 && ForesterUtil.isEmpty( getRank() ) && ForesterUtil.isEmpty( _uris )
233                 && ForesterUtil.isEmpty( getAuthority() ) && ForesterUtil.isEmpty( _synonyms ) && ForesterUtil
234                 .isEmpty( _lineage ) );
235     }
236
237     /**
238      * 
239      * If this and taxonomy 'data' has an identifier, comparison will be based on that.
240      * Otherwise,  if this and taxonomy 'data' has a code, comparison will be based on that.
241      * Otherwise,  if Taxonomy 'data' has a scientific name, comparison will be
242      * based on that (case insensitive!).
243      * Otherwise,  if Taxonomy 'data' has a common  name, comparison will be
244      * based on that (case insensitive!).
245      * (Note. This is important and should not be change without a very good reason.)
246      * 
247      */
248     @Override
249     public boolean isEqual( final PhylogenyData data ) {
250         if ( this == data ) {
251             return true;
252         }
253         final Taxonomy tax = ( Taxonomy ) data;
254         if ( ( getIdentifier() != null ) && ( tax.getIdentifier() != null ) ) {
255             return getIdentifier().isEqual( tax.getIdentifier() );
256         }
257         else if ( !ForesterUtil.isEmpty( getTaxonomyCode() ) && !ForesterUtil.isEmpty( tax.getTaxonomyCode() ) ) {
258             return getTaxonomyCode().equals( tax.getTaxonomyCode() );
259         }
260         else if ( !ForesterUtil.isEmpty( getScientificName() ) && !ForesterUtil.isEmpty( tax.getScientificName() ) ) {
261             if ( !ForesterUtil.isEmpty( getAuthority() ) && !ForesterUtil.isEmpty( tax.getAuthority() ) ) {
262                 return ( getScientificName().equalsIgnoreCase( tax.getScientificName() ) )
263                         && ( getAuthority().equalsIgnoreCase( tax.getAuthority() ) );
264             }
265             return getScientificName().equalsIgnoreCase( tax.getScientificName() );
266         }
267         else if ( !ForesterUtil.isEmpty( getCommonName() ) && !ForesterUtil.isEmpty( tax.getCommonName() ) ) {
268             return getCommonName().equalsIgnoreCase( tax.getCommonName() );
269         }
270         else if ( !ForesterUtil.isEmpty( getScientificName() ) && !ForesterUtil.isEmpty( tax.getCommonName() ) ) {
271             return getScientificName().equalsIgnoreCase( tax.getCommonName() );
272         }
273         else if ( !ForesterUtil.isEmpty( getCommonName() ) && !ForesterUtil.isEmpty( tax.getScientificName() ) ) {
274             return getCommonName().equalsIgnoreCase( tax.getScientificName() );
275         }
276         throw new RuntimeException( "comparison not possible with empty fields" );
277     }
278
279     public void setAuthority( final String authority ) {
280         _authority = authority;
281     }
282
283     public void setCommonName( final String common_name ) {
284         _common_name = common_name;
285     }
286
287     public void setIdentifier( final Identifier identifier ) {
288         _identifier = identifier;
289     }
290
291     public void setRank( final String rank ) {
292         if ( !ForesterUtil.isEmpty( rank ) && !PhyloXmlUtil.TAXONOMY_RANKS_SET.contains( rank ) ) {
293             throw new PhyloXmlDataFormatException( "illegal rank: [" + rank + "]" );
294         }
295         _rank = rank;
296     }
297
298     public void setScientificName( final String scientific_name ) {
299         _scientific_name = scientific_name;
300     }
301
302     private void setSynonyms( final List<String> synonyms ) {
303         _synonyms = synonyms;
304     }
305
306     public void setTaxonomyCode( final String taxonomy_code ) {
307         if ( !ForesterUtil.isEmpty( taxonomy_code )
308                 && !PhyloXmlUtil.TAXOMONY_CODE_PATTERN.matcher( taxonomy_code ).matches() ) {
309             throw new PhyloXmlDataFormatException( "illegal taxonomy code: [" + taxonomy_code + "]" );
310         }
311         _taxonomy_code = taxonomy_code;
312     }
313
314     @Override
315     public void setUris( final List<Uri> uris ) {
316         _uris = uris;
317     }
318
319     @Override
320     public StringBuffer toNHX() {
321         final StringBuffer sb = new StringBuffer();
322         if ( getIdentifier() != null ) {
323             sb.append( ':' + NHXtags.TAXONOMY_ID );
324             sb.append( ForesterUtil.replaceIllegalNhxCharacters( getIdentifier().getValue() ) );
325         }
326         final StringBuffer species = new StringBuffer();
327         if ( !ForesterUtil.isEmpty( getTaxonomyCode() ) ) {
328             species.append( ForesterUtil.replaceIllegalNhxCharacters( getTaxonomyCode() ) );
329         }
330         if ( !ForesterUtil.isEmpty( getScientificName() ) ) {
331             ForesterUtil.appendSeparatorIfNotEmpty( species, '|' );
332             species.append( ForesterUtil.replaceIllegalNhxCharacters( getScientificName() ) );
333         }
334         if ( !ForesterUtil.isEmpty( getCommonName() ) ) {
335             ForesterUtil.appendSeparatorIfNotEmpty( species, '|' );
336             species.append( ForesterUtil.replaceIllegalNhxCharacters( getCommonName() ) );
337         }
338         if ( species.length() > 0 ) {
339             sb.append( ':' + NHXtags.SPECIES_NAME );
340             sb.append( species );
341         }
342         return sb;
343     }
344
345     @Override
346     public void toPhyloXML( final Writer writer, final int level, final String indentation ) throws IOException {
347         if ( isEmpty() ) {
348             return;
349         }
350         writer.write( ForesterUtil.LINE_SEPARATOR );
351         writer.write( indentation );
352         PhylogenyDataUtil.appendOpen( writer, PhyloXmlMapping.TAXONOMY );
353         if ( ( getIdentifier() != null ) && !ForesterUtil.isEmpty( getIdentifier().getValue() ) ) {
354             getIdentifier().toPhyloXML( writer, level, indentation );
355         }
356         if ( !ForesterUtil.isEmpty( getTaxonomyCode() ) ) {
357             PhylogenyDataUtil.appendElement( writer, PhyloXmlMapping.TAXONOMY_CODE, getTaxonomyCode(), indentation );
358         }
359         if ( !ForesterUtil.isEmpty( getScientificName() ) ) {
360             PhylogenyDataUtil.appendElement( writer,
361                                              PhyloXmlMapping.TAXONOMY_SCIENTIFIC_NAME,
362                                              getScientificName(),
363                                              indentation );
364         }
365         if ( !ForesterUtil.isEmpty( getAuthority() ) ) {
366             PhylogenyDataUtil.appendElement( writer, PhyloXmlMapping.TAXONOMY_AUTHORITY, getAuthority(), indentation );
367         }
368         if ( !ForesterUtil.isEmpty( getCommonName() ) ) {
369             PhylogenyDataUtil
370                     .appendElement( writer, PhyloXmlMapping.TAXONOMY_COMMON_NAME, getCommonName(), indentation );
371         }
372         if ( _synonyms != null ) {
373             for( final String syn : getSynonyms() ) {
374                 if ( !ForesterUtil.isEmpty( syn ) ) {
375                     PhylogenyDataUtil.appendElement( writer, PhyloXmlMapping.TAXONOMY_SYNONYM, syn, indentation );
376                 }
377             }
378         }
379         if ( !ForesterUtil.isEmpty( getRank() ) ) {
380             PhylogenyDataUtil.appendElement( writer, PhyloXmlMapping.TAXONOMY_RANK, getRank(), indentation );
381         }
382         if ( getUris() != null ) {
383             for( final Uri uri : getUris() ) {
384                 if ( uri != null ) {
385                     uri.toPhyloXML( writer, level, indentation );
386                 }
387             }
388         }
389         writer.write( ForesterUtil.LINE_SEPARATOR );
390         writer.write( indentation );
391         PhylogenyDataUtil.appendClose( writer, PhyloXmlMapping.TAXONOMY );
392     }
393
394     @Override
395     public String toString() {
396         return asText().toString();
397     }
398
399     @Override
400     public int compareTo( final Taxonomy o ) {
401         if ( equals( o ) ) {
402             return 0;
403         }
404         else if ( !ForesterUtil.isEmpty( getScientificName() ) && !ForesterUtil.isEmpty( o.getScientificName() ) ) {
405             return getScientificName().compareToIgnoreCase( o.getScientificName() );
406         }
407         else if ( !ForesterUtil.isEmpty( getCommonName() ) && !ForesterUtil.isEmpty( o.getCommonName() ) ) {
408             return getCommonName().compareToIgnoreCase( o.getCommonName() );
409         }
410         else if ( !ForesterUtil.isEmpty( getTaxonomyCode() ) && !ForesterUtil.isEmpty( o.getTaxonomyCode() ) ) {
411             return getTaxonomyCode().compareToIgnoreCase( o.getTaxonomyCode() );
412         }
413         return 0;
414     }
415
416     public void setLineage( final List<String> lineage ) {
417         _lineage = lineage;
418     }
419
420     public List<String> getLineage() {
421         return _lineage;
422     }
423 }