blob: 3c05a5c7c55fef5e6bc299412cd5d29f6062b538 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.core.internal.databinding.conversion;
import org.eclipse.core.internal.databinding.conversion.StringToNumberParser.ParseResult;
import org.eclipse.core.internal.databinding.validation.NumberFormatConverter;
import com.ibm.icu.text.NumberFormat;
/**
* @since 1.0
*/
public class StringToShortConverter extends NumberFormatConverter {
private final NumberFormat numberFormat;
private final boolean primitive;
private String outOfRangeMessage;
/**
* Constructs a new instance.
*/
private StringToShortConverter(NumberFormat numberFormat, Class toType) {
super(String.class, toType, numberFormat);
this.numberFormat = numberFormat;
primitive = toType.isPrimitive();
}
/*
* (non-Javadoc)
*
* @see org.eclipse.core.databinding.conversion.IConverter#convert(java.lang.Object)
*/
public Object convert(Object fromObject) {
ParseResult result = StringToNumberParser.parse(fromObject,
numberFormat, primitive);
if (result.getPosition() != null) {
// this shouldn't happen in the pipeline as validation should catch
// it but anyone can call convert so we should return a properly
// formatted message in an exception
throw new IllegalArgumentException(StringToNumberParser
.createParseErrorMessage((String) fromObject, result
.getPosition()));
} else if (result.getNumber() == null) {
// if an error didn't occur and the number is null then it's a boxed
// type and null should be returned
return null;
}
if (StringToNumberParser.inShortRange(result.getNumber())) {
return new Short(result.getNumber().shortValue());
}
synchronized (this) {
if (outOfRangeMessage == null) {
outOfRangeMessage = StringToNumberParser
.createOutOfRangeMessage(new Short(Short.MIN_VALUE), new Short(Short.MAX_VALUE), numberFormat);
}
throw new IllegalArgumentException(outOfRangeMessage);
}
}
/**
* @param primitive
* <code>true</code> if the convert to type is a short
* @return to Short converter for the default locale
*/
public static StringToShortConverter toShort(boolean primitive) {
return toShort(NumberFormat.getIntegerInstance(), primitive);
}
/**
* @param numberFormat
* @param primitive
* @return to Short converter with the provided numberFormat
*/
public static StringToShortConverter toShort(NumberFormat numberFormat,
boolean primitive) {
return new StringToShortConverter(numberFormat,
(primitive) ? Short.TYPE : Short.class);
}
}