Coverage Report - org.kuali.rice.core.web.format.BigDecimalFormatter
 
Classes in this File Line Coverage Branch Coverage Complexity
BigDecimalFormatter
0%
0/34
0%
0/10
8.5
 
 1  
 /*
 2  
  * Copyright 2006-2008 The Kuali Foundation
 3  
  * 
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  * 
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  * 
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.core.web.format;
 17  
 
 18  
 import java.math.BigDecimal;
 19  
 import java.text.DecimalFormat;
 20  
 import java.text.ParseException;
 21  
 import java.util.regex.Pattern;
 22  
 
 23  
 import org.apache.log4j.Logger;
 24  
 import org.kuali.rice.core.util.RiceKeyConstants;
 25  
 
 26  
 /**
 27  
  * This class is used to format BigDecimal objects.
 28  
  */
 29  0
 public class BigDecimalFormatter extends Formatter {
 30  
         
 31  
     private static final long serialVersionUID = 4628393689860734306L;
 32  
     
 33  0
         private static Logger LOG = Logger.getLogger(BigDecimalFormatter.class);
 34  0
     private static final Pattern DECIMAL_PATTERN = Pattern.compile("\\-?[0-9,]*\\.?[0-9]*");
 35  
 
 36  
     /**
 37  
      * Unformats its argument and returns a KualiDecimal instance initialized with the resulting string value
 38  
      * 
 39  
      * @see org.kuali.rice.core.web.format.Formatter#convertToObject(java.lang.String)
 40  
      */
 41  
     protected Object convertToObject(String target) {
 42  0
         BigDecimal value = null;
 43  
 
 44  0
         LOG.debug("convertToObject '" + target + "'");
 45  
 
 46  0
         if (target != null) {
 47  
  
 48  
             // preemptively detect non-numeric-related symbols, since NumberFormat.parse seems to be silently deleting them
 49  
             // (i.e. 9aaaaaaaaaaaaaaa is silently converted into 9)
 50  0
             if (!DECIMAL_PATTERN.matcher(target).matches()) {
 51  0
                 throw new FormatException("parsing", RiceKeyConstants.ERROR_NUMERIC, target);
 52  
             }
 53  
 
 54  
 
 55  
             // actually reformat the numeric value
 56  0
             DecimalFormat formatter = new DecimalFormat();
 57  0
             formatter.setParseBigDecimal(true);
 58  
             try {
 59  0
                 Number parsedNumber = formatter.parse(target);
 60  0
                 value = new BigDecimal(parsedNumber.toString());
 61  
             }
 62  0
             catch (NumberFormatException e) {
 63  0
                 throw new FormatException("parsing", RiceKeyConstants.ERROR_BIG_DECIMAL, target, e);
 64  
             }
 65  0
             catch (ParseException e) {
 66  0
                 throw new FormatException("parsing", RiceKeyConstants.ERROR_BIG_DECIMAL, target, e);
 67  0
             }
 68  
         }
 69  
 
 70  0
         return value;
 71  
     }
 72  
 
 73  
 
 74  
 
 75  
     /**
 76  
      * Returns a string representation of its argument formatted as a decimal value.
 77  
      * 
 78  
      * @see org.kuali.rice.core.web.format.Formatter#format(java.lang.Object)
 79  
      */
 80  
     public Object format(Object obj) {
 81  0
         LOG.debug("format '" + obj + "'");
 82  0
         if (obj == null)
 83  0
             return null;
 84  
 
 85  0
         DecimalFormat formatter = new DecimalFormat();
 86  0
         String string = null;
 87  
 
 88  
         try {
 89  0
             BigDecimal number = (BigDecimal) obj;
 90  
 
 91  
 
 92  0
             if(number!=null && number.scale()>0) {
 93  
                 //remember to force a scale (with whatever rounding) in your java object to enforce this
 94  0
                 formatter.setMinimumFractionDigits(number.scale());
 95  
             } else {//arbitrary scale
 96  
                 //according to the api this line shouldn't be needed for BigDecimal and it should be
 97  
                 //able to do arbitrary precision, however it didn't work in my tests it appears there 
 98  
                 //is an open java bug that relates to this sun bug (sun BUG:5060859) and that's why
 99  
                 //we may need this workaround for now
 100  0
                 formatter.setMaximumFractionDigits(340);
 101  
             }
 102  0
             string = formatter.format(number);
 103  
         }
 104  0
         catch (IllegalArgumentException e) {
 105  0
             throw new FormatException("formatting", RiceKeyConstants.ERROR_BIG_DECIMAL, obj.toString(), e);
 106  
         }
 107  0
         catch (ClassCastException e) {
 108  0
             throw new FormatException("formatting", RiceKeyConstants.ERROR_BIG_DECIMAL, obj.toString(), e);
 109  0
         }
 110  
 
 111  0
         return string;
 112  
     }
 113  
 }