com.datatorrent.lib.algo.FirstTillMatch Maven / Gradle / Ivy
/**
* 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 com.datatorrent.lib.algo;
import java.util.HashMap;
import com.datatorrent.api.DefaultInputPort;
import com.datatorrent.api.DefaultOutputPort;
import com.datatorrent.api.annotation.OperatorAnnotation;
import com.datatorrent.lib.util.BaseMatchOperator;
/**
* This operator filters the incoming stream of key value pairs by obtaining the values corresponding to a specified key,
* and comparing those values to a specified number. For each window, all key value pairs are emitted by the operator until a value satisfying the comparison is encountered.
*
* All key.val pairs with val sub-classed from Number are emitted till the first match; A compare metric is done based on the property "key",
* "value", and "cmp". Then on no tuple is emitted in that window. The comparison is done by getting double value of the Number.
*
*
* This module is a pass through
*
* StateFull : Yes, tuple are processed in current window.
* Partitions : No, will yield wrong results.
*
*
* Ports:
* data: Input port, expects HashMap<K,V>
* first: Output port, emits HashMap<K,V> if compare function returns true
*
* Properties:
* key: The key on which compare is done
* value: The value to compare with
* cmp: The compare function. Supported values are "lte", "lt", "eq", "neq", "gt", "gte". Default is "eq"
*
* Specific compile time checks:
* Key must be non empty
* Value must be able to convert to a "double"
* Compare string, if specified, must be one of "lte", "lt", "eq", "neq", "gt", "gte"
*
*
*
* @displayName Emit Keyval Pairs Until Match (Number)
* @category Rules and Alerts
* @tags filter, key value, numeric
*
* @since 0.3.2
*/
@OperatorAnnotation(partitionable = false)
public class FirstTillMatch extends BaseMatchOperator
{
/**
* Tuple emitted flag.
*/
boolean emitted = false;
/**
* The input port on which incoming key value pairs are received.
*/
public final transient DefaultInputPort> data = new DefaultInputPort>()
{
/**
* Compares the key,val pair with the match condition. Till a match is found tuples are emitted.
* Once a match is found, state is set to emitted, and no more tuples are compared (no more emits).
*/
@Override
public void process(HashMap tuple)
{
if (emitted) {
return;
}
V val = tuple.get(getKey());
if (val == null) { // skip if the key does not exist
return;
}
if (compareValue(val.doubleValue())) {
emitted = true;
}
if (!emitted) {
first.emit(cloneTuple(tuple));
}
}
};
/**
* The output port on which key value pairs are emitted until the first match.
*/
public final transient DefaultOutputPort> first = new DefaultOutputPort>();
/**
* Emitted set is reset to false
* @param windowId
*/
@Override
public void beginWindow(long windowId)
{
emitted = false;
}
}