org.smooks.cartridges.javabean.binding.model.ModelSet Maven / Gradle / Ivy
The newest version!
/*-
* ========================LICENSE_START=================================
* smooks-javabean-cartridge
* %%
* Copyright (C) 2020 Smooks
* %%
* Licensed under the terms of the Apache License Version 2.0, or
* the GNU Lesser General Public License version 3.0 or later.
*
* SPDX-License-Identifier: Apache-2.0 OR LGPL-3.0-or-later
*
* ======================================================================
*
* 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.
*
* ======================================================================
*
* This program 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 3 of the License, or (at your option) any later version.
*
* This program 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 program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* =========================LICENSE_END==================================
*/
package org.smooks.cartridges.javabean.binding.model;
import org.smooks.api.ApplicationContext;
import org.smooks.api.SmooksConfigException;
import org.smooks.api.converter.TypeConverterFactory;
import org.smooks.api.delivery.ContentHandlerFactory;
import org.smooks.api.resource.config.ResourceConfig;
import org.smooks.api.resource.config.ResourceConfigSeq;
import org.smooks.cartridges.javabean.BeanInstanceCreator;
import org.smooks.cartridges.javabean.BeanInstancePopulator;
import org.smooks.engine.lookup.ContentHandlerFactoryLookup;
import org.smooks.engine.lookup.CustomResourceConfigSeqLookup;
import org.smooks.engine.resource.config.ParameterAccessor;
import org.smooks.engine.xml.NamespaceManager;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* Bean binding model set.
*
* @author [email protected]
*/
public class ModelSet {
/**
* ModelSet base beans.
*
* A Smooks configuration can have multiple that can be wired together
* in all sorts of ways to create models. This is a Map of these baseBeans. These
* baseBeans are used (cloned) to create all possible models (with baseBeans all wired together).
*/
protected Map baseBeans = new LinkedHashMap<>();
/**
* Models.
*
* Should contain clones of the same baseBeans as in the baseBeans property (above), but
* with their full graphs expanded i.e. all the bean wirings resolved and wired into
* parent baseBeans etc.
*/
protected Map models = new LinkedHashMap<>();
/**
* Is the associated Smooks instance a binding only configuration.
*/
protected Boolean isBindingOnlyConfig;
public ModelSet(ResourceConfigSeq userConfigList, ContentHandlerFactory> javaContentHandlerFactory) throws SmooksConfigException {
createBaseBeanMap(userConfigList, javaContentHandlerFactory);
createExpandedModels();
resolveModelSelectors(userConfigList);
}
public Bean getModel(String beanId) {
return models.get(beanId);
}
public Bean getModel(Class> beanType) {
for (Bean model : models.values()) {
if (model.getCreator().getBeanRuntimeInfo().getPopulateType() == beanType) {
return model;
}
}
return null;
}
public Map getModels() {
return models;
}
public boolean isBindingOnlyConfig() {
return isBindingOnlyConfig;
}
protected void createBaseBeanMap(final ResourceConfigSeq resourceConfigSeq, final ContentHandlerFactory> contentHandlerFactory) {
for (int i = 0; i < resourceConfigSeq.size(); i++) {
final ResourceConfig resourceConfig = resourceConfigSeq.get(i);
final Object javaResource;
if (resourceConfig.isJavaResource()) {
javaResource = contentHandlerFactory.create(resourceConfig);
} else {
javaResource = null;
}
if (javaResource instanceof BeanInstanceCreator) {
BeanInstanceCreator beanCreator = (BeanInstanceCreator) javaResource;
Bean bean = new Bean(beanCreator).setCloneable(true);
baseBeans.put(bean.getBeanId(), bean);
if (isBindingOnlyConfig == null) {
isBindingOnlyConfig = true;
}
} else if (javaResource instanceof BeanInstancePopulator) {
BeanInstancePopulator beanPopulator = (BeanInstancePopulator) javaResource;
Bean bean = baseBeans.get(beanPopulator.getBeanId());
if (bean == null) {
throw new SmooksConfigException("Unexpected binding configuration exception. Unknown parent beanId '' for binding configuration.");
}
if (beanPopulator.isBeanWiring()) {
bean.getBindings().add(new WiredBinding(beanPopulator));
} else {
bean.getBindings().add(new DataBinding(beanPopulator));
}
} else if (isNonBindingResource(javaResource) && !isGlobalParamsConfig(resourceConfig)) {
// The user has configured something other than a bean binding config.
isBindingOnlyConfig = false;
}
}
}
protected boolean isNonBindingResource(Object javaResource) {
if (javaResource instanceof TypeConverterFactory) {
return false;
}
// Ignore resource that do not manipulate the event stream...
return !(javaResource instanceof NamespaceManager);
}
protected boolean isGlobalParamsConfig(ResourceConfig config) {
return ParameterAccessor.GLOBAL_PARAMETERS.equals(config.getSelectorPath().getSelector());
}
protected void createExpandedModels() {
for (Bean bean : baseBeans.values()) {
models.put(bean.getBeanId(), bean.clone(baseBeans, null));
}
}
protected void resolveModelSelectors(ResourceConfigSeq userConfigList) {
// Do the beans first...
for (Bean model : models.values()) {
resolveModelSelectors(model);
}
}
protected void resolveModelSelectors(Bean model) {
for (Binding binding : model.getBindings()) {
if (binding instanceof WiredBinding) {
resolveModelSelectors(((WiredBinding) binding).getWiredBean());
}
}
}
public static void build(ApplicationContext appContext) {
ModelSet modelSet = get(appContext);
if (modelSet == null) {
modelSet = new ModelSet(appContext.getRegistry().lookup(new CustomResourceConfigSeqLookup(appContext.getRegistry())), appContext.getRegistry().lookup(new ContentHandlerFactoryLookup("class")));
appContext.getRegistry().registerObject(ModelSet.class, modelSet);
}
}
public static ModelSet get(ApplicationContext appContext) {
return appContext.getRegistry().lookup(ModelSet.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy