blob: 10426267ca60e8b7a04aa7ef0794a1a3c4fc5894 [file] [log] [blame]
/*
* Copyright (c) 2013 DataTorrent, Inc. ALL Rights Reserved.
*
* 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.
*/
package com.datatorrent.lib.util;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.lang.mutable.MutableDouble;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This operator accumulates the values of "value" fields for different time and dimensions and emits the accumulated values as a map. 
* The emitted map's keys are a combination of the time and dimension fields,
* and the emitted map's values are another map from value fields to and accumulated value.
* <p></p>
* @displayName Dimension Time Bucket Sum
* @category Algorithmic
* @tags count, key value, numeric
* @since 0.3.2
*/
public class DimensionTimeBucketSumOperator extends AbstractDimensionTimeBucketOperator
{
private static final Logger LOG = LoggerFactory.getLogger(DimensionTimeBucketSumOperator.class);
private Map<String, Map<String, Number>> dataMap;
@Override
public void process(String timeBucket, String key, String field, Number value)
{
String finalKey = timeBucket + "|" + key;
Map<String, Number> m = dataMap.get(finalKey);
if (value == null) {
return;
}
if (m == null) {
m = new HashMap<String, Number>();
m.put(field, new MutableDouble(value));
dataMap.put(finalKey, m);
}
else {
Number n = m.get(field);
if (n == null) {
m.put(field, new MutableDouble(value));
} else {
((MutableDouble)n).add(value);
}
}
}
@Override
public void beginWindow(long windowId)
{
super.beginWindow(windowId);
dataMap = new HashMap<String, Map<String, Number>>();
}
@Override
public void endWindow()
{
if (!dataMap.isEmpty()) {
out.emit(dataMap);
LOG.info("Number of keyval pairs: {}", dataMap.size());
}
}
}