All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ma.glasnost.orika.converter.builtin.BuiltinBidirectionalConverter Maven / Gradle / Ivy

/*
 * Orika - simpler, better and faster Java bean mapping
 *
 * Copyright (C) 2011-2013 Orika authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package ma.glasnost.orika.converter.builtin;

import ma.glasnost.orika.converter.BidirectionalConverter;
import ma.glasnost.orika.metadata.TypeFactory;

/**
 * BidirectionalConverter which describes itself as builtin
 *
 * @param 
 * @param 
 */
abstract class BuiltinBidirectionalConverter extends BidirectionalConverter {

	private final String description;
	private volatile Reversed reversed;
	
	public BuiltinBidirectionalConverter() {
	    super();
	    String srcName = TypeFactory.nameOf(sourceType, destinationType);
	    String dstName = TypeFactory.nameOf(destinationType, sourceType); 
	    description = "builtin:" + getClass().getSimpleName() + "<"
        + srcName + ", " + dstName + ">";
	}
	
	public BidirectionalConverter reverse() {
	    if (reversed == null) {
	        synchronized(this) {
	            if (reversed == null) {
	                reversed = new Reversed(this);
	            }
	        }
	    }
	    return reversed;
	}

	public String toString() {
		return description;
	}

	@Override
	public boolean equals(Object o) {
		if (this == o) return true;
		if (o == null || getClass() != o.getClass()) return false;
		if (!super.equals(o)) return false;

		BuiltinBidirectionalConverter that = (BuiltinBidirectionalConverter) o;

		return description != null ? description.equals(that.description) : that.description == null;
	}

	private static class Reversed extends BidirectionalConverter.Reversed {

	    private final String description;
	    
        public Reversed(BidirectionalConverter bidi) {
            super(bidi);
            String srcName = TypeFactory.nameOf(getAType(), getBType());
            String dstName = TypeFactory.nameOf(getBType(), getAType());
            description = "builtin:reversed:" + bidi.getClass().getSimpleName() + "<"
            + srcName + ", " + dstName + ">";
        }
	    
        public String toString() {
            return description;
        }
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy