]> source.dussan.org Git - archiva.git/blob
cf12d0af692e404a4424538031e31cd3df42e356
[archiva.git] /
1 package org.apache.archiva.metadata.repository.jcr;
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.springframework.context.ApplicationContext;
29 import org.springframework.stereotype.Service;
30
31 import javax.annotation.PostConstruct;
32 import javax.inject.Inject;
33 import javax.jcr.Repository;
34 import javax.jcr.RepositoryException;
35 import java.util.HashMap;
36 import java.util.Map;
37
38 /**
39  * plexus.component role="org.apache.archiva.metadata.repository.RepositorySessionFactory" role-hint="jcr"
40  */
41 @Service( "repositorySessionFactory#jcr" )
42 public class JcrRepositorySessionFactory
43     implements RepositorySessionFactory
44 {
45
46     @Inject
47     private ApplicationContext applicationContext;
48
49     /**
50      * plexus.requirement role="org.apache.archiva.metadata.model.MetadataFacetFactory"
51      */
52     private Map<String, MetadataFacetFactory> metadataFacetFactories;
53
54     /**
55      * plexus.requirement
56      */
57     @Inject
58     private Repository repository;
59
60     /**
61      * plexus.requirement
62      */
63     @Inject
64     private MetadataResolver metadataResolver;
65
66     public RepositorySession createSession()
67     {
68         try
69         {
70             // FIXME: is this the right separation? or should a JCR session object contain the JCR session information?
71             //  such a change might allow us to avoid creating two objects for each request. It would also clear up
72             //  the ambiguities in the API where session & repository are the inverse of JCR; and the resolver is
73             //  retrieved from the session but must have it passed in. These should be reviewed before finalising the
74             //  API.
75             MetadataRepository metadataRepository = new JcrMetadataRepository( metadataFacetFactories, repository );
76
77             return new RepositorySession( metadataRepository, metadataResolver );
78         }
79         catch ( RepositoryException e )
80         {
81             // FIXME: a custom exception requires refactoring for callers to handle it
82             throw new RuntimeException( e );
83         }
84     }
85
86     @PostConstruct
87     public void initialize()
88     {
89         metadataFacetFactories = applicationContext.getBeansOfType( MetadataFacetFactory.class );
90         // olamy with spring the "id" is now "metadataFacetFactory#hint"
91         // whereas was only hint with plexus so let remove  metadataFacetFactory#
92         Map<String, MetadataFacetFactory> cleanedMetadataFacetFactories =
93             new HashMap<String, MetadataFacetFactory>( metadataFacetFactories.size() );
94
95         for ( Map.Entry<String, MetadataFacetFactory> entry : metadataFacetFactories.entrySet() )
96         {
97             cleanedMetadataFacetFactories.put( StringUtils.substringAfterLast( entry.getKey(), "#" ),
98                                                entry.getValue() );
99         }
100
101         metadataFacetFactories = cleanedMetadataFacetFactories;
102
103         JcrMetadataRepository metadataRepository = null;
104         try
105         {
106             metadataRepository = new JcrMetadataRepository( metadataFacetFactories, repository );
107             JcrMetadataRepository.initialize( metadataRepository.getJcrSession() );
108         }
109         catch ( RepositoryException e )
110         {
111             throw new RuntimeException( e.getMessage(), e );
112         }
113         finally
114         {
115             if ( metadataRepository != null )
116             {
117                 metadataRepository.close();
118             }
119         }
120     }
121 }