/* * Copyright 2016 the original author or authors. * * 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.springframework.integration.scripting.dsl; import java.util.Collection; import java.util.Collections; import java.util.Map; import org.springframework.core.io.Resource; import org.springframework.integration.core.MessageSource; import org.springframework.integration.dsl.ComponentsRegistration; import org.springframework.integration.dsl.MessageSourceSpec; import org.springframework.integration.endpoint.MessageProcessorMessageSource; import org.springframework.integration.scripting.ScriptVariableGenerator; import org.springframework.integration.support.MapBuilder; /** * The {@link MessageSourceSpec} for Dynamic Language Scripts. * Delegates configuration options to the {@link ScriptSpec}. * Produces {@link MessageProcessorMessageSource}. * * * @author Artem Bilan * * @since 5.0 * * @see ScriptSpec * @see MessageProcessorMessageSource */ public class ScriptMessageSourceSpec extends MessageSourceSpec<ScriptMessageSourceSpec, MessageSource<?>> implements ComponentsRegistration { private final ScriptSpec delegate; public ScriptMessageSourceSpec(Resource scriptResource) { this.delegate = new ScriptSpec(scriptResource); } public ScriptMessageSourceSpec(String scriptLocation) { this.delegate = new ScriptSpec(scriptLocation); } /** * The script lang (Groovy, ruby, python etc.). * @param lang the script lang * @return the current spec * @see ScriptSpec#lang */ public ScriptMessageSourceSpec lang(String lang) { this.delegate.lang(lang); return this; } /** * The {@link ScriptVariableGenerator} to use. * @param variableGenerator the {@link ScriptVariableGenerator} * @return the current spec * @see ScriptSpec#variableGenerator */ public ScriptMessageSourceSpec variableGenerator(ScriptVariableGenerator variableGenerator) { this.delegate.variableGenerator(variableGenerator); return this; } /** * The script variables to use. * @param variables the script variables * @return the current spec * @see ScriptSpec#variables(MapBuilder) */ public ScriptMessageSourceSpec variables(MapBuilder<?, String, Object> variables) { this.delegate.variables(variables); return this; } /** * The script variables to use. * @param variables the script variables * @return the current spec * @see ScriptSpec#variables(Map) */ public ScriptMessageSourceSpec variables(Map<String, Object> variables) { this.delegate.variables(variables); return this; } /** * The script variable to use. * @param name the name of variable * @param value the value of variable * @return the current spec * @see ScriptSpec#variable */ public ScriptMessageSourceSpec variable(String name, Object value) { this.delegate.variable(name, value); return this; } /** * The refreshCheckDelay in milliseconds for refreshable script resource. * @param refreshCheckDelay the refresh check delay milliseconds * @return the current spec * @see ScriptSpec#refreshCheckDelay */ public ScriptMessageSourceSpec refreshCheckDelay(long refreshCheckDelay) { this.delegate.refreshCheckDelay(refreshCheckDelay); return this; } @Override protected MessageSource<?> doGet() { return new MessageProcessorMessageSource(this.delegate.get()); } @Override public Collection<Object> getComponentsToRegister() { return Collections.singletonList(this.delegate.get()); } }