blob: d6e9b1aa1171aae4b0a199f98be28ebff1a77275 [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 com.datatorrent.bufferserver.support;
import java.util.ArrayList;
import java.util.Collection;
import java.util.concurrent.atomic.AtomicInteger;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.datatorrent.bufferserver.packet.Tuple;
/**
*
*/
public class Subscriber extends com.datatorrent.bufferserver.client.Subscriber
{
public final ArrayList<Object> resetPayloads = new ArrayList<>();
public AtomicInteger tupleCount = new AtomicInteger(0);
public WindowIdHolder firstPayload;
public WindowIdHolder lastPayload;
public Subscriber(String id)
{
super(id);
}
@Override
public void activate(final String version, final String type, final String sourceId, final int mask,
final Collection<Integer> partitions, final long windowId, final int bufferSize)
{
tupleCount.set(0);
firstPayload = lastPayload = null;
resetPayloads.clear();
super.activate(version, type, sourceId, mask, partitions, windowId, bufferSize);
}
@Override
public void onMessage(byte[] buffer, int offset, int size)
{
Tuple tuple = Tuple.getTuple(buffer, offset, size);
tupleCount.incrementAndGet();
switch (tuple.getType()) {
case BEGIN_WINDOW:
beginWindow(tuple.getWindowId());
break;
case END_WINDOW:
endWindow(tuple.getWindowId());
break;
case RESET_WINDOW:
resetWindow(tuple.getBaseSeconds(), tuple.getWindowWidth());
break;
default:
break;
}
}
public void beginWindow(final int windowId)
{
WindowIdHolder payload = new WindowIdHolder()
{
@Override
public int getWindowId()
{
return windowId;
}
};
if (firstPayload == null) {
firstPayload = payload;
}
lastPayload = payload;
}
public void endWindow(final int windowId)
{
WindowIdHolder payload = new WindowIdHolder()
{
@Override
public int getWindowId()
{
return windowId;
}
};
if (firstPayload == null) {
firstPayload = payload;
}
lastPayload = payload;
}
public void resetWindow(final int baseSeconds, final int windowWidth)
{
resetPayloads.add(new ResetHolder()
{
@Override
public int getBaseSeconds()
{
return baseSeconds;
}
@Override
public int getWindowWidth()
{
return windowWidth;
}
});
}
public interface WindowIdHolder
{
public int getWindowId();
}
public interface ResetHolder
{
public int getBaseSeconds();
public int getWindowWidth();
}
@Override
public String toString()
{
return "BufferServerSubscriber";
}
private static final Logger logger = LoggerFactory.getLogger(Subscriber.class);
}