1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.component.internal

File AbstractEnityComponentManagerFactory.java

 

Coverage histogram

../../../../img/srcFileCovDistChart9.png
38% of files have more coverage

Code metrics

2
8
1
1
77
36
2
0.25
8
1
2

Classes

Class Line # Actions
AbstractEnityComponentManagerFactory 38 8 0% 2 2
0.818181881.8%
 

Contributing tests

This file is covered by 4 tests. .

Source view

1    /*
2    * See the NOTICE file distributed with this work for additional
3    * information regarding copyright ownership.
4    *
5    * This is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU Lesser General Public License as
7    * published by the Free Software Foundation; either version 2.1 of
8    * the License, or (at your option) any later version.
9    *
10    * This software is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13    * Lesser General Public License for more details.
14    *
15    * You should have received a copy of the GNU Lesser General Public
16    * License along with this software; if not, write to the Free
17    * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18    * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
19    */
20    package org.xwiki.component.internal;
21   
22    import javax.inject.Inject;
23    import javax.inject.Named;
24   
25    import org.xwiki.component.internal.multi.ComponentManagerManager;
26    import org.xwiki.component.manager.ComponentManager;
27    import org.xwiki.model.EntityType;
28    import org.xwiki.model.reference.EntityReference;
29    import org.xwiki.model.reference.EntityReferenceResolver;
30    import org.xwiki.model.reference.EntityReferenceSerializer;
31   
32    /**
33    * Base class helper to create entity related {@link ComponentManager}.
34    *
35    * @version $Id: e76f6a326e6a8f865466423cfcdcd56be719f40b $
36    * @since 8.4RC1
37    */
 
38    public abstract class AbstractEnityComponentManagerFactory extends AbstractComponentManagerFactory
39    {
40    @Inject
41    @Named("explicit")
42    private EntityReferenceResolver<String> resolver;
43   
44    @Inject
45    private EntityReferenceSerializer<String> serializer;
46   
47    @Inject
48    private ComponentManagerManager manager;
49   
50    protected abstract EntityType getEntityType();
51   
 
52  8 toggle @Override
53    public ComponentManager createComponentManager(String namespace, ComponentManager parentComponentManager)
54    {
55    // Get entity reference
56  8 EntityReference reference =
57    this.resolver.resolve(namespace.substring(getEntityType().getLowerCase().length() + 1), getEntityType());
58   
59    // Get parent reference
60  8 EntityReference parentReference = reference.getParent();
61   
62  8 ComponentManager parent;
63  8 if (parentReference != null) {
64    // Get parent namespace
65  8 String parentNamespace =
66    parentReference.getType().getLowerCase() + ':' + this.serializer.serialize(parentReference);
67   
68    // Get parent component manager
69  8 parent = this.manager.getComponentManager(parentNamespace, true);
70    } else {
71  0 parent = parentComponentManager;
72    }
73   
74  8 return this.defaultFactory.createComponentManager(namespace, parent);
75   
76    }
77    }