Return-Path: X-Original-To: apmail-apex-dev-archive@minotaur.apache.org Delivered-To: apmail-apex-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E8B5D19485 for ; Wed, 30 Mar 2016 07:24:43 +0000 (UTC) Received: (qmail 62956 invoked by uid 500); 30 Mar 2016 07:24:43 -0000 Delivered-To: apmail-apex-dev-archive@apex.apache.org Received: (qmail 62885 invoked by uid 500); 30 Mar 2016 07:24:43 -0000 Mailing-List: contact dev-help@apex.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@apex.incubator.apache.org Delivered-To: mailing list dev@apex.incubator.apache.org Received: (qmail 62874 invoked by uid 99); 30 Mar 2016 07:24:43 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Mar 2016 07:24:43 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 8C6F11A1235 for ; Wed, 30 Mar 2016 07:24:42 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.021 X-Spam-Level: X-Spam-Status: No, score=-4.021 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001] autolearn=disabled Received: from mx2-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id waA1ByVu18Ge for ; Wed, 30 Mar 2016 07:24:40 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx2-lw-eu.apache.org (ASF Mail Server at mx2-lw-eu.apache.org) with SMTP id 6F13D5FAE2 for ; Wed, 30 Mar 2016 07:24:40 +0000 (UTC) Received: (qmail 62850 invoked by uid 99); 30 Mar 2016 07:24:39 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Mar 2016 07:24:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 58773DFF10; Wed, 30 Mar 2016 07:24:39 +0000 (UTC) From: chinmaykolhatkar To: dev@apex.incubator.apache.org Reply-To: dev@apex.incubator.apache.org References: In-Reply-To: Subject: [GitHub] incubator-apex-malhar pull request: APEXMALHAR-2011-2012 Avro to P... Content-Type: text/plain Message-Id: <20160330072439.58773DFF10@git1-us-west.apache.org> Date: Wed, 30 Mar 2016 07:24:39 +0000 (UTC) Github user chinmaykolhatkar commented on a diff in the pull request: https://github.com/apache/incubator-apex-malhar/pull/211#discussion_r57846153 --- Diff: contrib/src/main/java/com/datatorrent/contrib/avro/PojoToAvro.java --- @@ -0,0 +1,264 @@ +/** + * 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.contrib.avro; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import org.apache.avro.AvroRuntimeException; +import org.apache.avro.Schema; +import org.apache.avro.Schema.Field; +import org.apache.avro.generic.GenericData; +import org.apache.avro.generic.GenericRecord; +import org.apache.commons.lang3.ClassUtils; +import org.apache.hadoop.classification.InterfaceStability; + +import com.datatorrent.api.AutoMetric; +import com.datatorrent.api.Context; +import com.datatorrent.api.Context.PortContext; +import com.datatorrent.api.DefaultInputPort; +import com.datatorrent.api.DefaultOutputPort; +import com.datatorrent.api.annotation.InputPortFieldAnnotation; +import com.datatorrent.common.util.BaseOperator; +import com.datatorrent.lib.util.PojoUtils; +import com.datatorrent.lib.util.PojoUtils.Getter; + +/** + *

+ * PojoToAvro + *

+ * A generic implementation for POJO to Avro conversion. A POJO is converted to + * a GenericRecord based on the schema provided. As of now only primitive types + * are supported. + * + * @displayName Pojo To Avro + * @category Converter + * @tags avro + * @since 3.3.0 + */ +@InterfaceStability.Evolving +public class PojoToAvro extends BaseOperator +{ + + private List columnNames; + + private Class cls; + + private List keyMethodMap; + + private transient String schemaString; + + private transient Schema schema; + + @AutoMetric + int recordCnt = 0; + + @AutoMetric + int errorCnt = 0; + + @AutoMetric + int fieldErrorCnt = 0; + + public final transient DefaultOutputPort output = new DefaultOutputPort(); + + private void parseSchema() throws IOException + { + setSchema(new Schema.Parser().parse(getSchemaString())); + } + + /** + * Returns the schema string for Avro Generic Record + * + * @return schemaString + */ + public String getSchemaString() + { + return schemaString; + } + + /** + * Sets the schema string + */ + public void setSchemaString(String schemaString) + { + this.schemaString = schemaString; + } + + /** + * Returns the schema object + * + * @return schema + */ + private Schema getSchema() + { + return schema; + } + + /** + * Sets the shcema object + */ + private void setSchema(Schema schema) + { + this.schema = schema; + } + + /** + * Returns the list for field names from provided Avro schema + * + * @return List of Fields + */ + private List getColumnNames() + { + return columnNames; + } + + /** + * Sets the list of column names representing the fields in Avro schema + */ + private void setColumnNames(List columnNames) + { + this.columnNames = columnNames; + } + + /** + * This method generates the getters for provided field of a given class + * + * @return Getter + */ + private Getter generateGettersForField(Class cls, String inputFieldName) + throws NoSuchFieldException, SecurityException + { + java.lang.reflect.Field f = cls.getDeclaredField(inputFieldName); + Class c = ClassUtils.primitiveToWrapper(f.getType()); + + Getter classGetter = PojoUtils.createGetter(cls, inputFieldName, c); + + return classGetter; + } + + /** + * Initializes the list of columns in POJO based on the names from schema + */ + private void initializeColumnMap(Schema schema) + { + setColumnNames(schema.getFields()); + + keyMethodMap = new ArrayList(); + for (int i = 0; i < getColumnNames().size(); i++) { + try { + keyMethodMap.add(generateGettersForField(cls, getColumnNames().get(i).name())); + } catch (NoSuchFieldException | SecurityException e) { + throw new RuntimeException("Failed to initialize pojo class getters for field: ", e); + } + } + } + + @InputPortFieldAnnotation(optional = false, schemaRequired = true) + public final transient DefaultInputPort data = new DefaultInputPort() + { + + @Override + public void setup(PortContext context) + { + cls = context.getValue(Context.PortContext.TUPLE_CLASS); + + try { + parseSchema(); + initializeColumnMap(getSchema()); + } catch (IOException e) { + LOG.error("Exception in parsing schema -" + e.getMessage()); + } + } + + @Override + public void process(Object tuple) + { + processTuple(tuple); + } + + }; + + /** + * Converts incoming tuples into Generic records + */ + protected void processTuple(Object tuple) + { + GenericRecord record = null; + + try { + record = getGenericRecord(tuple); + } catch (Exception e) { + LOG.error("Exception in parsing record"); + errorCnt++; + } + + if (record != null) { + output.emit(record); + recordCnt++; + } else { + errorCnt++; --- End diff -- If conversion fails, shouldn't this be going to error output port? --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---