]> source.dussan.org Git - archiva.git/blob
4c529a4118d840f0ee09043037a90b918a4019dd
[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.commons.collections.CollectionUtils;
23 import org.apache.commons.collections.Predicate;
24 import org.apache.commons.configuration.CombinedConfiguration;
25 import org.apache.maven.archiva.configuration.functors.FiletypeSelectionPredicate;
26 import org.apache.maven.archiva.configuration.io.registry.ConfigurationRegistryReader;
27 import org.codehaus.plexus.logging.AbstractLogEnabled;
28 import org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable;
29 import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException;
30 import org.codehaus.plexus.registry.Registry;
31 import org.codehaus.plexus.registry.RegistryException;
32 import org.codehaus.plexus.registry.RegistryListener;
33 import org.codehaus.plexus.registry.commons.CommonsConfigurationRegistry;
34 import org.codehaus.plexus.util.SelectorUtils;
35
36 import java.lang.reflect.Field;
37 import java.util.ArrayList;
38 import java.util.Collections;
39 import java.util.HashMap;
40 import java.util.List;
41 import java.util.Map;
42
43 /**
44  * FileTypes 
45  *
46  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
47  * @version $Id$
48  * 
49  * @plexus.component role="org.apache.maven.archiva.configuration.FileTypes"
50  */
51 public class FileTypes
52     extends AbstractLogEnabled
53     implements Initializable, RegistryListener
54 {
55     public static final String ARTIFACTS = "artifacts";
56
57     public static final String AUTO_REMOVE = "auto-remove";
58
59     public static final String INDEXABLE_CONTENT = "indexable-content";
60
61     public static final String IGNORED = "ignored";
62
63     /**
64      * @plexus.requirement
65      */
66     private ArchivaConfiguration archivaConfiguration;
67
68     /**
69      * Map of default values for the file types.
70      */
71     private Map<String, List<String>> defaultTypeMap = new HashMap<String, List<String>>();
72
73     private List<String> artifactPatterns;
74
75     public void setArchivaConfiguration( ArchivaConfiguration archivaConfiguration )
76     {
77         this.archivaConfiguration = archivaConfiguration;
78     }
79
80     /**
81      * <p>
82      * Get the list of patterns for a specified filetype.
83      * </p>
84      *
85      * <p>
86      * You will always get a list.  In this order.
87      *   <ul>
88      *     <li>The Configured List</li>
89      *     <li>The Default List</li>
90      *     <li>A single item list of <code>"**<span>/</span>*"</code></li>
91      *   </ul>
92      * </p>
93      *
94      * @param id the id to lookup.
95      * @return the list of patterns.
96      */
97     public List<String> getFileTypePatterns( String id )
98     {
99         Configuration config = archivaConfiguration.getConfiguration();
100         Predicate selectedFiletype = new FiletypeSelectionPredicate( id );
101         FileType filetype = (FileType) CollectionUtils.find( config.getRepositoryScanning().getFileTypes(),
102                                                              selectedFiletype );
103
104         if ( ( filetype != null ) && CollectionUtils.isNotEmpty( filetype.getPatterns() ) )
105         {
106             return filetype.getPatterns();
107         }
108
109         List<String> defaultPatterns = defaultTypeMap.get( id );
110
111         if ( CollectionUtils.isEmpty( defaultPatterns ) )
112         {
113             return Collections.singletonList( "**/*" );
114         }
115
116         return defaultPatterns;
117     }
118
119     public synchronized boolean matchesArtifactPattern( String relativePath )
120     {
121         // Correct the slash pattern.
122         relativePath = relativePath.replace( '\\', '/' );
123
124         if ( artifactPatterns == null )
125         {
126             artifactPatterns = getFileTypePatterns( ARTIFACTS );
127         }
128         
129         for ( String pattern : artifactPatterns )
130         {
131             if ( SelectorUtils.matchPath( pattern, relativePath, false ) )
132             {
133                 // Found match
134                 return true;
135             }
136         }
137
138         // No match.
139         return false;
140     }
141
142     public void initialize()
143         throws InitializationException
144     {
145         // TODO: why is this done by hand?
146
147         String errMsg = "Unable to load default archiva configuration for FileTypes: ";
148         
149         try
150         {
151             CommonsConfigurationRegistry commonsRegistry = new CommonsConfigurationRegistry();
152
153             // Configure commonsRegistry
154             Field fld = commonsRegistry.getClass().getDeclaredField( "configuration" );
155             fld.setAccessible( true );
156             fld.set( commonsRegistry, new CombinedConfiguration() );
157             commonsRegistry.enableLogging( getLogger() );
158             commonsRegistry.addConfigurationFromResource( "org/apache/maven/archiva/configuration/default-archiva.xml" );
159             
160             // Read configuration as it was intended.
161             ConfigurationRegistryReader configReader = new ConfigurationRegistryReader();
162             Configuration defaultConfig = configReader.read( commonsRegistry );
163
164             initialiseTypeMap( defaultConfig );
165         }
166         catch ( RegistryException e )
167         {
168             throw new InitializationException( errMsg + e.getMessage(), e );
169         }
170         catch ( SecurityException e )
171         {
172             throw new InitializationException( errMsg + e.getMessage(), e );
173         }
174         catch ( NoSuchFieldException e )
175         {
176             throw new InitializationException( errMsg + e.getMessage(), e );
177         }
178         catch ( IllegalArgumentException e )
179         {
180             throw new InitializationException( errMsg + e.getMessage(), e );
181         }
182         catch ( IllegalAccessException e )
183         {
184             throw new InitializationException( errMsg + e.getMessage(), e );
185         }
186
187         this.archivaConfiguration.addChangeListener( this );
188     }
189
190     private void initialiseTypeMap( Configuration configuration )
191     {
192         defaultTypeMap.clear();
193
194         // Store the default file type declaration.
195         List<FileType> filetypes = configuration.getRepositoryScanning().getFileTypes();
196         for ( FileType filetype : filetypes )
197         {
198             List<String> patterns = defaultTypeMap.get( filetype.getId() );
199             if ( patterns == null )
200             {
201                 patterns = new ArrayList<String>();
202             }
203             patterns.addAll( filetype.getPatterns() );
204
205             defaultTypeMap.put( filetype.getId(), patterns );
206         }
207     }
208
209     public void afterConfigurationChange( Registry registry, String propertyName, Object propertyValue )
210     {
211         if ( propertyName.contains( "fileType" ) )
212         {
213             artifactPatterns = null;
214
215             initialiseTypeMap( archivaConfiguration.getConfiguration() );
216         }
217     }
218
219     public void beforeConfigurationChange( Registry registry, String propertyName, Object propertyValue )
220     {
221         /* nothing to do */
222     }
223 }