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