// $Id: BasicBinaryDomainCombination.java,v 1.10 2008/03/09 00:11:14 cmzmasek
// Exp $
// FORESTER -- software libraries and applications
// for evolutionary biology research and applications.
//
// Copyright (C) 2008-2009 Christian M. Zmasek
// Copyright (C) 2008-2009 Burnham Institute for Medical Research
// All rights reserved
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
//
// Contact: cmzmasek@yahoo.com
// WWW: www.phylosoft.org/forester
package org.forester.surfacing;
import org.forester.util.ForesterUtil;
public class BasicBinaryDomainCombination implements BinaryDomainCombination {
DomainId _id_0;
DomainId _id_1;
BasicBinaryDomainCombination() {
_id_0 = null;
_id_1 = null;
}
public BasicBinaryDomainCombination( final DomainId id_0, final DomainId id_1 ) {
if ( ( id_0 == null ) || ( id_1 == null ) ) {
throw new IllegalArgumentException( "attempt to create binary domain combination using null" );
}
if ( id_0.compareTo( id_1 ) < 0 ) {
_id_0 = id_0;
_id_1 = id_1;
}
else {
_id_0 = id_1;
_id_1 = id_0;
}
}
public BasicBinaryDomainCombination( final String id_0, final String id_1 ) {
this( new DomainId( id_0 ), new DomainId( id_1 ) );
}
@Override
public int compareTo( final BinaryDomainCombination binary_domain_combination ) {
if ( binary_domain_combination.getClass() != this.getClass() ) {
throw new IllegalArgumentException( "attempt to compare [" + binary_domain_combination.getClass() + "] to "
+ "[" + this.getClass() + "]" );
}
if ( equals( binary_domain_combination ) ) {
return 0;
}
final int x = getId0().compareTo( binary_domain_combination.getId0() );
if ( x != 0 ) {
return x;
}
else {
return getId1().compareTo( binary_domain_combination.getId1() );
}
}
@Override
public boolean equals( final Object o ) {
if ( this == o ) {
return true;
}
else if ( o == null ) {
throw new IllegalArgumentException( "attempt to check [" + this.getClass() + "] equality to null" );
}
else if ( o.getClass() != this.getClass() ) {
throw new IllegalArgumentException( "attempt to check [" + this.getClass() + "] equality to ["
+ o.getClass() + "]" );
}
else {
return ( getId0().equals( ( ( BinaryDomainCombination ) o ).getId0() ) )
&& ( getId1().equals( ( ( BinaryDomainCombination ) o ).getId1() ) );
}
}
public DomainId getId0() {
return _id_0;
}
public DomainId getId1() {
return _id_1;
}
@Override
public int hashCode() {
return getId0().hashCode() + ( 19 * getId1().hashCode() );
}
public StringBuffer toGraphDescribingLanguage( final OutputFormat format,
final String node_attribute,
final String edge_attribute ) {
final StringBuffer sb = new StringBuffer();
switch ( format ) {
case DOT:
if ( ForesterUtil.isEmpty( node_attribute ) ) {
sb.append( getId0() );
sb.append( " -- " );
sb.append( getId1() );
if ( !ForesterUtil.isEmpty( edge_attribute ) ) {
sb.append( " " );
sb.append( edge_attribute );
}
sb.append( ";" );
}
else {
sb.append( getId0() );
sb.append( " " );
sb.append( node_attribute );
sb.append( ";" );
sb.append( ForesterUtil.LINE_SEPARATOR );
sb.append( getId1() );
sb.append( " " );
sb.append( node_attribute );
sb.append( ";" );
sb.append( ForesterUtil.LINE_SEPARATOR );
sb.append( getId0() );
sb.append( " -- " );
sb.append( getId1() );
if ( !ForesterUtil.isEmpty( edge_attribute ) ) {
sb.append( " " );
sb.append( edge_attribute );
}
sb.append( ";" );
}
break;
default:
throw new AssertionError( "unknown format:" + format );
}
return sb;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer();
sb.append( getId0() );
sb.append( BinaryDomainCombination.SEPARATOR );
sb.append( getId1() );
return sb.toString();
}
public static BinaryDomainCombination createInstance( final String ids ) {
if ( ids.indexOf( BinaryDomainCombination.SEPARATOR ) < 1 ) {
throw new IllegalArgumentException( "Unexpected format for binary domain combination [" + ids + "]" );
}
final String[] ids_ary = ids.split( BinaryDomainCombination.SEPARATOR );
if ( ids_ary.length != 2 ) {
throw new IllegalArgumentException( "Unexpected format for binary domain combination [" + ids + "]" );
}
return new BasicBinaryDomainCombination( ids_ary[ 0 ], ids_ary[ 1 ] );
}
}