StrLookup.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.Map;

  19. /**
  20.  * Lookup a String key to a String value.
  21.  * <p>
  22.  * This class represents the simplest form of a string to string map.
  23.  * It has a benefit over a map in that it can create the result on
  24.  * demand based on the key.
  25.  * <p>
  26.  * This class comes complete with various factory methods.
  27.  * If these do not suffice, you can subclass and implement your own matcher.
  28.  * <p>
  29.  * For example, it would be possible to implement a lookup that used the
  30.  * key as a primary key, and looked up the value on demand from the database
  31.  *
  32.  * @since 1.0
  33.  */
  34. public abstract class StrLookup<V> {

  35.     /**
  36.      * Lookup that always returns null.
  37.      */
  38.     private static final StrLookup<String> NONE_LOOKUP = new MapStrLookup<>(null);

  39.     /**
  40.      * Lookup based on system properties.
  41.      */
  42.     private static final StrLookup<String> SYSTEM_PROPERTIES_LOOKUP = new SystemPropertiesStrLookup();

  43.     //-----------------------------------------------------------------------
  44.     /**
  45.      * Returns a lookup which always returns null.
  46.      *
  47.      * @return a lookup that always returns null, not null
  48.      */
  49.     public static StrLookup<?> noneLookup() {
  50.         return NONE_LOOKUP;
  51.     }

  52.     /**
  53.      * Returns a new lookup which uses a copy of the current
  54.      * {@link System#getProperties() System properties}.
  55.      * <p>
  56.      * If a security manager blocked access to system properties, then null will
  57.      * be returned from every lookup.
  58.      * <p>
  59.      * If a null key is used, this lookup will throw a NullPointerException.
  60.      *
  61.      * @return a lookup using system properties, not null
  62.      */
  63.     public static StrLookup<String> systemPropertiesLookup() {
  64.         return SYSTEM_PROPERTIES_LOOKUP;
  65.     }

  66.     /**
  67.      * Returns a lookup which looks up values using a map.
  68.      * <p>
  69.      * If the map is null, then null will be returned from every lookup.
  70.      * The map result object is converted to a string using toString().
  71.      *
  72.      * @param <V> the type of the values supported by the lookup
  73.      * @param map  the map of keys to values, may be null
  74.      * @return a lookup using the map, not null
  75.      */
  76.     public static <V> StrLookup<V> mapLookup(final Map<String, V> map) {
  77.         return new MapStrLookup<>(map);
  78.     }

  79.     //-----------------------------------------------------------------------
  80.     /**
  81.      * Constructor.
  82.      */
  83.     protected StrLookup() {
  84.         super();
  85.     }

  86.     /**
  87.      * Looks up a String key to a String value.
  88.      * <p>
  89.      * The internal implementation may use any mechanism to return the value.
  90.      * The simplest implementation is to use a Map. However, virtually any
  91.      * implementation is possible.
  92.      * <p>
  93.      * For example, it would be possible to implement a lookup that used the
  94.      * key as a primary key, and looked up the value on demand from the database
  95.      * Or, a numeric based implementation could be created that treats the key
  96.      * as an integer, increments the value and return the result as a string -
  97.      * converting 1 to 2, 15 to 16 etc.
  98.      * <p>
  99.      * The {@link #lookup(String)} method always returns a String, regardless of
  100.      * the underlying data, by converting it as necessary. For example:
  101.      * <pre>
  102.      * Map&lt;String, Object&gt; map = new HashMap&lt;String, Object&gt;();
  103.      * map.put("number", Integer.valueOf(2));
  104.      * assertEquals("2", StrLookup.mapLookup(map).lookup("number"));
  105.      * </pre>
  106.      * @param key  the key to be looked up, may be null
  107.      * @return the matching value, null if no match
  108.      */
  109.     public abstract String lookup(String key);

  110.     //-----------------------------------------------------------------------
  111.     /**
  112.      * Lookup implementation that uses a Map.
  113.      */
  114.     static class MapStrLookup<V> extends StrLookup<V> {

  115.         /** Map keys are variable names and value. */
  116.         private final Map<String, V> map;

  117.         /**
  118.          * Creates a new instance backed by a Map.
  119.          *
  120.          * @param map  the map of keys to values, may be null
  121.          */
  122.         MapStrLookup(final Map<String, V> map) {
  123.             this.map = map;
  124.         }

  125.         /**
  126.          * Looks up a String key to a String value using the map.
  127.          * <p>
  128.          * If the map is null, then null is returned.
  129.          * The map result object is converted to a string using toString().
  130.          *
  131.          * @param key  the key to be looked up, may be null
  132.          * @return the matching value, null if no match
  133.          */
  134.         @Override
  135.         public String lookup(final String key) {
  136.             if (map == null) {
  137.                 return null;
  138.             }
  139.             final Object obj = map.get(key);
  140.             if (obj == null) {
  141.                 return null;
  142.             }
  143.             return obj.toString();
  144.         }
  145.     }

  146.     //-----------------------------------------------------------------------
  147.     /**
  148.      * Lookup implementation based on system properties.
  149.      */
  150.     private static class SystemPropertiesStrLookup extends StrLookup<String> {
  151.         /**
  152.          * {@inheritDoc} This implementation directly accesses system properties.
  153.          */
  154.         @Override
  155.         public String lookup(final String key) {
  156.             if (key.length() > 0) {
  157.                 try {
  158.                     return System.getProperty(key);
  159.                 } catch (final SecurityException scex) {
  160.                     // Squelched. All lookup(String) will return null.
  161.                 }
  162.             }
  163.             return null;
  164.         }
  165.     }
  166. }