Package org.apache.s4.processor

Source Code of org.apache.s4.processor.ControlEventProcessor

/**
* 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.s4.processor;

import org.apache.s4.collector.EventWrapper;
import org.apache.s4.dispatcher.EventDispatcher;
import org.apache.s4.dispatcher.partitioner.CompoundKeyInfo;
import org.apache.s4.message.PrototypeRequest;
import org.apache.s4.message.Response;
import org.apache.s4.message.SinglePERequest;

import java.util.List;

/**
* Processes control events.
*/
public class ControlEventProcessor {

    private EventDispatcher dispatcher;

    public void setDispatcher(EventDispatcher dispatcher) {
        this.dispatcher = dispatcher;
    }

    public void process(EventWrapper e, PrototypeWrapper p) {
        String en = e.getStreamName(); // e.g. "#joinPe01"
        String pn = p.getId(); // e.g. "JoinPE01"

        // stream name has to match PE's ID (modulo case).
        // e.g. "#joinPe01" will match "JoinPE01"
        if (!en.regionMatches(true, 1, pn, 0, pn.length()))
            return;

        execute(e, p);
    }

    protected void execute(EventWrapper e, PrototypeWrapper p) {
        List<CompoundKeyInfo> keyInfoList = e.getCompoundKeys();
        Object event = e.getEvent();
       
        if (event instanceof SinglePERequest) {
            // Handle Requests to individual PEs
            if (keyInfoList.isEmpty())
                return;

            CompoundKeyInfo keyInfo = keyInfoList.get(0);

            String keyVal = keyInfo.getCompoundValue();

            AbstractPE pe = p.lookupPE(keyVal);

            Response response = ((SinglePERequest) event).evaluate(pe);
            String stream = response.getRInfo().getStream();

            dispatcher.dispatchEvent(stream, response);

        } else if (event instanceof PrototypeRequest) {
            // Or handle aggregate requests to Prototypes.
            Response response = ((PrototypeRequest) event).evaluate(p);
            String stream = response.getRInfo().getStream();

            dispatcher.dispatchEvent(stream, response);
        }

    }
}
TOP

Related Classes of org.apache.s4.processor.ControlEventProcessor

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.