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.lang3.text;

  18. import java.util.Map;
  19. import java.util.Objects;

  20. import org.apache.commons.lang3.SystemProperties;

  21. /**
  22.  * Lookup a String key to a String value.
  23.  * <p>
  24.  * This class represents the simplest form of a string to string map.
  25.  * It has a benefit over a map in that it can create the result on
  26.  * demand based on the key.
  27.  * </p>
  28.  * <p>
  29.  * This class comes complete with various factory methods.
  30.  * If these do not suffice, you can subclass and implement your own matcher.
  31.  * </p>
  32.  * <p>
  33.  * For example, it would be possible to implement a lookup that used the
  34.  * key as a primary key, and looked up the value on demand from the database.
  35.  * </p>
  36.  *
  37.  * @param <V> Unused.
  38.  * @since 2.2
  39.  * @deprecated As of 3.6, use Apache Commons Text
  40.  * <a href="https://commons.apache.org/proper/commons-text/javadocs/api-release/org/apache/commons/text/lookup/StringLookupFactory.html">
  41.  * StringLookupFactory</a> instead
  42.  */
  43. @Deprecated
  44. public abstract class StrLookup<V> {

  45.     /**
  46.      * Lookup implementation that uses a Map.
  47.      *
  48.      * @param <V> the type of mapped values.
  49.      */
  50.     static class MapStrLookup<V> extends StrLookup<V> {

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

  53.         /**
  54.          * Creates a new instance backed by a Map.
  55.          *
  56.          * @param map  the map of keys to values, may be null
  57.          */
  58.         MapStrLookup(final Map<String, V> map) {
  59.             this.map = map;
  60.         }

  61.         /**
  62.          * Looks up a String key to a String value using the map.
  63.          * <p>
  64.          * If the map is null, then null is returned.
  65.          * The map result object is converted to a string using toString().
  66.          * </p>
  67.          *
  68.          * @param key  the key to be looked up, may be null
  69.          * @return the matching value, null if no match
  70.          */
  71.         @Override
  72.         public String lookup(final String key) {
  73.             if (map == null) {
  74.                 return null;
  75.             }
  76.             return Objects.toString(map.get(key), null);
  77.         }
  78.     }

  79.     /**
  80.      * Lookup implementation based on system properties.
  81.      */
  82.     private static final class SystemPropertiesStrLookup extends StrLookup<String> {
  83.         /**
  84.          * {@inheritDoc} This implementation directly accesses system properties.
  85.          */
  86.         @Override
  87.         public String lookup(final String key) {
  88.             return SystemProperties.getProperty(key);
  89.         }
  90.     }

  91.     /**
  92.      * Lookup that always returns null.
  93.      */
  94.     private static final StrLookup<String> NONE_LOOKUP = new MapStrLookup<>(null);

  95.     /**
  96.      * Lookup based on system properties.
  97.      */
  98.     private static final StrLookup<String> SYSTEM_PROPERTIES_LOOKUP = new SystemPropertiesStrLookup();

  99.     /**
  100.      * Returns a lookup which looks up values using a map.
  101.      * <p>
  102.      * If the map is null, then null will be returned from every lookup.
  103.      * The map result object is converted to a string using toString().
  104.      * </p>
  105.      *
  106.      * @param <V> the type of the values supported by the lookup
  107.      * @param map  the map of keys to values, may be null
  108.      * @return a lookup using the map, not null
  109.      */
  110.     public static <V> StrLookup<V> mapLookup(final Map<String, V> map) {
  111.         return new MapStrLookup<>(map);
  112.     }

  113.     /**
  114.      * Returns a lookup which always returns null.
  115.      *
  116.      * @return a lookup that always returns null, not null
  117.      */
  118.     public static StrLookup<?> noneLookup() {
  119.         return NONE_LOOKUP;
  120.     }

  121.     /**
  122.      * Returns a new lookup which uses a copy of the current
  123.      * {@link System#getProperties() System properties}.
  124.      * <p>
  125.      * If a security manager blocked access to system properties, then null will
  126.      * be returned from every lookup.
  127.      * </p>
  128.      * <p>
  129.      * If a null key is used, this lookup will throw a NullPointerException.
  130.      * </p>
  131.      *
  132.      * @return a lookup using system properties, not null
  133.      */
  134.     public static StrLookup<String> systemPropertiesLookup() {
  135.         return SYSTEM_PROPERTIES_LOOKUP;
  136.     }

  137.     /**
  138.      * Constructs a new instance.
  139.      */
  140.     protected StrLookup() {
  141.     }

  142.     /**
  143.      * Looks up a String key to a String value.
  144.      * <p>
  145.      * The internal implementation may use any mechanism to return the value.
  146.      * The simplest implementation is to use a Map. However, virtually any
  147.      * implementation is possible.
  148.      * </p>
  149.      * <p>
  150.      * For example, it would be possible to implement a lookup that used the
  151.      * key as a primary key, and looked up the value on demand from the database
  152.      * Or, a numeric based implementation could be created that treats the key
  153.      * as an integer, increments the value and return the result as a string -
  154.      * converting 1 to 2, 15 to 16 etc.
  155.      * </p>
  156.      * <p>
  157.      * The {@link #lookup(String)} method always returns a String, regardless of
  158.      * the underlying data, by converting it as necessary. For example:
  159.      * </p>
  160.      * <pre>{@code
  161.      * Map<String, Object> map = new HashMap<String, Object>();
  162.      * map.put("number", Integer.valueOf(2));
  163.      * assertEquals("2", StrLookup.mapLookup(map).lookup("number"));
  164.      * }</pre>
  165.      * @param key  the key to be looked up, may be null
  166.      * @return the matching value, null if no match
  167.      */
  168.     public abstract String lookup(String key);
  169. }