]> source.dussan.org Git - archiva.git/blob
0d63f4ee9a37c728c426e727e85dbd16f8cf00c2
[archiva.git] /
1 package org.apache.archiva.metadata.repository.file;
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.archiva.metadata.model.MetadataFacetFactory;
23 import org.apache.archiva.metadata.repository.MetadataRepository;
24 import org.apache.archiva.metadata.repository.MetadataResolver;
25 import org.apache.archiva.metadata.repository.RepositorySession;
26 import org.apache.archiva.metadata.repository.RepositorySessionFactory;
27 import org.apache.commons.lang.StringUtils;
28 import org.apache.archiva.configuration.ArchivaConfiguration;
29 import org.springframework.context.ApplicationContext;
30 import org.springframework.stereotype.Service;
31
32 import javax.annotation.PostConstruct;
33 import javax.inject.Inject;
34 import javax.inject.Named;
35 import java.util.HashMap;
36 import java.util.Map;
37
38 /**
39  *
40  */
41 @Service( "repositorySessionFactory#file" )
42 public class FileRepositorySessionFactory
43     implements RepositorySessionFactory
44 {
45     /**
46      *
47      */
48     private Map<String, MetadataFacetFactory> metadataFacetFactories;
49
50     /**
51      *
52      */
53     @Inject
54     @Named( value = "archivaConfiguration#default" )
55     private ArchivaConfiguration configuration;
56
57     /**
58      *
59      */
60     @Inject
61     private MetadataResolver metadataResolver;
62
63     @Inject
64     private ApplicationContext applicationContext;
65
66     @PostConstruct
67     public void initialize()
68     {
69         Map<String, MetadataFacetFactory> tmpMetadataFacetFactories =
70             applicationContext.getBeansOfType( MetadataFacetFactory.class );
71         // olamy with spring the "id" is now "metadataFacetFactory#hint"
72         // whereas was only hint with plexus so let remove  metadataFacetFactory#
73         metadataFacetFactories = new HashMap<>( tmpMetadataFacetFactories.size() );
74
75         for ( Map.Entry<String, MetadataFacetFactory> entry : tmpMetadataFacetFactories.entrySet() )
76         {
77             metadataFacetFactories.put( StringUtils.substringAfterLast( entry.getKey(), "#" ), entry.getValue() );
78         }
79
80
81     }
82
83     @Override
84     public RepositorySession createSession()
85     {
86         MetadataRepository metadataRepository = new FileMetadataRepository( metadataFacetFactories, configuration );
87
88         return new RepositorySession( metadataRepository, metadataResolver );
89     }
90 }