]> source.dussan.org Git - archiva.git/blob
f3c50fbc0791caf1c6faff28f9d0963e9b75f397
[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             configuration.setIndexPath( removeExpressions( configuration.getIndexPath() ) );
64             configuration.setMinimalIndexPath( removeExpressions( configuration.getMinimalIndexPath() ) );
65             configuration.setLocalRepository( removeExpressions( configuration.getLocalRepository() ) );
66             for ( Iterator i = configuration.getRepositories().iterator(); i.hasNext(); )
67             {
68                 RepositoryConfiguration c = (RepositoryConfiguration) i.next();
69                 c.setDirectory( removeExpressions( c.getDirectory() ) );
70             }
71         }
72         return configuration;
73     }
74
75     public void save( Configuration configuration )
76         throws RegistryException
77     {
78         Registry section = registry.getSection( KEY + ".user" );
79         if ( section == null )
80         {
81             section = registry.getSection( KEY + ".base" );
82         }
83         new ConfigurationRegistryWriter().write( configuration, section );
84         section.save();
85
86         this.configuration = configuration;
87     }
88
89     public void addChangeListener( RegistryListener listener )
90     {
91         Registry section = registry.getSection( KEY + ".user" );
92         if ( section != null )
93         {
94             section.addChangeListener( listener );
95         }
96         section = registry.getSection( KEY + ".base" );
97         if ( section != null )
98         {
99             section.addChangeListener( listener );
100         }
101     }
102
103     public void initialize()
104         throws InitializationException
105     {
106         registry.addChangeListener( this );
107     }
108
109     public void beforeConfigurationChange( Registry registry, String propertyName, Object propertyValue )
110     {
111         // nothing to do here
112     }
113
114     public void afterConfigurationChange( Registry registry, String propertyName, Object propertyValue )
115     {
116         configuration = null;
117     }
118
119     private String removeExpressions( String directory )
120     {
121         String value = StringUtils.replace( directory, "${appserver.base}",
122                                             registry.getString( "appserver.base", "${appserver.base}" ) );
123         value = StringUtils.replace( value, "${appserver.home}",
124                                      registry.getString( "appserver.home", "${appserver.home}" ) );
125         return value;
126     }
127
128 }