]> source.dussan.org Git - archiva.git/blob
ab64a661d4f006e87644082bc5cf75b63b975e13
[archiva.git] /
1 package org.apache.maven.archiva.configuration;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *   http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.maven.archiva.configuration.io.registry.ConfigurationRegistryReader;
23 import org.apache.maven.archiva.configuration.io.registry.ConfigurationRegistryWriter;
24 import org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable;
25 import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException;
26 import org.codehaus.plexus.registry.Registry;
27 import org.codehaus.plexus.registry.RegistryException;
28 import org.codehaus.plexus.registry.RegistryListener;
29 import org.codehaus.plexus.util.StringUtils;
30
31 import java.util.Iterator;
32
33 /**
34  * Implementation of configuration holder that retrieves it from the registry.
35  *
36  * @plexus.component
37  */
38 public class DefaultArchivaConfiguration
39     implements ArchivaConfiguration, RegistryListener, Initializable
40 {
41     /**
42      * Plexus registry to read the configuration from.
43      *
44      * @plexus.requirement role-hint="commons-configuration"
45      */
46     private Registry registry;
47
48     /**
49      * The configuration that has been converted.
50      */
51     private Configuration configuration;
52
53     private static final String KEY = "org.apache.maven.archiva";
54
55     public synchronized Configuration getConfiguration()
56     {
57         if ( configuration == null )
58         {
59             // TODO: should this be the same as section? make sure unnamed sections still work (eg, sys properties)
60             configuration = new ConfigurationRegistryReader().read( registry.getSubset( KEY ) );
61
62             // TODO: for commons-configuration 1.3 only
63             for ( Iterator i = configuration.getRepositories().iterator(); i.hasNext(); )
64             {
65                 RepositoryConfiguration c = (RepositoryConfiguration) i.next();
66                 c.setUrl( removeExpressions( c.getUrl() ) );
67             }
68         }
69         return configuration;
70     }
71
72     public void save( Configuration configuration )
73         throws RegistryException
74     {
75         Registry section = registry.getSection( KEY + ".user" );
76         if ( section == null )
77         {
78             section = registry.getSection( KEY + ".base" );
79         }
80         new ConfigurationRegistryWriter().write( configuration, section );
81         section.save();
82
83         this.configuration = configuration;
84     }
85
86     public void addChangeListener( RegistryListener listener )
87     {
88         Registry section = registry.getSection( KEY + ".user" );
89         if ( section != null )
90         {
91             section.addChangeListener( listener );
92         }
93         section = registry.getSection( KEY + ".base" );
94         if ( section != null )
95         {
96             section.addChangeListener( listener );
97         }
98     }
99
100     public void initialize()
101         throws InitializationException
102     {
103         registry.addChangeListener( this );
104     }
105
106     public void beforeConfigurationChange( Registry registry, String propertyName, Object propertyValue )
107     {
108         // nothing to do here
109     }
110
111     public void afterConfigurationChange( Registry registry, String propertyName, Object propertyValue )
112     {
113         configuration = null;
114     }
115
116     private String removeExpressions( String directory )
117     {
118         String value = StringUtils.replace( directory, "${appserver.base}",
119                                             registry.getString( "appserver.base", "${appserver.base}" ) );
120         value = StringUtils.replace( value, "${appserver.home}",
121                                      registry.getString( "appserver.home", "${appserver.home}" ) );
122         return value;
123     }
124
125 }