/*
* Copyright 2004-2012 the Seasar Foundation and the Others.
*
* Licensed 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.seasar.mayaa.impl.builder.injection;
import org.seasar.mayaa.builder.injection.InjectionChain;
import org.seasar.mayaa.builder.injection.InjectionResolver;
import org.seasar.mayaa.builder.library.LibraryManager;
import org.seasar.mayaa.engine.specification.QName;
import org.seasar.mayaa.engine.specification.SpecificationNode;
import org.seasar.mayaa.engine.specification.URI;
import org.seasar.mayaa.impl.CONST_IMPL;
import org.seasar.mayaa.impl.ParameterAwareImpl;
import org.seasar.mayaa.impl.builder.BuilderUtil;
import org.seasar.mayaa.impl.engine.specification.SpecificationUtil;
import org.seasar.mayaa.impl.provider.ProviderUtil;
import org.seasar.mayaa.impl.source.SourceUtil;
import org.seasar.mayaa.impl.util.StringUtil;
import org.seasar.mayaa.source.SourceDescriptor;
/**
* @author Masataka Kurihara (Gluegent, Inc.)
*/
public class InsertSetter extends ParameterAwareImpl
implements InjectionResolver, CONST_IMPL {
private static final long serialVersionUID = -326245681584232257L;
protected static final QName QM_INSERT =
SpecificationUtil.createQName("insert");
protected static final QName QM_PATH =
SpecificationUtil.createQName("path");
public SpecificationNode getNode(
SpecificationNode original, InjectionChain chain) {
if (original == null || chain == null) {
throw new IllegalArgumentException();
}
SpecificationNode injected = chain.getNode(original);
QName qName = injected.getQName();
if (qName.getNamespaceURI().getValue().startsWith("/")) {
return convertToInsert(injected, qName);
}
return injected;
}
private SpecificationNode convertToInsert(
SpecificationNode injected, QName qName) {
LibraryManager libraryManager = ProviderUtil.getLibraryManager();
if (libraryManager.getProcessorDefinition(qName) == null) {
URI uri = qName.getNamespaceURI();
String name = qName.getLocalName();
String path =
StringUtil.preparePath(uri.getValue()) + StringUtil.preparePath(name);
// TODO 存在チェック (テンプレートがあるかどうかはsuffixのチェックが必要)
SourceDescriptor source = SourceUtil.getSourceDescriptor(uri.getValue());
if (source.exists()) {
SpecificationNode node = BuilderUtil.createInjectedNode(
QM_INSERT, uri, injected, false);
node.addAttribute(QM_PATH, path);
String compName = SpecificationUtil.getAttributeValue(
injected, QM_NAME);
if (StringUtil.hasValue(compName)) {
node.addAttribute(QM_NAME, compName);
}
return node;
}
}
return injected;
}
}