blob: 0fcad3dd915bf0eadda00529e9e2604c251278b7 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.lenya.cms.usecase.impl;
import java.util.SortedSet;
import java.util.TreeSet;
import org.apache.avalon.framework.activity.Disposable;
import org.apache.avalon.framework.logger.AbstractLogEnabled;
import org.apache.avalon.framework.service.ServiceException;
import org.apache.avalon.framework.service.ServiceManager;
import org.apache.avalon.framework.service.ServiceSelector;
import org.apache.avalon.framework.service.Serviceable;
import org.apache.avalon.framework.thread.ThreadSafe;
import org.apache.cocoon.environment.Request;
import org.apache.lenya.cms.cocoon.components.context.ContextUtility;
import org.apache.lenya.cms.publication.DocumentFactory;
import org.apache.lenya.cms.publication.DocumentUtil;
import org.apache.lenya.cms.publication.Publication;
import org.apache.lenya.cms.publication.URLInformation;
import org.apache.lenya.cms.publication.templating.PublicationTemplateManager;
import org.apache.lenya.cms.usecase.Usecase;
import org.apache.lenya.cms.usecase.UsecaseResolver;
/**
* Usecase resolver implementation.
*
* @version $Id$
*/
public class UsecaseResolverImpl extends AbstractLogEnabled implements UsecaseResolver,
Serviceable, Disposable, ThreadSafe {
/**
* Ctor.
*/
public UsecaseResolverImpl() {
// do nothing
}
private ServiceSelector selector;
private ServiceManager manager;
/**
* @see org.apache.avalon.framework.service.Serviceable#service(org.apache.avalon.framework.service.ServiceManager)
*/
public void service(ServiceManager _manager) throws ServiceException {
this.manager = _manager;
}
protected ServiceSelector getSelector() throws ServiceException {
if (this.selector == null) {
this.selector = (ServiceSelector) this.manager.lookup(Usecase.ROLE + "Selector");
}
return this.selector;
}
/**
* @see org.apache.lenya.cms.usecase.UsecaseResolver#release(org.apache.lenya.cms.usecase.Usecase)
*/
public void release(Usecase usecase) throws ServiceException {
if (usecase == null) {
throw new IllegalArgumentException("The usecase to release must not be null.");
}
getSelector().release(usecase);
}
/**
* @see org.apache.avalon.framework.activity.Disposable#dispose()
*/
public void dispose() {
if (this.selector != null) {
this.manager.release(this.selector);
}
}
/**
* Returns the name of the publication-overridden usecase to be resolved.
* @param webappUrl The web application URL.
* @param name The plain usecase name.
* @return A string.
* @throws ServiceException if an error occurs.
*/
protected String getUsecaseName(String webappUrl, final String name) throws ServiceException {
String newName = null;
Publication publication = getPublication(webappUrl);
if (publication != null) {
PublicationTemplateManager templateManager = null;
try {
templateManager = (PublicationTemplateManager) this.manager
.lookup(PublicationTemplateManager.ROLE);
newName = (String) templateManager.getSelectableHint(publication, getSelector(),
name);
} finally {
if (templateManager != null) {
this.manager.release(templateManager);
}
}
} else {
newName = name;
}
return newName;
}
/**
* Returns the publication the usecase was invoked in.
* @param webappUrl The web application URL.
* @return A publication.
*/
protected Publication getPublication(String webappUrl) {
Publication publication = null;
ContextUtility util = null;
try {
util = (ContextUtility) this.manager.lookup(ContextUtility.ROLE);
Request request = util.getRequest();
DocumentFactory factory = DocumentUtil.getDocumentFactory(this.manager, request);
URLInformation info = new URLInformation(webappUrl);
String pubId = info.getPublicationId();
if (pubId != null && factory.existsPublication(pubId)) {
publication = factory.getPublication(pubId);
}
} catch (Exception e) {
throw new RuntimeException(e);
} finally {
if (util != null) {
this.manager.release(util);
}
}
return publication;
}
/**
* @see org.apache.lenya.cms.usecase.UsecaseResolver#resolve(java.lang.String,
* java.lang.String)
*/
public Usecase resolve(String webappUrl, String name) throws ServiceException {
Object usecaseName = getUsecaseName(webappUrl, name);
Usecase usecase = (Usecase) getSelector().select(usecaseName);
usecase.setName(name);
usecase.setSourceURL(webappUrl);
return usecase;
}
/**
* @see org.apache.lenya.cms.usecase.UsecaseResolver#isRegistered(java.lang.String,
* java.lang.String)
*/
public boolean isRegistered(String webappUrl, String name) throws ServiceException {
String usecaseName = getUsecaseName(webappUrl, name);
return getSelector().isSelectable(usecaseName);
}
/**
* @return The names of all registered usecases in alphabetical order.
*/
public String[] getUsecaseNames() {
if (this.usecaseNames == null) {
throw new IllegalStateException("No usecase registered!");
}
return (String[]) this.usecaseNames.toArray(new String[this.usecaseNames.size()]);
}
private SortedSet usecaseNames;
public void register(String usecaseName) {
if (this.usecaseNames == null) {
this.usecaseNames = new TreeSet();
}
this.usecaseNames.add(usecaseName);
}
}