com.datatorrent.api.DefaultInputPort 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.api;
import com.datatorrent.api.Context.PortContext;
import com.datatorrent.api.Operator.InputPort;
/**
* Default abstract implementation for input ports.
* An operator would typically define a derived inner class with the process method.
* This class is designed for use with a transient field, i.e. not to be serialized with the operator state.
*
* @param
* @since 0.3.2
*/
public abstract class DefaultInputPort implements InputPort, Sink
{
private int count;
protected boolean connected = false;
/**
* Constructor for DefaultInputPort.
*/
public DefaultInputPort()
{
}
/** {@inheritDoc} */
@Override
public Sink getSink()
{
return this;
}
/** {@inheritDoc} */
@Override
public void setConnected(boolean connected)
{
this.connected = connected;
}
/** {@inheritDoc} */
@Override
public StreamCodec getStreamCodec()
{
return null;
}
/** {@inheritDoc} */
@Override
public void put(T tuple)
{
count++;
process(tuple);
}
/** {@inheritDoc} */
@Override
public int getCount(boolean reset)
{
try {
return count;
}
finally {
if (reset) {
count = 0;
}
}
}
/** {@inheritDoc} */
@Override
public void setup(PortContext context)
{
}
/** {@inheritDoc} */
@Override
public void teardown()
{
}
/**
* process.
*/
public abstract void process(T tuple);
}