FormattableUtils.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.text;

  18. import java.util.Formattable;
  19. import java.util.Formatter;

  20. import static java.util.FormattableFlags.LEFT_JUSTIFY;

  21. /**
  22.  * <p>Provides utilities for working with the {@code Formattable} interface.</p>
  23.  *
  24.  * <p>The {@link Formattable} interface provides basic control over formatting
  25.  * when using a {@code Formatter}. It is primarily concerned with numeric precision
  26.  * and padding, and is not designed to allow generalised alternate formats.</p>
  27.  *
  28.  * @since 1.0
  29.  *
  30.  */
  31. public class FormattableUtils {

  32.     /**
  33.      * A format that simply outputs the value as a string.
  34.      */
  35.     private static final String SIMPLEST_FORMAT = "%s";

  36.     /**
  37.      * <p>{@code FormattableUtils} instances should NOT be constructed in
  38.      * standard programming. Instead, the methods of the class should be invoked
  39.      * statically.</p>
  40.      *
  41.      * <p>This constructor is public to permit tools that require a JavaBean
  42.      * instance to operate.</p>
  43.      */
  44.     public FormattableUtils() {
  45.         super();
  46.     }

  47.     //-----------------------------------------------------------------------
  48.     /**
  49.      * Get the default formatted representation of the specified
  50.      * {@code Formattable}.
  51.      *
  52.      * @param formattable  the instance to convert to a string, not null
  53.      * @return the resulting string, not null
  54.      */
  55.     public static String toString(final Formattable formattable) {
  56.         return String.format(SIMPLEST_FORMAT, formattable);
  57.     }

  58.     /**
  59.      * Handles the common {@code Formattable} operations of truncate-pad-append,
  60.      * with no ellipsis on precision overflow, and padding width underflow with
  61.      * spaces.
  62.      *
  63.      * @param seq  the string to handle, not null
  64.      * @param formatter  the destination formatter, not null
  65.      * @param flags  the flags for formatting, see {@code Formattable}
  66.      * @param width  the width of the output, see {@code Formattable}
  67.      * @param precision  the precision of the output, see {@code Formattable}
  68.      * @return the {@code formatter} instance, not null
  69.      */
  70.     public static Formatter append(final CharSequence seq, final Formatter formatter, final int flags, final int width,
  71.             final int precision) {
  72.         return append(seq, formatter, flags, width, precision, ' ', null);
  73.     }

  74.     /**
  75.      * Handles the common {@link Formattable} operations of truncate-pad-append,
  76.      * with no ellipsis on precision overflow.
  77.      *
  78.      * @param seq  the string to handle, not null
  79.      * @param formatter  the destination formatter, not null
  80.      * @param flags  the flags for formatting, see {@code Formattable}
  81.      * @param width  the width of the output, see {@code Formattable}
  82.      * @param precision  the precision of the output, see {@code Formattable}
  83.      * @param padChar  the pad character to use
  84.      * @return the {@code formatter} instance, not null
  85.      */
  86.     public static Formatter append(final CharSequence seq, final Formatter formatter, final int flags, final int width,
  87.             final int precision, final char padChar) {
  88.         return append(seq, formatter, flags, width, precision, padChar, null);
  89.     }

  90.     /**
  91.      * Handles the common {@link Formattable} operations of truncate-pad-append,
  92.      * padding width underflow with spaces.
  93.      *
  94.      * @param seq  the string to handle, not null
  95.      * @param formatter  the destination formatter, not null
  96.      * @param flags  the flags for formatting, see {@code Formattable}
  97.      * @param width  the width of the output, see {@code Formattable}
  98.      * @param precision  the precision of the output, see {@code Formattable}
  99.      * @param ellipsis  the ellipsis to use when precision dictates truncation, null or
  100.      *  empty causes a hard truncation
  101.      * @return the {@code formatter} instance, not null
  102.      */
  103.     public static Formatter append(final CharSequence seq, final Formatter formatter, final int flags, final int width,
  104.             final int precision, final CharSequence ellipsis) {
  105.         return append(seq, formatter, flags, width, precision, ' ', ellipsis);
  106.     }

  107.     /**
  108.      * Handles the common {@link Formattable} operations of truncate-pad-append.
  109.      *
  110.      * @param seq  the string to handle, not null
  111.      * @param formatter  the destination formatter, not null
  112.      * @param flags  the flags for formatting, see {@code Formattable}
  113.      * @param width  the width of the output, see {@code Formattable}
  114.      * @param precision  the precision of the output, see {@code Formattable}
  115.      * @param padChar  the pad character to use
  116.      * @param ellipsis  the ellipsis to use when precision dictates truncation, null or
  117.      *  empty causes a hard truncation
  118.      * @return the {@code formatter} instance, not null
  119.      */
  120.     public static Formatter append(final CharSequence seq, final Formatter formatter, final int flags, final int width,
  121.             final int precision, final char padChar, final CharSequence ellipsis) {
  122.         if ( ! (ellipsis == null || precision < 0 || ellipsis.length() <= precision) ) {
  123.             throw new IllegalArgumentException(String.format("Specified ellipsis '%1$s' exceeds precision of %2$s", ellipsis, Integer.valueOf(precision)));
  124.         }
  125.         final StringBuilder buf = new StringBuilder(seq);
  126.         if (precision >= 0 && precision < seq.length()) {
  127.             final CharSequence _ellipsis;
  128.             if (ellipsis == null) {
  129.                 _ellipsis = "";
  130.             } else {
  131.                 _ellipsis = ellipsis;
  132.             }
  133.             buf.replace(precision - _ellipsis.length(), seq.length(), _ellipsis.toString());
  134.         }
  135.         final boolean leftJustify = (flags & LEFT_JUSTIFY) == LEFT_JUSTIFY;
  136.         for (int i = buf.length(); i < width; i++) {
  137.             buf.insert(leftJustify ? i : 0, padChar);
  138.         }
  139.         formatter.format(buf.toString());
  140.         return formatter;
  141.     }

  142. }