View Javadoc
1   package org.codehaus.plexus.component.configurator.converters.composite;
2   
3   /*
4    * The MIT License
5    *
6    * Copyright (c) 2004, The Codehaus
7    *
8    * Permission is hereby granted, free of charge, to any person obtaining a copy of
9    * this software and associated documentation files (the "Software"), to deal in
10   * the Software without restriction, including without limitation the rights to
11   * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
12   * of the Software, and to permit persons to whom the Software is furnished to do
13   * so, subject to the following conditions:
14   *
15   * The above copyright notice and this permission notice shall be included in all
16   * copies or substantial portions of the Software.
17   *
18   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24   * SOFTWARE.
25   */
26  
27  import java.util.Properties;
28  
29  import org.codehaus.plexus.component.configurator.ComponentConfigurationException;
30  import org.codehaus.plexus.component.configurator.ConfigurationListener;
31  import org.codehaus.plexus.component.configurator.converters.AbstractConfigurationConverter;
32  import org.codehaus.plexus.component.configurator.converters.lookup.ConverterLookup;
33  import org.codehaus.plexus.component.configurator.expression.ExpressionEvaluator;
34  import org.codehaus.plexus.configuration.PlexusConfiguration;
35  
36  /**
37   * Converter for <code>java.util.Properties</code>.
38   *
39   * @author <a href="mailto:michal@codehaus.org">Michal Maczka</a>
40   */
41  public class PropertiesConverter extends AbstractConfigurationConverter {
42      public boolean canConvert(Class type) {
43          return Properties.class.isAssignableFrom(type);
44      }
45  
46      public Object fromConfiguration(
47              ConverterLookup converterLookup,
48              PlexusConfiguration configuration,
49              Class type,
50              Class baseType,
51              ClassLoader classLoader,
52              ExpressionEvaluator expressionEvaluator,
53              ConfigurationListener listener)
54              throws ComponentConfigurationException {
55  
56          Object retValueInterpolated = fromExpression(configuration, expressionEvaluator, type);
57          if (retValueInterpolated != null) {
58              return retValueInterpolated;
59          }
60  
61          String element = configuration.getName();
62  
63          Properties retValue = new Properties();
64  
65          PlexusConfiguration[] children = configuration.getChildren("property");
66  
67          if (children != null && children.length > 0) {
68              for (PlexusConfiguration child : children) {
69                  addEntry(retValue, element, child, expressionEvaluator);
70              }
71          }
72  
73          return retValue;
74      }
75  
76      private void addEntry(
77              Properties properties,
78              String element,
79              PlexusConfiguration property,
80              ExpressionEvaluator expressionEvaluator)
81              throws ComponentConfigurationException {
82          Object name = fromExpression(property.getChild("name"), expressionEvaluator);
83  
84          if (name == null) {
85              String msg = "Trying to convert the configuration element: '" + element
86                      + "', missing child element 'name' for property.";
87  
88              throw new ComponentConfigurationException(msg);
89          }
90  
91          Object value = fromExpression(property.getChild("value"), expressionEvaluator);
92  
93          if (value == null) {
94              properties.setProperty(name.toString(), "");
95          } else {
96              properties.setProperty(name.toString(), value.toString());
97          }
98      }
99  }