/* * DBeaver - Universal Database Manager * Copyright (C) 2010-2017 Serge Rider (serge@jkiss.org) * * 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 org.jkiss.dbeaver.model.impl.data.formatters; import org.jkiss.code.Nullable; import org.jkiss.dbeaver.model.data.DBDDataFormatter; import org.jkiss.utils.CommonUtils; import java.math.BigDecimal; import java.math.BigInteger; import java.math.RoundingMode; import java.text.DecimalFormat; import java.text.FieldPosition; import java.text.NumberFormat; import java.text.ParseException; import java.util.Locale; import java.util.Map; public class NumberDataFormatter implements DBDDataFormatter { private DecimalFormat numberFormat; private StringBuffer buffer; private FieldPosition position; @Override public void init(Locale locale, Map<Object, Object> properties) { numberFormat = (DecimalFormat) NumberFormat.getNumberInstance(locale); Object useGrouping = properties.get(NumberFormatSample.PROP_USE_GROUPING); if (useGrouping != null) { numberFormat.setGroupingUsed(CommonUtils.toBoolean(useGrouping)); } Object maxIntDigits = properties.get(NumberFormatSample.PROP_MAX_INT_DIGITS); if (maxIntDigits != null) { numberFormat.setMaximumIntegerDigits(CommonUtils.toInt(maxIntDigits)); } Object minIntDigits = properties.get(NumberFormatSample.PROP_MIN_INT_DIGITS); if (minIntDigits != null) { numberFormat.setMinimumIntegerDigits(CommonUtils.toInt(minIntDigits)); } Object maxFractDigits = properties.get(NumberFormatSample.PROP_MAX_FRACT_DIGITS); if (maxFractDigits != null) { numberFormat.setMaximumFractionDigits(CommonUtils.toInt(maxFractDigits)); } Object minFractDigits = properties.get(NumberFormatSample.PROP_MIN_FRACT_DIGITS); if (minFractDigits != null) { numberFormat.setMinimumFractionDigits(CommonUtils.toInt(minFractDigits)); } String roundingMode = CommonUtils.toString(properties.get(NumberFormatSample.PROP_ROUNDING_MODE)); if (!CommonUtils.isEmpty(roundingMode)) { try { numberFormat.setRoundingMode(RoundingMode.valueOf(roundingMode)); } catch (Exception e) { // just skip it } } buffer = new StringBuffer(); position = new FieldPosition(0); } @Nullable @Override public String getPattern() { return null; } @Nullable @Override public String formatValue(Object value) { if (value == null) { return null; } try { synchronized (this) { buffer.setLength(0); return numberFormat.format(value, buffer, position).toString(); } } catch (Exception e) { return value.toString(); } } @Override public Object parseValue(String value, @Nullable Class<?> typeHint) throws ParseException { synchronized (this) { numberFormat.setParseBigDecimal(typeHint == BigDecimal.class || typeHint == BigInteger.class); Number number = numberFormat.parse(value); if (number != null && typeHint != null) { if (typeHint == Byte.class) { return number.byteValue(); } else if (typeHint == Short.class) { return number.shortValue(); } else if (typeHint == Integer.class) { return number.intValue(); } else if (typeHint == Long.class) { return number.longValue(); } else if (typeHint == Float.class) { return number.floatValue(); } else if (typeHint == Double.class) { return number.doubleValue(); } } return number; } } }