View Javadoc
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  
18  package org.apache.commons.configuration2.beanutils;
19  
20  import java.lang.reflect.Array;
21  import java.util.Collection;
22  import java.util.List;
23  import java.util.Objects;
24  
25  import org.apache.commons.beanutils.DynaBean;
26  import org.apache.commons.beanutils.DynaClass;
27  import org.apache.commons.configuration2.Configuration;
28  import org.apache.commons.configuration2.ConfigurationMap;
29  import org.apache.commons.configuration2.SubsetConfiguration;
30  import org.apache.commons.logging.Log;
31  import org.apache.commons.logging.LogFactory;
32  
33  /**
34   * The {@code ConfigurationDynaBean} dynamically reads and writes configurations properties from a wrapped
35   * configuration-collection {@link org.apache.commons.configuration2.Configuration} instance. It also implements a
36   * {@link java.util.Map} interface so that it can be used in JSP 2.0 Expression Language expressions.
37   *
38   * <p>
39   * The {@code ConfigurationDynaBean} maps nested and mapped properties to the appropriate {@code Configuration} subset
40   * using the {@link org.apache.commons.configuration2.Configuration#subset} method. Similarly, indexed properties
41   * reference lists of configuration properties using the
42   * {@link org.apache.commons.configuration2.Configuration#getList(String)} method. Setting an indexed property is
43   * supported, too.
44   * </p>
45   *
46   * <p>
47   * Note: Some of the methods expect that a dot (&quot;.&quot;) is used as property delimiter for the wrapped
48   * configuration. This is true for most of the default configurations. Hierarchical configurations, for which a specific
49   * expression engine is set, may cause problems.
50   * </p>
51   *
52   * @since 1.0-rc1
53   */
54  public class ConfigurationDynaBean extends ConfigurationMap implements DynaBean {
55  
56      /** Constant for the property delimiter. */
57      private static final String PROPERTY_DELIMITER = ".";
58  
59      /** The logger. */
60      private static final Log LOG = LogFactory.getLog(ConfigurationDynaBean.class);
61  
62      /**
63       * Constructs a new instance of {@code ConfigurationDynaBean} and sets the configuration this bean is associated with.
64       *
65       * @param configuration the configuration
66       */
67      public ConfigurationDynaBean(final Configuration configuration) {
68          super(configuration);
69          if (LOG.isTraceEnabled()) {
70              LOG.trace("ConfigurationDynaBean(" + configuration + ")");
71          }
72      }
73  
74      @Override
75      public void set(final String name, final Object value) {
76          if (LOG.isTraceEnabled()) {
77              LOG.trace("set(" + name + "," + value + ")");
78          }
79          Objects.requireNonNull(value, "Error trying to set property to null.");
80  
81          if (value instanceof Collection) {
82              final Collection<?> collection = (Collection<?>) value;
83              collection.forEach(v -> getConfiguration().addProperty(name, v));
84          } else if (value.getClass().isArray()) {
85              final int length = Array.getLength(value);
86              for (int i = 0; i < length; i++) {
87                  getConfiguration().addProperty(name, Array.get(value, i));
88              }
89          } else {
90              getConfiguration().setProperty(name, value);
91          }
92      }
93  
94      @Override
95      public Object get(final String name) {
96          if (LOG.isTraceEnabled()) {
97              LOG.trace("get(" + name + ")");
98          }
99  
100         // get configuration property
101         Object result = getConfiguration().getProperty(name);
102         if (result == null) {
103             // otherwise attempt to create bean from configuration subset
104             final Configuration subset = new SubsetConfiguration(getConfiguration(), name, PROPERTY_DELIMITER);
105             if (!subset.isEmpty()) {
106                 result = new ConfigurationDynaBean(subset);
107             }
108         }
109 
110         if (LOG.isDebugEnabled()) {
111             LOG.debug(name + "=[" + result + "]");
112         }
113 
114         if (result == null) {
115             throw new IllegalArgumentException("Property '" + name + "' does not exist.");
116         }
117         return result;
118     }
119 
120     @Override
121     public boolean contains(final String name, final String key) {
122         final Configuration subset = getConfiguration().subset(name);
123         if (subset == null) {
124             throw new IllegalArgumentException("Mapped property '" + name + "' does not exist.");
125         }
126 
127         return subset.containsKey(key);
128     }
129 
130     @Override
131     public Object get(final String name, final int index) {
132         if (!checkIndexedProperty(name)) {
133             throw new IllegalArgumentException("Property '" + name + "' is not indexed.");
134         }
135 
136         final List<Object> list = getConfiguration().getList(name);
137         return list.get(index);
138     }
139 
140     @Override
141     public Object get(final String name, final String key) {
142         final Configuration subset = getConfiguration().subset(name);
143         if (subset == null) {
144             throw new IllegalArgumentException("Mapped property '" + name + "' does not exist.");
145         }
146 
147         return subset.getProperty(key);
148     }
149 
150     @Override
151     public DynaClass getDynaClass() {
152         return new ConfigurationDynaClass(getConfiguration());
153     }
154 
155     @Override
156     public void remove(final String name, final String key) {
157         final Configuration subset = new SubsetConfiguration(getConfiguration(), name, PROPERTY_DELIMITER);
158         subset.setProperty(key, null);
159     }
160 
161     @Override
162     public void set(final String name, final int index, final Object value) {
163         if (!checkIndexedProperty(name) && index > 0) {
164             throw new IllegalArgumentException("Property '" + name + "' is not indexed.");
165         }
166 
167         final Object property = getConfiguration().getProperty(name);
168 
169         if (property instanceof List) {
170             // This is safe because multiple values of a configuration property
171             // are always stored as lists of type Object.
172             @SuppressWarnings("unchecked")
173             final List<Object> list = (List<Object>) property;
174             list.set(index, value);
175             getConfiguration().setProperty(name, list);
176         } else if (property.getClass().isArray()) {
177             Array.set(property, index, value);
178         } else if (index == 0) {
179             getConfiguration().setProperty(name, value);
180         }
181     }
182 
183     @Override
184     public void set(final String name, final String key, final Object value) {
185         getConfiguration().setProperty(name + "." + key, value);
186     }
187 
188     /**
189      * Checks whether the given name references an indexed property. This implementation tests for properties of type list or
190      * array. If the property does not exist, an exception is thrown.
191      *
192      * @param name the name of the property to check
193      * @return a flag whether this is an indexed property
194      * @throws IllegalArgumentException if the property does not exist
195      */
196     private boolean checkIndexedProperty(final String name) {
197         final Object property = getConfiguration().getProperty(name);
198 
199         if (property == null) {
200             throw new IllegalArgumentException("Property '" + name + "' does not exist.");
201         }
202 
203         return property instanceof List || property.getClass().isArray();
204     }
205 }