All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.datatorrent.lib.algo.CompareExceptCountMap 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.Map;

import com.datatorrent.api.DefaultOutputPort;
import com.datatorrent.api.annotation.OperatorAnnotation;

import com.datatorrent.lib.util.UnifierSumNumber;

/**
 * This operator produces a count of how many tuples of value type Number satisfy and do not satisfy a specified compare function.
 * 

* A count is done on how many tuples of value type Number satisfy the compare function. The function is given by * "key", "value", and "cmp". If a tuple passed the test count is incremented. On end of window count is emitted on the output port "count". * The comparison is done by getting double value from the Number. *

*

* This module is an end of window module. If no tuple comes in during a window 0 is emitted on both ports, thus no matter what one Integer * tuple is emitted on each port
*
* StateFull : Yes, tuple are compare across application window(s).
* Partitions : Yes, count is unified at output port.
*
* Ports:
* data: expects Map<K,V extends Number>
* count: emits Integer
* except: emits Integer
*
* 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 Compare Match and No Match Count * @category Rules and Alerts * @tags count, key value * * @since 0.3.2 */ @OperatorAnnotation(partitionable = true) public class CompareExceptCountMap extends MatchMap { /** * The output port on which the number of tuples satisfying the compare function is emitted. */ public final transient DefaultOutputPort count = new DefaultOutputPort() { @Override public Unifier getUnifier() { return new UnifierSumNumber(); } }; /** * The output port on which the number of tuples not satisfying the compare function is emitted. */ public final transient DefaultOutputPort except = new DefaultOutputPort() { @Override public Unifier getUnifier() { return new UnifierSumNumber(); } }; protected int tcount = 0; protected int icount = 0; /** * Increments matched tuple count * @param tuple */ @Override public void tupleMatched(Map tuple) { tcount++; } /** * Increments not-matched tuple count * @param tuple */ @Override public void tupleNotMatched(Map tuple) { icount++; } /** * Emits the counts */ @Override public void endWindow() { count.emit(tcount); except.emit(icount); tcount = 0; icount = 0; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy