blob: 80531d3e07caf9ecf5acfe3d7b33e61bfbbb4388 [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.db;
import java.io.IOException;
import com.datatorrent.api.BaseOperator;
import com.datatorrent.api.Context.OperatorContext;
import com.datatorrent.api.DefaultInputPort;
import com.datatorrent.api.annotation.InputPortFieldAnnotation;
/**
* This is the base implementation of an output operator,
* which writes to a non-transactional store. 
* This operator does not provide the exactly once guarantee. 
* A concrete operator should be created from this skeleton implementation.
* <p></p>
* @displayName Abstract Store Output
* @category Store
* @tags output operator
*
* @param <T> The tuple type
* @param <S> The store type
* @since 0.9.3
*/
public abstract class AbstractStoreOutputOperator<T, S extends Connectable> extends BaseOperator
{
protected S store;
/**
* The input port on which tuples are received for writing.
*/
@InputPortFieldAnnotation(optional = true)
public final transient DefaultInputPort<T> input = new DefaultInputPort<T>()
{
@Override
public void process(T t)
{
processTuple(t);
}
};
/**
* Gets the store.
* @return the store.
*/
public S getStore()
{
return store;
}
/**
* Sets the store.
* @param store a {@link Connectable}.
*/
public void setStore(S store)
{
this.store = store;
}
@Override
public void setup(OperatorContext context)
{
try {
store.connect();
}
catch (IOException ex) {
throw new RuntimeException(ex);
}
}
@Override
public void beginWindow(long windowId)
{
}
@Override
public void teardown()
{
try {
store.disconnect();
}
catch (IOException ex) {
throw new RuntimeException(ex);
}
}
/**
* Processes the incoming tuple, presumably store the data in the tuple to the store
*
* @param tuple a tuple.
*/
public abstract void processTuple(T tuple);
}