initial commit
[jalview.git] / forester / java / src / org / forester / surfacing / BasicBinaryDomainCombination.java
1 // $Id:
2 // Exp $
3 // FORESTER -- software libraries and applications
4 // for evolutionary biology research and applications.
5 //
6 // Copyright (C) 2008-2009 Christian M. Zmasek
7 // Copyright (C) 2008-2009 Burnham Institute for Medical Research
8 // All rights reserved
9 // 
10 // This library is free software; you can redistribute it and/or
11 // modify it under the terms of the GNU Lesser General Public
12 // License as published by the Free Software Foundation; either
13 // version 2.1 of the License, or (at your option) any later version.
14 //
15 // This library is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 // Lesser General Public License for more details.
19 // 
20 // You should have received a copy of the GNU Lesser General Public
21 // License along with this library; if not, write to the Free Software
22 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 //
24 // Contact: phylosoft @ gmail . com
25 // WWW: www.phylosoft.org/forester
26
27 package org.forester.surfacing;
28
29 import org.forester.util.ForesterUtil;
30
31 public class BasicBinaryDomainCombination implements BinaryDomainCombination {
32
33     DomainId _id_0;
34     DomainId _id_1;
35
36     BasicBinaryDomainCombination() {
37         _id_0 = null;
38         _id_1 = null;
39     }
40
41     public BasicBinaryDomainCombination( final DomainId id_0, final DomainId id_1 ) {
42         if ( ( id_0 == null ) || ( id_1 == null ) ) {
43             throw new IllegalArgumentException( "attempt to create binary domain combination using null" );
44         }
45         if ( id_0.compareTo( id_1 ) < 0 ) {
46             _id_0 = id_0;
47             _id_1 = id_1;
48         }
49         else {
50             _id_0 = id_1;
51             _id_1 = id_0;
52         }
53     }
54
55     public BasicBinaryDomainCombination( final String id_0, final String id_1 ) {
56         this( new DomainId( id_0 ), new DomainId( id_1 ) );
57     }
58
59     @Override
60     public int compareTo( final BinaryDomainCombination binary_domain_combination ) {
61         if ( binary_domain_combination.getClass() != this.getClass() ) {
62             throw new IllegalArgumentException( "attempt to compare [" + binary_domain_combination.getClass() + "] to "
63                     + "[" + this.getClass() + "]" );
64         }
65         if ( equals( binary_domain_combination ) ) {
66             return 0;
67         }
68         final int x = getId0().compareTo( binary_domain_combination.getId0() );
69         if ( x != 0 ) {
70             return x;
71         }
72         else {
73             return getId1().compareTo( binary_domain_combination.getId1() );
74         }
75     }
76
77     @Override
78     public boolean equals( final Object o ) {
79         if ( this == o ) {
80             return true;
81         }
82         else if ( o == null ) {
83             throw new IllegalArgumentException( "attempt to check [" + this.getClass() + "] equality to null" );
84         }
85         else if ( o.getClass() != this.getClass() ) {
86             throw new IllegalArgumentException( "attempt to check [" + this.getClass() + "] equality to ["
87                     + o.getClass() + "]" );
88         }
89         else {
90             return ( getId0().equals( ( ( BinaryDomainCombination ) o ).getId0() ) )
91                     && ( getId1().equals( ( ( BinaryDomainCombination ) o ).getId1() ) );
92         }
93     }
94
95     public DomainId getId0() {
96         return _id_0;
97     }
98
99     public DomainId getId1() {
100         return _id_1;
101     }
102
103     @Override
104     public int hashCode() {
105         return getId0().hashCode() + ( 19 * getId1().hashCode() );
106     }
107
108     public StringBuffer toGraphDescribingLanguage( final OutputFormat format,
109                                                    final String node_attribute,
110                                                    final String edge_attribute ) {
111         final StringBuffer sb = new StringBuffer();
112         switch ( format ) {
113             case DOT:
114                 if ( ForesterUtil.isEmpty( node_attribute ) ) {
115                     sb.append( getId0() );
116                     sb.append( " -- " );
117                     sb.append( getId1() );
118                     if ( !ForesterUtil.isEmpty( edge_attribute ) ) {
119                         sb.append( " " );
120                         sb.append( edge_attribute );
121                     }
122                     sb.append( ";" );
123                 }
124                 else {
125                     sb.append( getId0() );
126                     sb.append( " " );
127                     sb.append( node_attribute );
128                     sb.append( ";" );
129                     sb.append( ForesterUtil.LINE_SEPARATOR );
130                     sb.append( getId1() );
131                     sb.append( " " );
132                     sb.append( node_attribute );
133                     sb.append( ";" );
134                     sb.append( ForesterUtil.LINE_SEPARATOR );
135                     sb.append( getId0() );
136                     sb.append( " -- " );
137                     sb.append( getId1() );
138                     if ( !ForesterUtil.isEmpty( edge_attribute ) ) {
139                         sb.append( " " );
140                         sb.append( edge_attribute );
141                     }
142                     sb.append( ";" );
143                 }
144                 break;
145             default:
146                 throw new AssertionError( "unknown format:" + format );
147         }
148         return sb;
149     }
150
151     @Override
152     public String toString() {
153         final StringBuffer sb = new StringBuffer();
154         sb.append( getId0() );
155         sb.append( BinaryDomainCombination.SEPARATOR );
156         sb.append( getId1() );
157         return sb.toString();
158     }
159
160     public static BinaryDomainCombination createInstance( final String ids ) {
161         if ( ids.indexOf( BinaryDomainCombination.SEPARATOR ) < 1 ) {
162             throw new IllegalArgumentException( "Unexpected format for binary domain combination [" + ids + "]" );
163         }
164         final String[] ids_ary = ids.split( BinaryDomainCombination.SEPARATOR );
165         if ( ids_ary.length != 2 ) {
166             throw new IllegalArgumentException( "Unexpected format for binary domain combination [" + ids + "]" );
167         }
168         return new BasicBinaryDomainCombination( ids_ary[ 0 ], ids_ary[ 1 ] );
169     }
170 }