/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xwiki.component.internal; import javax.inject.Inject; import javax.inject.Named; import javax.inject.Singleton; import org.xwiki.component.annotation.Component; import org.xwiki.component.manager.ComponentManager; import org.xwiki.component.phase.Initializable; import org.xwiki.component.phase.InitializationException; import org.xwiki.model.reference.EntityReference; import org.xwiki.model.reference.WikiReference; import org.xwiki.wiki.descriptor.WikiDescriptorManager; /** * Proxy Component Manager that creates and queries individual Component Managers specific to the current wiki in the * Execution Context. These Component Managers are created on the fly the first time a component is registered for the * current wiki. * * @version $Id: 6d9e261406c61057ce92e2158cb7c17ed8e4be95 $ * @since 2.1RC1 */ @Component @Named(WikiComponentManager.ID) @Singleton public class WikiComponentManager extends AbstractEntityComponentManager implements Initializable { /** * The identifier of this {@link ComponentManager}. */ public static final String ID = "wiki"; /** * The prefix of wiki namespace. * * @since 8.4RC1 */ public static final String NAMESPACE_PREFIX = ID + ':'; @Inject private WikiDescriptorManager wikis; /** * The Component Manager to be used as parent when a component is not found in the current Component Manager. */ @Inject private ComponentManager rootComponentManager; private String getCurrentWiki() { return this.wikis.getCurrentWikiId(); } @Override protected EntityReference getCurrentReference() { String currentWikiId = getCurrentWiki(); return currentWikiId != null ? new WikiReference(currentWikiId) : null; } /** * {@inheritDoc} * <p> * Override default implementation with one much better for performances. * </p> * * @see org.xwiki.component.internal.AbstractEntityComponentManager#getKey() */ @Override protected String getKey() { String wiki = getCurrentWiki(); return wiki != null ? NAMESPACE_PREFIX + wiki : null; } @Override public void initialize() throws InitializationException { // Set the parent to the Root Component Manager since if a component isn't found for a particular wiki // we want to check if it's available in the Root Component Manager. setInternalParent(this.rootComponentManager); } }