Package org.kie.camel.component

Source Code of org.kie.camel.component.KieEndpoint

/*
* Copyright 2010 JBoss Inc
*
* 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.
*/

/*
*  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.
*  under the License.
*/

package org.kie.camel.component;

import org.apache.camel.Consumer;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.Producer;
import org.apache.camel.RuntimeCamelException;
import org.apache.camel.impl.DefaultEndpoint;
import org.apache.camel.impl.DefaultExchange;
import org.apache.camel.impl.DefaultMessage;
import org.apache.camel.spi.DataFormat;
import org.drools.core.command.impl.CommandBasedStatefulKnowledgeSession;
import org.drools.core.impl.InternalKnowledgeBase;
import org.drools.core.impl.StatefulKnowledgeSessionImpl;
import org.drools.core.impl.StatelessKnowledgeSessionImpl;
import org.drools.core.util.StringUtils;
import org.kie.api.runtime.CommandExecutor;

import java.net.URISyntaxException;
import java.util.HashMap;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class KieEndpoint extends DefaultEndpoint {

    private static final String NO_KSESSION_ENDPOINT = "dynamic";

    /**
     * An ENUM to define which action should be executed by the
     * producer into this end point
     */
    public static enum Action {
        EXECUTE("execute"),
        INSERT_BODY("insertBody"),
        INSERT_MESSAGE("insertMessage"),
        INSERT_EXCHANGE("insertExchange");

        private final String id;

        Action(String id) {
            this.id = id;
        }

        public String getId() {
            return this.id;
        }

        public static Action resolveAction(String id) {
            if ( EXECUTE.getId().equalsIgnoreCase( id ) ) {
                return EXECUTE;
            } else if ( INSERT_BODY.getId().equalsIgnoreCase( id ) ) {
                return INSERT_BODY;
            } else if ( INSERT_MESSAGE.getId().equalsIgnoreCase( id ) ) {
                return INSERT_MESSAGE;
            } else if ( INSERT_EXCHANGE.getId().equalsIgnoreCase( id ) ) {
                return INSERT_EXCHANGE;
            } else {
                throw new IllegalArgumentException( "Invalid action configuring EndPoint = " + id );
            }
        }
    }

    public static final Pattern p          = Pattern.compile( "[\"']?lookup[\"']?\\s*[:=]\\s*[\"']([^\"']+)[\"']" );

    public String                           ksessionId;
    public CommandExecutor                  executor;
    public Map<String, CommandExecutor>     executorsByName;

    public String               dataFormatName;

    public DataFormat           dataFormat;

    public Action               action     = Action.EXECUTE;
    public String               entryPoint = null;
    public String               channel    = null;

    public KieEndpoint(String endpointUri,
                       String remaining,
                       KieComponent component) throws URISyntaxException {
        super( endpointUri,
               component );
        configure( component,
                   remaining );
    }

    public Consumer createConsumer(Processor processor) throws Exception {
        return new KieConsumer( this,
                                   processor );
    }

    public Producer createProducer() throws Exception {
        if ( Action.EXECUTE.equals( action ) ) {
            return new KieExecuteProducer( this );
        } else {
            return new KieInsertProducer( this );
        }
    }

    public boolean isSingleton() {
        return true;
    }

    public String getKsessionId() {
        return ksessionId;
    }

    public void setKsessionId(String ksession) {
        this.ksessionId = ksession;
    }

    public CommandExecutor getExecutor() {
        return executor;
    }

    protected void configure(KieComponent component,
                             String uri) {
        ksessionId = getKsessionId( uri );

        if ( !StringUtils.isEmpty( ksessionId ) ) {
            executor = component.getCamelContext().getRegistry().lookup( ksessionId,
                                                                         CommandExecutor.class );
            if ( executor == null ) {
                if (NO_KSESSION_ENDPOINT.equals(ksessionId)) {
                    executorsByName = new HashMap<String, CommandExecutor>();
                } else {
                    throw new RuntimeCamelException( "Failed to instantiate KieEndpoint. Could not find ksession for " + " uri=\"" + uri + "\". Check configuration." );
                }
            }
        }
    }

    public static final String getKsessionId(String uri) {
        int pos = uri.indexOf( '/' );
        return (pos < 0) ? uri : uri.substring( pos + 1 );
    }

    public String getDataFormat() {
        return this.dataFormatName;
    }

    public void setDataFormat(String dataFormatName) {
        this.dataFormatName = dataFormatName;
    }

    public String getLookup(String body) {
        Matcher m = p.matcher( body );
        String name = null;
        if ( m.find() ) {
            name = m.group( 1 );
        }

        return name;
    }

    public CommandExecutor getCommandExecutor(String name) {
        if (executorsByName == null) {
            if ( this.executor == null ) {
                throw new RuntimeException( "ExecutionNode for CommandExecutor lookup cannot be null" );
            }
            return executor;
        }

        CommandExecutor exec = executorsByName.get(name);
        if ( exec == null ) {
            exec = getComponent().getCamelContext().getRegistry().lookup( name,
                                                                          CommandExecutor.class );
            if ( exec == null ) {
                throw new RuntimeException( "ExecutionNode for CommandExecutor lookup cannot be null" );
            } else {
                executorsByName.put(name, exec);
            }
        }
        return exec;
    }

    public ClassLoader getClassLoader(CommandExecutor exec) {
        ClassLoader cl = null;

        if ( exec instanceof StatefulKnowledgeSessionImpl ) {
            cl = ((StatefulKnowledgeSessionImpl) exec).getKnowledgeBase().getRootClassLoader();
        } else if ( exec instanceof StatelessKnowledgeSessionImpl ) {
            cl = ((StatelessKnowledgeSessionImpl) exec).getKnowledgeBase().getRootClassLoader();
        } else if ( exec instanceof CommandBasedStatefulKnowledgeSession ) {
            cl = ((InternalKnowledgeBase) ((CommandBasedStatefulKnowledgeSession) exec).getKieBase()).getRootClassLoader();
        }

        return cl;
    }

    public Action getAction() {
        return action;
    }

    public void setAction(Action action) {
        this.action = action;
    }

    public void setAction(String action) {
        this.action = Action.resolveAction(action);
    }

    public String getEntryPoint() {
        return entryPoint;
    }

    public void setEntryPoint(String entryPoint) {
        this.entryPoint = entryPoint;
    }

    public String getChannel() {
        return channel;
    }

    public void setChannel(String channel) {
        this.channel = channel;
    }
   
    public Exchange createExchange( Object pojo ) {
        DefaultMessage msg = new DefaultMessage();
        msg.setBody( pojo );
        DefaultExchange exchange = new DefaultExchange(this, getExchangePattern());
        exchange.setIn( msg );
        return exchange;
    }
   
}
TOP

Related Classes of org.kie.camel.component.KieEndpoint

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.