blob: e263d3fa1e289e2c89c9c4919b38d36a63c8e859 [file] [log] [blame]
/**
* 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.apex.malhar.contrib.misc.math;
import java.util.HashMap;
import com.datatorrent.api.DefaultOutputPort;
import com.datatorrent.api.annotation.Stateless;
import com.datatorrent.lib.algo.MatchMap;
/**
* This operator compares tuples subclassed from Number based on the property "key", "value", and "cmp", and matching tuples are emitted.
* <p>
* If the tuple passed the test, it is emitted on the output port "compare".&nbsp; The comparison is done by getting double value from the Number.
* Both output ports are optional, but at least one has to be connected.
* This module is a pass through<br>
* <br>
* <b>Ports</b>:<br>
* <b>data</b>: expects Map&lt;K,V extends Number&gt;<br>
* <b>compare</b>: emits HashMap&lt;K,V&gt;<br>
* <br>
* <b>Properties</b>:<br>
* <b>key</b>: The key on which compare is done<br>
* <b>value</b>: The value to compare with<br>
* <b>cmp</b>: The compare function. Supported values are "lte", "lt", "eq", "neq", "gt", "gte". Default is "eq"<br>
* <br>
* <b>Compile time checks</b>:<br>
* Key must be non empty<br>
* Value must be able to convert to a "double"<br>
* CompareMap string, if specified, must be one of "lte", "lt", "eq", "neq", "gt", "gte"<br>
* <br>
* <b>Specific run time checks</b>:<br>
* Does the incoming HashMap have the key<br>
* Is the value of the key a number<br>
* <p>
* <b>Benchmarks</b>: Blast as many tuples as possible in inline mode<br>
* <table border="1" cellspacing=1 cellpadding=1 summary="Benchmark table for CompareMap&lt;K,V extends Number&gt; operator template">
* <tr><th>In-Bound</th><th>Out-bound</th><th>Comments</th></tr>
* <tr><td><b>8 Million K,V pairs/s</b></td><td>Each matched tuple is emitted</td><td>In-bound rate and number of tuples that match determine performance.
* Immutable tuples were used in the benchmarking. If you use mutable tuples and have lots of keys, the benchmarks may be lower</td></tr>
* </table><br>
* <p>
* <b>Function Table (K=String,V=Integer); emitError=true; key=a; value=3; cmp=eq)</b>:
* <table border="1" cellspacing=1 cellpadding=1 summary="Function table for CompareMap&lt;K,V extends Number&gt; operator template">
* <tr><th rowspan=2>Tuple Type (api)</th><th>In-bound (process)</th><th>Out-bound (emit)</th></tr>
* <tr><th><i>data</i>(Map&lt;K,V&gt;)</th><th><i>compare</i>(HashMap&lt;K,V&gt;)</th></tr>
* <tr><td>Begin Window (beginWindow())</td><td>N/A</td><td>N/A</td></tr>
* <tr><td>Data (process())</td><td>{a=2,b=20,c=1000}</td><td></td></tr>
* <tr><td>Data (process())</td><td>{a=3,b=40,c=2}</td><td>{a=3,b=40,c=2}</td></tr>
* <tr><td>Data (process())</td><td>{a=10,b=5}</td><td></td></tr>
* <tr><td>Data (process())</td><td>{d=55,b=12}</td><td></td></tr>
* <tr><td>Data (process())</td><td>{d=22,a=4}</td><td></td></tr>
* <tr><td>Data (process())</td><td>{d=4,a=3,g=5,h=44}</td><td>{d=4,a=3,g=5,h=44}</td></tr>
* <tr><td>End Window (endWindow())</td><td>N/A</td><td>N/A</td></tr>
* </table>
* <br>
* <br>
* @displayName Compare Map
* @category Math
* @tags comparison, key value, numeric, map
* @since 0.3.2
* @deprecated
*/
@Deprecated
@Stateless
public class CompareMap<K, V extends Number> extends MatchMap<K,V>
{
/**
* Output port that emits a hashmap of matching number tuples after comparison.
*/
public final transient DefaultOutputPort<HashMap<K, V>> compare = match;
}