Search in sources :

Example 6 with StringBuilder

use of java.lang.StringBuilder in project derby by apache.

the class MessageUtils method buildPreformattedSqlerrmc.

/**
 * Build preformatted SQLException text
 * for severe exceptions or SQLExceptions that are not Derby exceptions.
 * Just send the message text localized to the server locale.
 *
 * @param se  SQLException for which to build SQLERRMC
 * @return preformated message text
 *          with messages separted by SQLERRMC_PREFORMATED_MESSAGE_DELIMITER
 */
private String buildPreformattedSqlerrmc(SQLException se) {
    if (se == null) {
        return "";
    }
    // String buffer to build up message
    StringBuilder sb = new StringBuilder();
    sb.append(se.getLocalizedMessage());
    while ((se = se.getNextException()) != null) {
        sb.append(SQLERRMC_PREFORMATTED_MESSAGE_DELIMITER);
        sb.append("SQLSTATE: ");
        sb.append(se.getSQLState());
    }
    return sb.toString();
}
Also used : StringBuilder(java.lang.StringBuilder)

Example 7 with StringBuilder

use of java.lang.StringBuilder in project derby by apache.

the class MessageUtils method encodeExceptionAsSqlerrmc.

public static String encodeExceptionAsSqlerrmc(SQLException se) {
    // this could happen for instance if an SQLException was thrown
    // from a stored procedure.
    StringBuilder sb = new StringBuilder();
    sb.append(se.getLocalizedMessage());
    se = se.getNextException();
    if (se != null) {
        sb.append(SQLERRMC_TOKEN_DELIMITER);
        sb.append("SQLSTATE: ").append(se.getSQLState());
    }
    return sb.toString();
}
Also used : StringBuilder(java.lang.StringBuilder)

Example 8 with StringBuilder

use of java.lang.StringBuilder in project openj9 by eclipse.

the class DecimalFormatHelper method formatAsFloat.

/**
 * The implementation of format needs to follow the implementation of
 * java.text.DecimalFormat.format methods in regards to setting
 * maxIntDigits, minIntDigits, etc.
 *
 * @see #formatAsDouble(DecimalFormat df, BigDecimal number) for the difference
 * between formatAsDouble and formatAsFloat.
 *
 * @param df   the object on which format was called
 * @param number   the object on which doubleValue or floatValue() is called
 * @return the formatted string
 */
private static String formatAsFloat(DecimalFormat df, BigDecimal number) {
    if ((flags & 0x00000001) == 0x00000001) {
        // The optimization is possible if the representation of the BigDecimal object,
        // number, is long lookaside (LL)
        INSTANCE.setBeginIndex(0);
        INSTANCE.setEndIndex(0);
        if (multiplier != 1)
            number = number.multiply(getBigDecimalMultiplier(df));
        boolean isNegative = number.signum() == -1;
        synchronized (digitList) {
            int maxIntDigits = df.getMaximumIntegerDigits();
            int minIntDigits = df.getMinimumIntegerDigits();
            int maxFraDigits = df.getMaximumFractionDigits();
            int minFraDigits = df.getMinimumFractionDigits();
            if (laside == 0) {
                digitList.digits[0] = '0';
                digitList.count = 1;
                digitList.decimalAt = 0;
            } else {
                long intVal = laside;
                long intTmpVal;
                long sign = (laside >> 63) | ((-laside) >>> 63);
                int length = number.precision();
                if (sign == -1)
                    intVal = -intVal;
                int d = length - 1;
                while (intVal != 0) {
                    intTmpVal = intVal;
                    intVal = intVal / 100;
                    int rem = (byte) (intTmpVal - ((intVal << 6) + (intVal << 5) + (intVal << 2)));
                    digitList.digits[d--] = doubleDigitsOnes[rem];
                    if (d >= 0)
                        digitList.digits[d--] = doubleDigitsTens[rem];
                }
                digitList.count = length;
                digitList.decimalAt = -scale + length;
            }
            /*
    			return subformat(df, new StringBuffer(), INSTANCE.getFieldDelegate(), isNegative, false,
    					maxIntDigits, minIntDigits, maxFraDigits, minFraDigits).toString();
    					 */
            /* Original DecimalFormat.subformat was called as above, with a synchronized StringBuffer object
                that we know will never be accessed by more than one thread. In order to get rid of that
                we duplicate the subformat code (and all other methods it calls that need symbol substitution)
                here and replace StringBuffer with StringBuilder.
                We also omit calls to the delegate because it 1) it expects a StringBuffer and 2) it is
                assumed to be a DontCareFieldDelegate, which does nothing. */
            /*
             	private static StringBuilder subformat(DecimalFormat df, StringBuilder result, FieldDelegate delegate,
                                                    boolean isNegative, boolean isInteger,
                                                    int maxIntDigits, int minIntDigits,
                                                    int maxFraDigits, int minFraDigits)
    			 */
            {
                final boolean isInteger = false;
                StringBuilder result = new StringBuilder();
                FieldDelegate delegate = INSTANCE.getFieldDelegate();
                // NOTE: This isn't required anymore because DigitList takes care of this.
                // 
                // // The negative of the exponent represents the number of leading
                // // zeros between the decimal and the first non-zero digit, for
                // // a value < 0.1 (e.g., for 0.00123, -fExponent == 2).  If this
                // // is more than the maximum fraction digits, then we have an underflow
                // // for the printed representation.  We recognize this here and set
                // // the DigitList representation to zero in this situation.
                // 
                // if (-digitList.decimalAt >= getMaximumFractionDigits())
                // {
                // digitList.count = 0;
                // }
                char zero = symbols.getZeroDigit();
                // '0' is the DigitList representation of zero
                int zeroDelta = zero - '0';
                char grouping = symbols.getGroupingSeparator();
                char decimal = isCurrencyFormat ? symbols.getMonetaryDecimalSeparator() : symbols.getDecimalSeparator();
                /* Per bug 4147706, DecimalFormat must respect the sign of numbers which
					 * format as zero.  This allows sensible computations and preserves
					 * relations such as signum(1/x) = signum(x), where x is +Infinity or
					 * -Infinity.  Prior to this fix, we always formatted zero values as if
					 * they were positive.  Liu 7/6/98.
					 */
                if (digitList.isZero()) {
                    // Normalize
                    digitList.decimalAt = 0;
                }
                /*
           			private static void append(DecimalFormat df, StringBuilder result, String string,
											   FieldDelegate delegate,
											   FieldPosition[] positions,
											   Format.Field signAttribute)
					 */
                {
                    String string;
                    if (isNegative) {
                        string = negativePrefix;
                    // positions = getNegativePrefixFieldPositions(df);
                    } else {
                        string = positivePrefix;
                    // positions = getPositivePrefixFieldPositions(df);
                    }
                    if (string.length() > 0) {
                        result.append(string);
                    /*
                  			for (int counter = 0, max = positions.length; counter < max;
		                           counter++) {
		                         FieldPosition fp = positions[counter];
		                         Format.Field attribute = fp.getFieldAttribute();
		
		                         if (attribute == Field.SIGN) {
		                            attribute = signAttribute;
		                         }*/
                    /* XXX: Assumed to be a nop
	                            delegate.formatted(attribute, attribute,
	                            start + fp.getBeginIndex(),
	                            start + fp.getEndIndex(), result);
								 */
                    // }
                    }
                }
                if (useExponentialNotation) {
                    int iFieldStart = result.length();
                    int iFieldEnd = -1;
                    int fFieldStart = -1;
                    // Minimum integer digits are handled in exponential format by
                    // adjusting the exponent.  For example, 0.01234 with 3 minimum
                    // integer digits is "123.4E-4".
                    // Maximum integer digits are interpreted as indicating the
                    // repeating range.  This is useful for engineering notation, in
                    // which the exponent is restricted to a multiple of 3.  For
                    // example, 0.01234 with 3 maximum integer digits is "12.34e-3".
                    // If maximum integer digits are > 1 and are larger than
                    // minimum integer digits, then minimum integer digits are
                    // ignored.
                    int exponent = digitList.decimalAt;
                    int repeat = maxIntDigits;
                    int minimumIntegerDigits = minIntDigits;
                    if (repeat > 1 && repeat > minIntDigits) {
                        // it is for the format 0.MMMMMx10^n.
                        if (exponent >= 1) {
                            exponent = ((exponent - 1) / repeat) * repeat;
                        } else {
                            // integer division rounds towards 0
                            exponent = ((exponent - repeat) / repeat) * repeat;
                        }
                        minimumIntegerDigits = 1;
                    } else {
                        // No repeating range is defined; use minimum integer digits.
                        exponent -= minimumIntegerDigits;
                    }
                    // We now output a minimum number of digits, and more if there
                    // are more digits, up to the maximum number of digits.  We
                    // place the decimal point after the "integer" digits, which
                    // are the first (decimalAt - exponent) digits.
                    int minimumDigits = minIntDigits + minFraDigits;
                    if (minimumDigits < 0) {
                        // overflow?
                        minimumDigits = Integer.MAX_VALUE;
                    }
                    // The number of integer digits is handled specially if the number
                    // is zero, since then there may be no digits.
                    int integerDigits = digitList.isZero() ? minimumIntegerDigits : digitList.decimalAt - exponent;
                    if (minimumDigits < integerDigits) {
                        minimumDigits = integerDigits;
                    }
                    int totalDigits = digitList.count;
                    if (minimumDigits > totalDigits) {
                        totalDigits = minimumDigits;
                    }
                    boolean addedDecimalSeparator = false;
                    for (int i = 0; i < totalDigits; ++i) {
                        if (i == integerDigits) {
                            // Record field information for caller.
                            iFieldEnd = result.length();
                            result.append(decimal);
                            addedDecimalSeparator = true;
                            // Record field information for caller.
                            fFieldStart = result.length();
                        }
                        result.append((i < digitList.count) ? (char) (digitList.digits[i] + zeroDelta) : zero);
                    }
                    if (decimalSeparatorAlwaysShown && totalDigits == integerDigits) {
                        // Record field information for caller.
                        iFieldEnd = result.length();
                        result.append(decimal);
                        addedDecimalSeparator = true;
                        // Record field information for caller.
                        fFieldStart = result.length();
                    }
                    // Record field information
                    if (iFieldEnd == -1) {
                        iFieldEnd = result.length();
                    }
                    /* XXX: Assumed to be a nop
	                      delegate.formatted(INTEGER_FIELD, Field.INTEGER, Field.INTEGER,
	                      iFieldStart, iFieldEnd, result);
	                      if (addedDecimalSeparator) {
	                      delegate.formatted(Field.DECIMAL_SEPARATOR,
	                      Field.DECIMAL_SEPARATOR,
	                      iFieldEnd, fFieldStart, result);
	                      }
						 */
                    if (fFieldStart == -1) {
                        fFieldStart = result.length();
                    }
                    /* XXX: Assumed to be a nop
	                      delegate.formatted(FRACTION_FIELD, Field.FRACTION, Field.FRACTION,
	                      fFieldStart, result.length(), result);
						 */
                    // The exponent is output using the pattern-specified minimum
                    // exponent digits.  There is no maximum limit to the exponent
                    // digits, since truncating the exponent would result in an
                    // unacceptable inaccuracy.
                    int fieldStart = result.length();
                    result.append(symbols.getExponentSeparator());
                    // is used to determine integer digit count above.
                    if (digitList.isZero()) {
                        exponent = 0;
                    }
                    boolean negativeExponent = exponent < 0;
                    if (negativeExponent) {
                        exponent = -exponent;
                        fieldStart = result.length();
                        result.append(symbols.getMinusSign());
                    /* XXX: Assumed to be a nop
	                         delegate.formatted(Field.EXPONENT_SIGN, Field.EXPONENT_SIGN,
	                         fieldStart, result.length(), result);
							 */
                    }
                    digitList.set(negativeExponent, exponent);
                    int eFieldStart = result.length();
                    for (int i = digitList.decimalAt; i < minExponentDigits; ++i) {
                        result.append(zero);
                    }
                    for (int i = 0; i < digitList.decimalAt; ++i) {
                        result.append((i < digitList.count) ? (char) (digitList.digits[i] + zeroDelta) : zero);
                    }
                /* XXX: Assumed to be a nop
	                      delegate.formatted(Field.EXPONENT, Field.EXPONENT, eFieldStart,
	                      result.length(), result);
						 */
                } else {
                    int iFieldStart = result.length();
                    // Output the integer portion.  Here 'count' is the total
                    // number of integer digits we will display, including both
                    // leading zeros required to satisfy getMinimumIntegerDigits,
                    // and actual digits present in the number.
                    int count = minIntDigits;
                    // Index into digitList.fDigits[]
                    int digitIndex = 0;
                    if (digitList.decimalAt > 0 && count < digitList.decimalAt) {
                        count = digitList.decimalAt;
                    }
                    // the value 1997 printed with 2 max integer digits is just "97".
                    if (count > maxIntDigits) {
                        count = maxIntDigits;
                        digitIndex = digitList.decimalAt - count;
                    }
                    int sizeBeforeIntegerPart = result.length();
                    for (int i = count - 1; i >= 0; --i) {
                        if (i < digitList.decimalAt && digitIndex < digitList.count) {
                            // Output a real digit
                            result.append((char) (digitList.digits[digitIndex++] + zeroDelta));
                        } else {
                            // Output a leading zero
                            result.append(zero);
                        }
                        // the integer part.
                        if (isGroupingUsed(df) && i > 0 && (groupingSize != 0) && (i % groupingSize == 0)) {
                            int gStart = result.length();
                            result.append(grouping);
                        /* XXX: Assumed to be a nop
		                            delegate.formatted(Field.GROUPING_SEPARATOR,
		                            Field.GROUPING_SEPARATOR, gStart,
		                            result.length(), result);
								 */
                        }
                    }
                    // Determine whether or not there are any printable fractional
                    // digits.  If we've used up the digits we know there aren't.
                    boolean fractionPresent = (minFraDigits > 0) || (!isInteger && digitIndex < digitList.count && !digitList.isZero());
                    // _any_ digits, and we won't be able to parse this string.
                    if (!fractionPresent && result.length() == sizeBeforeIntegerPart) {
                        result.append(zero);
                    }
                    /* XXX: Assumed to be a nop
	                      delegate.formatted(INTEGER_FIELD, Field.INTEGER, Field.INTEGER,
	                      iFieldStart, result.length(), result);
						 */
                    // Output the decimal separator if we always do so.
                    int sStart = result.length();
                    if (decimalSeparatorAlwaysShown || fractionPresent) {
                        result.append(decimal);
                    }
                    /* XXX: Assumed to be a nop
	                      if (sStart != result.length()) {
	                      delegate.formatted(Field.DECIMAL_SEPARATOR,
	                      Field.DECIMAL_SEPARATOR,
	                      sStart, result.length(), result);
	                      }*/
                    int fFieldStart = result.length();
                    for (int i = 0; i < maxFraDigits; ++i) {
                        // display, or we're out of significant digits.
                        if (i >= minFraDigits && (isInteger || digitIndex >= digitList.count)) {
                            break;
                        }
                        // are only output if abs(number being formatted) < 1.0.
                        if (-1 - i > (digitList.decimalAt - 1)) {
                            result.append(zero);
                            continue;
                        }
                        // zero if we don't.  We don't want to output noise digits.
                        if (!isInteger && digitIndex < digitList.count) {
                            result.append((char) (digitList.digits[digitIndex++] + zeroDelta));
                        } else {
                            result.append(zero);
                        }
                    }
                // Record field information for caller.
                /* XXX: Assumed to be a nop
	                      delegate.formatted(FRACTION_FIELD, Field.FRACTION, Field.FRACTION,
	                      fFieldStart, result.length(), result);
						 */
                }
                /*
	                private static void append(DecimalFormat df, StringBuilder result, String string,
                                   FieldDelegate delegate,
                                   FieldPosition[] positions,
                                   Format.Field signAttribute)
					 */
                {
                    String string;
                    if (isNegative) {
                        string = negativeSuffix;
                    // positions = getNegativeSuffixFieldPositions(df);
                    } else {
                        string = positiveSuffix;
                    // positions = getPositiveSuffixFieldPositions(df);
                    }
                    if (string.length() > 0) {
                        result.append(string);
                    /*
	                      	for (int counter = 0, max = positions.length; counter < max;
	                           counter++) {
	                         FieldPosition fp = positions[counter];
	                         Format.Field attribute = fp.getFieldAttribute();
	
	                         if (attribute == Field.SIGN) {
	                            attribute = signAttribute;
	                         }*/
                    /* XXX: Assumed to be a nop
	                            delegate.formatted(attribute, attribute,
	                            start + fp.getBeginIndex(),
	                            start + fp.getEndIndex(), result);
	    					*/
                    // }
                    }
                }
                return result.toString();
            }
        }
    } else {
        return df.format(number.floatValue());
    }
}
Also used : StringBuilder(java.lang.StringBuilder) String(java.lang.String)

Example 9 with StringBuilder

use of java.lang.StringBuilder in project openj9 by eclipse.

the class DecimalFormatHelper method formatAsDouble.

/**
 * The implementation of format needs to follow the implementation of
 * java.text.DecimalFormat.format methods in regards to setting
 * maxIntDigits, minIntDigits, etc.
 *
 * The only difference between formatAsDouble and formatAsFloat is what they
 * do when the representation of number is not LL (long lookaside). There are
 * two ways to avoid this duplication and both involve more work that duplicating
 * the code, i.e., the approach chosen here.
 * 1) passing a third parameter to DecimalFormatHelper.format from the jit. Since
 *    the jit cannot simply add one child to an existing call node, we need to
 *    create a new node with one more child and then copy everything over from the original
 *    node. Then we need to fix up all the places referring to the old node, i.e., too much work
 *
 * 2) we could have two format methods in DecimalFormatHelper but refactor their common
 *    code. The problem with this approach is that we need to make sure we inline
 *    the method that contains the common code. That's fairly complicated to achieve.
 *
 * @param df   the object on which format was called
 * @param number   the object on which doubleValue or floatValue() is called
 * @return the formatted string
 */
private static String formatAsDouble(DecimalFormat df, BigDecimal number) {
    if ((flags & 0x00000001) != 0) {
        // The optimization is possible if the representation of the BigDecimal object,
        // number, is long lookaside (LL)
        INSTANCE.setBeginIndex(0);
        INSTANCE.setEndIndex(0);
        if (multiplier != 1)
            number = number.multiply(getBigDecimalMultiplier(df));
        boolean isNegative = number.signum() == -1;
        synchronized (digitList) {
            int maxIntDigits = df.getMaximumIntegerDigits();
            int minIntDigits = df.getMinimumIntegerDigits();
            int maxFraDigits = df.getMaximumFractionDigits();
            int minFraDigits = df.getMinimumFractionDigits();
            if (laside == 0) {
                digitList.digits[0] = '0';
                digitList.count = 1;
                digitList.decimalAt = 0;
            } else {
                long intVal = laside;
                long intTmpVal;
                long sign = (laside >> 63) | ((-laside) >>> 63);
                int length = number.precision();
                if (sign == -1)
                    intVal = -intVal;
                int d = length - 1;
                while (intVal != 0) {
                    intTmpVal = intVal;
                    intVal = intVal / 100;
                    int rem = (byte) (intTmpVal - ((intVal << 6) + (intVal << 5) + (intVal << 2)));
                    digitList.digits[d--] = doubleDigitsOnes[rem];
                    if (d >= 0)
                        digitList.digits[d--] = doubleDigitsTens[rem];
                }
                digitList.count = length;
                digitList.decimalAt = -scale + length;
            }
            /*
    			return subformat(df, new StringBuffer(), INSTANCE.getFieldDelegate(), isNegative, false,
    					maxIntDigits, minIntDigits, maxFraDigits, minFraDigits).toString();
    					*/
            /* Original DecimalFormat.subformat was called as above, with a synchronized StringBuffer object
				   that we know will never be accessed by more than one thread. In order to get rid of that
				   we duplicate the subformat code (and all other methods it calls that need symbol substitution)
				   here and replace StringBuffer with StringBuilder.
				   We also omit calls to the delegate because it 1) it expects a StringBuffer and 2) it is
				   assumed to be a DontCareFieldDelegate, which does nothing. */
            /*
				private static StringBuilder subformat(DecimalFormat df, StringBuilder result, FieldDelegate delegate,
													   boolean isNegative, boolean isInteger,
													   int maxIntDigits, int minIntDigits,
													   int maxFraDigits, int minFraDigits)
    			 									   */
            {
                final boolean isInteger = false;
                StringBuilder result = new StringBuilder();
                FieldDelegate delegate = INSTANCE.getFieldDelegate();
                // NOTE: This isn't required anymore because DigitList takes care of this.
                // 
                // // The negative of the exponent represents the number of leading
                // // zeros between the decimal and the first non-zero digit, for
                // // a value < 0.1 (e.g., for 0.00123, -fExponent == 2).  If this
                // // is more than the maximum fraction digits, then we have an underflow
                // // for the printed representation.  We recognize this here and set
                // // the DigitList representation to zero in this situation.
                // 
                // if (-digitList.decimalAt >= getMaximumFractionDigits())
                // {
                // digitList.count = 0;
                // }
                char zero = symbols.getZeroDigit();
                // '0' is the DigitList representation of zero
                int zeroDelta = zero - '0';
                char grouping = symbols.getGroupingSeparator();
                char decimal = isCurrencyFormat ? symbols.getMonetaryDecimalSeparator() : symbols.getDecimalSeparator();
                /* Per bug 4147706, DecimalFormat must respect the sign of numbers which
					 * format as zero.  This allows sensible computations and preserves
					 * relations such as signum(1/x) = signum(x), where x is +Infinity or
					 * -Infinity.  Prior to this fix, we always formatted zero values as if
					 * they were positive.  Liu 7/6/98.
					 */
                if (digitList.isZero()) {
                    // Normalize
                    digitList.decimalAt = 0;
                }
                /*
					private static void append(DecimalFormat df, StringBuilder result, String string,
											   FieldDelegate delegate,
											   FieldPosition[] positions,
											   Format.Field signAttribute)
					 */
                {
                    String string;
                    if (isNegative) {
                        string = negativePrefix;
                    // positions = getNegativePrefixFieldPositions(df);
                    } else {
                        string = positivePrefix;
                    // positions = getPositivePrefixFieldPositions(df);
                    }
                    if (string.length() > 0) {
                        result.append(string);
                    /*
							for (int counter = 0, max = positions.length; counter < max;
								 counter++) {
								FieldPosition fp = positions[counter];
								Format.Field attribute = fp.getFieldAttribute();

								if (attribute == Field.SIGN) {
									attribute = signAttribute;
							}*/
                    /* XXX: Assumed to be a nop
							   delegate.formatted(attribute, attribute,
							   start + fp.getBeginIndex(),
							   start + fp.getEndIndex(), result);
							 */
                    // }
                    }
                }
                if (useExponentialNotation) {
                    int iFieldStart = result.length();
                    int iFieldEnd = -1;
                    int fFieldStart = -1;
                    // Minimum integer digits are handled in exponential format by
                    // adjusting the exponent.  For example, 0.01234 with 3 minimum
                    // integer digits is "123.4E-4".
                    // Maximum integer digits are interpreted as indicating the
                    // repeating range.  This is useful for engineering notation, in
                    // which the exponent is restricted to a multiple of 3.  For
                    // example, 0.01234 with 3 maximum integer digits is "12.34e-3".
                    // If maximum integer digits are > 1 and are larger than
                    // minimum integer digits, then minimum integer digits are
                    // ignored.
                    int exponent = digitList.decimalAt;
                    int repeat = maxIntDigits;
                    int minimumIntegerDigits = minIntDigits;
                    if (repeat > 1 && repeat > minIntDigits) {
                        // it is for the format 0.MMMMMx10^n.
                        if (exponent >= 1) {
                            exponent = ((exponent - 1) / repeat) * repeat;
                        } else {
                            // integer division rounds towards 0
                            exponent = ((exponent - repeat) / repeat) * repeat;
                        }
                        minimumIntegerDigits = 1;
                    } else {
                        // No repeating range is defined; use minimum integer digits.
                        exponent -= minimumIntegerDigits;
                    }
                    // We now output a minimum number of digits, and more if there
                    // are more digits, up to the maximum number of digits.  We
                    // place the decimal point after the "integer" digits, which
                    // are the first (decimalAt - exponent) digits.
                    int minimumDigits = minIntDigits + minFraDigits;
                    if (minimumDigits < 0) {
                        // overflow?
                        minimumDigits = Integer.MAX_VALUE;
                    }
                    // The number of integer digits is handled specially if the number
                    // is zero, since then there may be no digits.
                    int integerDigits = digitList.isZero() ? minimumIntegerDigits : digitList.decimalAt - exponent;
                    if (minimumDigits < integerDigits) {
                        minimumDigits = integerDigits;
                    }
                    int totalDigits = digitList.count;
                    if (minimumDigits > totalDigits) {
                        totalDigits = minimumDigits;
                    }
                    boolean addedDecimalSeparator = false;
                    for (int i = 0; i < totalDigits; ++i) {
                        if (i == integerDigits) {
                            // Record field information for caller.
                            iFieldEnd = result.length();
                            result.append(decimal);
                            addedDecimalSeparator = true;
                            // Record field information for caller.
                            fFieldStart = result.length();
                        }
                        result.append((i < digitList.count) ? (char) (digitList.digits[i] + zeroDelta) : zero);
                    }
                    if (decimalSeparatorAlwaysShown && totalDigits == integerDigits) {
                        // Record field information for caller.
                        iFieldEnd = result.length();
                        result.append(decimal);
                        addedDecimalSeparator = true;
                        // Record field information for caller.
                        fFieldStart = result.length();
                    }
                    // Record field information
                    if (iFieldEnd == -1) {
                        iFieldEnd = result.length();
                    }
                    /* XXX: Assumed to be a nop
						   delegate.formatted(INTEGER_FIELD, Field.INTEGER, Field.INTEGER,
						   iFieldStart, iFieldEnd, result);
						   if (addedDecimalSeparator) {
						   delegate.formatted(Field.DECIMAL_SEPARATOR,
						   Field.DECIMAL_SEPARATOR,
						   iFieldEnd, fFieldStart, result);
						   }
						 */
                    if (fFieldStart == -1) {
                        fFieldStart = result.length();
                    }
                    /* XXX: Assumed to be a nop
						   delegate.formatted(FRACTION_FIELD, Field.FRACTION, Field.FRACTION,
						   fFieldStart, result.length(), result);
						 */
                    // The exponent is output using the pattern-specified minimum
                    // exponent digits.  There is no maximum limit to the exponent
                    // digits, since truncating the exponent would result in an
                    // unacceptable inaccuracy.
                    int fieldStart = result.length();
                    result.append(symbols.getExponentSeparator());
                    // is used to determine integer digit count above.
                    if (digitList.isZero()) {
                        exponent = 0;
                    }
                    boolean negativeExponent = exponent < 0;
                    if (negativeExponent) {
                        exponent = -exponent;
                        fieldStart = result.length();
                        result.append(symbols.getMinusSign());
                    /* XXX: Assumed to be a nop
							   delegate.formatted(Field.EXPONENT_SIGN, Field.EXPONENT_SIGN,
							   fieldStart, result.length(), result);
							 */
                    }
                    digitList.set(negativeExponent, exponent);
                    int eFieldStart = result.length();
                    for (int i = digitList.decimalAt; i < minExponentDigits; ++i) {
                        result.append(zero);
                    }
                    for (int i = 0; i < digitList.decimalAt; ++i) {
                        result.append((i < digitList.count) ? (char) (digitList.digits[i] + zeroDelta) : zero);
                    }
                /* XXX: Assumed to be a nop
						   delegate.formatted(Field.EXPONENT, Field.EXPONENT, eFieldStart,
						   result.length(), result);
						 */
                } else {
                    int iFieldStart = result.length();
                    // Output the integer portion.  Here 'count' is the total
                    // number of integer digits we will display, including both
                    // leading zeros required to satisfy getMinimumIntegerDigits,
                    // and actual digits present in the number.
                    int count = minIntDigits;
                    // Index into digitList.fDigits[]
                    int digitIndex = 0;
                    if (digitList.decimalAt > 0 && count < digitList.decimalAt) {
                        count = digitList.decimalAt;
                    }
                    // the value 1997 printed with 2 max integer digits is just "97".
                    if (count > maxIntDigits) {
                        count = maxIntDigits;
                        digitIndex = digitList.decimalAt - count;
                    }
                    int sizeBeforeIntegerPart = result.length();
                    for (int i = count - 1; i >= 0; --i) {
                        if (i < digitList.decimalAt && digitIndex < digitList.count) {
                            // Output a real digit
                            result.append((char) (digitList.digits[digitIndex++] + zeroDelta));
                        } else {
                            // Output a leading zero
                            result.append(zero);
                        }
                        // the integer part.
                        if (isGroupingUsed(df) && i > 0 && (groupingSize != 0) && (i % groupingSize == 0)) {
                            int gStart = result.length();
                            result.append(grouping);
                        /* XXX: Assumed to be a nop
								   delegate.formatted(Field.GROUPING_SEPARATOR,
								   Field.GROUPING_SEPARATOR, gStart,
								   result.length(), result);
								 */
                        }
                    }
                    // Determine whether or not there are any printable fractional
                    // digits.  If we've used up the digits we know there aren't.
                    boolean fractionPresent = (minFraDigits > 0) || (!isInteger && digitIndex < digitList.count && !digitList.isZero());
                    // _any_ digits, and we won't be able to parse this string.
                    if (!fractionPresent && result.length() == sizeBeforeIntegerPart) {
                        result.append(zero);
                    }
                    /* XXX: Assumed to be a nop
						   delegate.formatted(INTEGER_FIELD, Field.INTEGER, Field.INTEGER,
						   iFieldStart, result.length(), result);
						 */
                    // Output the decimal separator if we always do so.
                    int sStart = result.length();
                    if (decimalSeparatorAlwaysShown || fractionPresent) {
                        result.append(decimal);
                    }
                    /* XXX: Assumed to be a nop
						   if (sStart != result.length()) {
						   delegate.formatted(Field.DECIMAL_SEPARATOR,
						   Field.DECIMAL_SEPARATOR,
						   sStart, result.length(), result);
						   }*/
                    int fFieldStart = result.length();
                    for (int i = 0; i < maxFraDigits; ++i) {
                        // display, or we're out of significant digits.
                        if (i >= minFraDigits && (isInteger || digitIndex >= digitList.count)) {
                            break;
                        }
                        // are only output if abs(number being formatted) < 1.0.
                        if (-1 - i > (digitList.decimalAt - 1)) {
                            result.append(zero);
                            continue;
                        }
                        // zero if we don't.  We don't want to output noise digits.
                        if (!isInteger && digitIndex < digitList.count) {
                            result.append((char) (digitList.digits[digitIndex++] + zeroDelta));
                        } else {
                            result.append(zero);
                        }
                    }
                // Record field information for caller.
                /* XXX: Assumed to be a nop
						   delegate.formatted(FRACTION_FIELD, Field.FRACTION, Field.FRACTION,
						   fFieldStart, result.length(), result);
						 */
                }
                /*
					private static void append(DecimalFormat df, StringBuilder result, String string,
											   FieldDelegate delegate,
											   FieldPosition[] positions,
											   Format.Field signAttribute)
					 */
                {
                    String string;
                    if (isNegative) {
                        string = negativeSuffix;
                    // positions = getNegativeSuffixFieldPositions(df);
                    } else {
                        string = positiveSuffix;
                    // positions = getPositiveSuffixFieldPositions(df);
                    }
                    if (string.length() > 0) {
                        result.append(string);
                    /*
							for (int counter = 0, max = positions.length; counter < max;
								 counter++) {
								FieldPosition fp = positions[counter];
								Format.Field attribute = fp.getFieldAttribute();

								if (attribute == Field.SIGN) {
									attribute = signAttribute;
								}*/
                    /* XXX: Assumed to be a nop
								   delegate.formatted(attribute, attribute,
								   start + fp.getBeginIndex(),
								   start + fp.getEndIndex(), result);
								 */
                    // }
                    }
                }
                return result.toString();
            }
        }
    } else {
        return df.format(number.doubleValue());
    }
}
Also used : StringBuilder(java.lang.StringBuilder) String(java.lang.String)

Example 10 with StringBuilder

use of java.lang.StringBuilder in project android_packages_apps_Snap by LineageOS.

the class SettingsManager method buildExposureCompensation.

private void buildExposureCompensation(int cameraId) {
    Range<Integer> range = mCharacteristics.get(cameraId).get(CameraCharacteristics.CONTROL_AE_COMPENSATION_RANGE);
    int max = range.getUpper();
    int min = range.getLower();
    if (min == 0 && max == 0) {
        removePreference(mPreferenceGroup, KEY_EXPOSURE);
        return;
    }
    ListPreference pref = mPreferenceGroup.findPreference(KEY_EXPOSURE);
    Rational rational = mCharacteristics.get(cameraId).get(CameraCharacteristics.CONTROL_AE_COMPENSATION_STEP);
    double step = rational.doubleValue();
    int increment = 1;
    while ((max - min) / increment > 10) {
        increment++;
    }
    int start = min;
    if (start < 0) {
        while (Math.abs(start) % increment != 0) {
            start++;
        }
    }
    int size = 0;
    for (int i = start; i <= max; i += increment) size++;
    CharSequence[] entries = new CharSequence[size];
    CharSequence[] entryValues = new CharSequence[size];
    int count = 0;
    for (int i = start; i <= max; i += increment, count++) {
        entryValues[count] = Integer.toString(i);
        StringBuilder builder = new StringBuilder();
        if (i > 0)
            builder.append('+');
        DecimalFormat format = new DecimalFormat("#.##");
        entries[count] = builder.append(format.format(i * step)).toString();
    }
    pref.setEntries(entries);
    pref.setEntryValues(entryValues);
}
Also used : Rational(android.util.Rational) StringBuilder(java.lang.StringBuilder) DecimalFormat(java.text.DecimalFormat)

Aggregations

StringBuilder (java.lang.StringBuilder)40 Override (java.lang.Override)9 String (java.lang.String)6 IOException (java.io.IOException)5 BufferedReader (java.io.BufferedReader)4 BufferedWriter (java.io.BufferedWriter)2 File (java.io.File)2 NumberFormatException (java.lang.NumberFormatException)2 Object (java.lang.Object)2 ArrayList (java.util.ArrayList)2 Chromosome (PedigreeSim.Chromosome)1 Individual (PedigreeSim.Individual)1 Locus (PedigreeSim.Locus)1 Rational (android.util.Rational)1 Digest (cz1.gbs.core.Digest)1 ByteArrayInputStream (java.io.ByteArrayInputStream)1 FileReader (java.io.FileReader)1 InputStreamReader (java.io.InputStreamReader)1 UnsupportedEncodingException (java.io.UnsupportedEncodingException)1 RuntimeException (java.lang.RuntimeException)1