blob: 45fc118ecc3531e71c7bafae5d0b74ddbbee6124 [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 org.apache.apex.malhar.contrib.memcache;
import java.util.List;
import org.apache.apex.malhar.lib.util.FieldInfo;
import org.apache.apex.malhar.lib.util.FieldValueGenerator;
import org.apache.apex.malhar.lib.util.PojoUtils;
import org.apache.apex.malhar.lib.util.PojoUtils.Getter;
import org.apache.apex.malhar.lib.util.TableInfo;
import org.apache.hadoop.classification.InterfaceStability.Evolving;
/**
*
* @displayName Memcache Output Operator
* @category Output
* @tags pojo, memcache
* @since 3.0.0
*/
@Evolving
public class MemcachePOJOOutputOperator extends AbstractMemcacheOutputOperator<Object>
{
private static final long serialVersionUID = 5290158463990158290L;
private TableInfo<FieldInfo> tableInfo;
private transient FieldValueGenerator<FieldInfo> fieldValueGenerator;
private transient Getter<Object, String> rowGetter;
@Override
public void processTuple(Object tuple)
{
if (rowGetter == null) {
// use string as row id
rowGetter = PojoUtils.createGetter(tuple.getClass(), tableInfo.getRowOrIdExpression(), String.class);
}
final List<FieldInfo> fieldsInfo = tableInfo.getFieldsInfo();
Object value = tuple;
if ( fieldsInfo != null ) {
if (fieldValueGenerator == null) {
fieldValueGenerator = FieldValueGenerator.getFieldValueGenerator(tuple.getClass(), fieldsInfo);
}
value = fieldValueGenerator.getFieldsValueAsMap(tuple);
}
getStore().put( rowGetter.get(tuple), value);
}
/**
*
* the information to convert pojo
*/
public TableInfo<FieldInfo> getTableInfo()
{
return tableInfo;
}
/**
*
* the information to convert pojo
*/
public void setTableInfo(TableInfo<FieldInfo> tableInfo)
{
this.tableInfo = tableInfo;
}
}