Package com.cloudera.cdk.morphline.stdlib

Source Code of com.cloudera.cdk.morphline.stdlib.LogCommand

/*
* Copyright 2013 Cloudera 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 com.cloudera.cdk.morphline.stdlib;

import java.util.Collections;
import java.util.List;

import com.cloudera.cdk.morphline.api.Command;
import com.cloudera.cdk.morphline.api.CommandBuilder;
import com.cloudera.cdk.morphline.api.MorphlineContext;
import com.cloudera.cdk.morphline.api.Record;
import com.cloudera.cdk.morphline.base.AbstractCommand;
import com.cloudera.cdk.morphline.base.FieldExpression;
import com.typesafe.config.Config;

/**
* Base class for commands that do slf4j logging; each log level is a subclass.
*/
abstract class LogCommand extends AbstractCommand {
 
  private String format;
  private String[] args; 
 
  public LogCommand(CommandBuilder builder, Config config, Command parent, Command child, MorphlineContext context) {
    super(builder, config, parent, child, context);
    this.format = getConfigs().getString(config, "format");
    List<String> argList = getConfigs().getStringList(config, "args", Collections.EMPTY_LIST);
    this.args = argList.toArray(new String[argList.size()]);     
    validateArguments();
  }

  @Override
  protected boolean doProcess(Record record) {
    Object[] resolvedArgs = new Object[args.length];
    for (int i = 0; i < args.length; i++) {
      resolvedArgs[i] = new FieldExpression(args[i], getConfig()).evaluate(record);
    }
    log(format, resolvedArgs);
    return super.doProcess(record);
  }
 
  protected abstract void log(String format, Object[] args);
    
}
TOP

Related Classes of com.cloudera.cdk.morphline.stdlib.LogCommand

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.