All Downloads are FREE. Search and download functionalities are using the official Maven repository.

co.cask.hydrator.plugin.StreamFormatter Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
/*
 * Copyright © 2015 Cask Data, Inc.
 *
 * 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 co.cask.hydrator.plugin;

import co.cask.cdap.api.annotation.Description;
import co.cask.cdap.api.annotation.Name;
import co.cask.cdap.api.annotation.Plugin;
import co.cask.cdap.api.data.format.StructuredRecord;
import co.cask.cdap.api.data.schema.Schema;
import co.cask.cdap.api.plugin.PluginConfig;
import co.cask.cdap.etl.api.Emitter;
import co.cask.cdap.etl.api.PipelineConfigurer;
import co.cask.cdap.etl.api.Transform;
import co.cask.cdap.etl.api.TransformContext;
import co.cask.cdap.format.StructuredRecordStringConverter;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.util.List;
import java.util.Map;
import javax.annotation.Nullable;

/**
 * Transforms a {@link StructuredRecord} into {@link co.cask.cdap.api.flow.flowlet.StreamEvent}.
 * 
 * This transforms formats the structured into a StreamEvent. It allows one to specify the 
 * fields that need to be considered as HEADER and for BODY one can specify the format as CSV, 
 * TSV, PSV and JSON.  
 */
@Plugin(type = "transform")
@Name("StreamFormatter")
@Description("Formats the data from Structured Record to CDAP Stream format.")
public final class StreamFormatter extends Transform {
  private static final Logger LOG = LoggerFactory.getLogger(StreamFormatter.class);
  private final Config config;
  
  // Specifies the output schema. 
  private Schema outSchema;
  
  // Fields that need to be added StreamEvent Header.
  private String[] headerFields = null;
  
  // Fields that need to be included in the body. 
  private String[] bodyFields = null;
  
  // Output Schema Field name that is considered as Stream Event Header. 
  private String headerFieldName;
  
  // Output Schema Field name that is considered as Stream Event Body.
  private String bodyFieldName;

  // Only used in tests. 
  public StreamFormatter(Config config) {
    this.config = config;
  }

  @Override
  public void configurePipeline(PipelineConfigurer pipelineConfigurer) throws IllegalArgumentException {
    super.configurePipeline(pipelineConfigurer);
    config.validate();

    // Check if the output schema JSON is invalid
    try {
      Schema out = Schema.parseJson(config.schema);
      List fields = out.getFields();

      if (fields.size() != 2) {
        throw new IllegalArgumentException("Output schema should have only two fields. One of type " +
                                             "String for Stream body and other of type Map for " +
                                             "Stream header.");
      }

      // We have to make sure that output schema includes two fields and only two fields. 
      // One of type MAP and other of type STRING. 
      Schema.Type type1 = fields.get(0).getSchema().getType();
      Schema.Type type2 = fields.get(1).getSchema().getType();
      
      if (type1.equals(type2)) {
        throw new IllegalArgumentException("Fields specified are of same type. Header should be of type " +
                                             "Map and Body should be of type String.");    
      }
      
      if (type1 != Schema.Type.MAP && type1 != Schema.Type.STRING) {
        throw new IllegalArgumentException("Field '" + fields.get(1).getName() + "' is not of type String or " +
                                             "Map.");        
      }

      if (type2 != Schema.Type.MAP && type2 != Schema.Type.STRING) {
        throw new IllegalArgumentException("Field '" + fields.get(1).getName() + "' is not of type String or " +
                                             "Map.");
      }

      pipelineConfigurer.getStageConfigurer().setOutputSchema(out);
    } catch (IOException e) {
      throw new IllegalArgumentException("Output Schema specified is not a valid JSON. Please check the schema JSON");
    }
  }
  
  @Override
  public void initialize(TransformContext context) throws Exception {
    super.initialize(context);
    config.validate();
    try {
      outSchema = Schema.parseJson(config.schema);
    } catch (IOException e) {
      throw new IllegalArgumentException("Output Schema specified is not a valid JSON. Please check the Schema JSON");
    }
    
    headerFields = config.header.split(",");
    if (config.body != null) {
      bodyFields = config.body.split(",");
    }
    
    // Iterate through output schema and find out which one is header and which is body.
    for (Schema.Field field : outSchema.getFields()) {
      if (field.getSchema().getType() == Schema.Type.STRING) {
        bodyFieldName = field.getName();
      } else if (field.getSchema().getType() == Schema.Type.MAP) {
        headerFieldName = field.getName();
      }
    }
  }
  
  @Override
  public void transform(StructuredRecord in, Emitter emitter) throws Exception {
    
    // Construct the header map based on the header fields specified 
    // as the input.
    Map headers = Maps.newHashMap();
    for (String field : headerFields) {
      Object o = in.get(field);
      if (o != null) {
        headers.put(field, o.toString());
      }
    }
    
    // Get the input schema and filter out all the fields that have 
    // been specified in the bodyField or if there is none, then 
    // transfer all the fields from input to the output that will 
    // be transformed into the body.
    Schema schema = in.getSchema();
    if (bodyFields != null) {
      List f = Lists.newArrayList();
      // Iterate through input and when you find a field that's
      // also in bodyField, then that is written to Structured
      // record. 
      for (Schema.Field field : in.getSchema().getFields()) {
        for (String bodyField : bodyFields) {
          if (field.getName().equalsIgnoreCase(bodyField)) {
            f.add(field);
          }
        }
      }
      schema = Schema.recordOf("out", f);
    }

    // Create a new structured record using the schema. 
    StructuredRecord.Builder oBuilder = StructuredRecord.builder(schema);
    for (Schema.Field field : schema.getFields()) {
      oBuilder.set(field.getName(), in.get(field.getName()));
    }
    StructuredRecord record = oBuilder.build();

    // Convert the structured record to the format specified in the configuration.
    String finalBody = "";
    if (config.format.equalsIgnoreCase("CSV")) {
      finalBody = StructuredRecordStringConverter.toDelimitedString(record, ",");
    } else if (config.format.equalsIgnoreCase("TSV")) {
      finalBody = StructuredRecordStringConverter.toDelimitedString(record, "\t");
    } else if (config.format.equalsIgnoreCase("PSV")) {
      finalBody = StructuredRecordStringConverter.toDelimitedString(record, "|");
    } else if (config.format.equalsIgnoreCase("JSON")) {
      finalBody = StructuredRecordStringConverter.toJsonString(record);
    }
    
    // Construct the final stream record to be sent to stream writer.
    StructuredRecord.Builder builder = StructuredRecord.builder(outSchema);
    builder.set(headerFieldName, headers);
    builder.set(bodyFieldName, finalBody);
    emitter.emit(builder.build());
  }

  /**
   * StreamFormatter Plugin Configuration.
   */
  public static class Config extends PluginConfig {
    
    @Name("body")
    @Description("Specify the fields to be set in the body")
    @Nullable
    private String body;
    
    @Name("header")
    @Description("Specify the fields to be set in the header")
    private String header;
    
    @Name("format")
    @Description("Format of the body to be written to stream. Defaults CSV")
    private String format;

    @Name("schema")
    @Description("Output schema")
    private String schema;


    public Config(String header, String body, String format, String schema) {
      this.header = header;
      this.body = body;
      this.format = format;
      this.schema = schema;
    }

    private void validate() {
      // If the format specified is not of one of the allowed types, then throw an exception.
      if (!format.equalsIgnoreCase("CSV") && !format.equalsIgnoreCase("TSV")
        && !format.equalsIgnoreCase("JSON") && !format.equalsIgnoreCase("PSV")) {
        throw new IllegalArgumentException("Invalid format '" + format + "', specified. Allowed values are " +
                                             "CSV, TSV, PSV or JSON.");
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy