Package org.apache.hadoop.chukwa.datacollection.adaptor

Source Code of org.apache.hadoop.chukwa.datacollection.adaptor.ExecAdaptor$RunToolTask

/*
* 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.hadoop.chukwa.datacollection.adaptor;


import org.apache.hadoop.chukwa.ChunkImpl;
import org.apache.hadoop.chukwa.datacollection.ChunkReceiver;
import org.apache.hadoop.chukwa.inputtools.plugin.ExecPlugin;
import org.apache.log4j.Logger;
import org.apache.log4j.helpers.ISO8601DateFormat;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.*;

/**
* Runs a command inside chukwa. Takes as params the interval in seconds at
* which to run the command, and the path and args to execute.
*
* Interval is optional, and defaults to 5 seconds.
*
* Example usage: add
* org.apache.hadoop.chukwa.datacollection.adaptor.ExecAdaptor Ps 2 /bin/ps aux
* 0
*
*/
public class ExecAdaptor extends ExecPlugin implements Adaptor {

  static final boolean FAKE_LOG4J_HEADER = true;
  static final boolean SPLIT_LINES = false;
  protected long adaptorID = 0;
  static Logger log = Logger.getLogger(ExecAdaptor.class);

  class RunToolTask extends TimerTask {
    public void run() {
      JSONObject o = execute();
      try {

        if (o.getInt("status") == statusKO)
          hardStop();

        // FIXME: downstream customers would like timestamps here.
        // Doing that efficiently probably means cutting out all the
        // excess buffer copies here, and appending into an OutputBuffer.
        byte[] data;
        if (FAKE_LOG4J_HEADER) {
          StringBuilder result = new StringBuilder();
          ISO8601DateFormat dateFormat = new org.apache.log4j.helpers.ISO8601DateFormat();
          result.append(dateFormat.format(new java.util.Date()));
          result.append(" INFO org.apache.hadoop.chukwa.");
          result.append(type);
          result.append(": ");
          result.append(o.getString("stdout"));
          data = result.toString().getBytes();
        } else {
          String stdout = o.getString("stdout");
          data = stdout.getBytes();
        }

        sendOffset += data.length;
        ChunkImpl c = new ChunkImpl(ExecAdaptor.this.type, "results from "
            + cmd, sendOffset, data, ExecAdaptor.this);

        if (SPLIT_LINES) {
          ArrayList<Integer> carriageReturns = new ArrayList<Integer>();
          for (int i = 0; i < data.length; ++i)
            if (data[i] == '\n')
              carriageReturns.add(i);

          c.setRecordOffsets(carriageReturns);
        } // else we get default one record

        dest.add(c);
      } catch (JSONException e) {
        // FIXME: log this somewhere
      } catch (InterruptedException e) {
        // TODO Auto-generated catch block
      } catch (AdaptorException e) {
        // FIXME: log this somewhere
      }
    }
  };

  String cmd;
  String type;
  ChunkReceiver dest;
  final java.util.Timer timer;
  long period = 5 * 1000;
  volatile long sendOffset = 0;

  public ExecAdaptor() {
    timer = new java.util.Timer();
  }

  @Override
  public String getCurrentStatus() throws AdaptorException {
    return type + " " + period + " " + cmd + " " + sendOffset;
  }

  public String getStreamName() {
    return cmd;
  }

  @Override
  public void hardStop() throws AdaptorException {
    super.stop();
    timer.cancel();
  }

  @Override
  public long shutdown() throws AdaptorException {
    try {
      timer.cancel();
      super.waitFor(); // wait for last data to get pushed out
    } catch (InterruptedException e) {
      return sendOffset;
    }
    return sendOffset;
  }

  @Override
  public void start(long adaptorID, String type, String status, long offset,
      ChunkReceiver dest) throws AdaptorException {

    int spOffset = status.indexOf(' ');
    if (spOffset > 0) {
      try {
        period = Integer.parseInt(status.substring(0, spOffset));
        cmd = status.substring(spOffset + 1);
      } catch (NumberFormatException e) {
        log.warn("ExecAdaptor: sample interval "
            + status.substring(0, spOffset) + " can't be parsed");
        cmd = status;
      }
    } else
      cmd = status;
    this.adaptorID = adaptorID;
    this.type = type;
    this.dest = dest;
    this.sendOffset = offset;

    TimerTask exec = new RunToolTask();
    timer.schedule(exec, 0L, period);
  }

  @Override
  public String getCmde() {
    return cmd;
  }

  @Override
  public String getType() {
    return type;
  }

}
TOP

Related Classes of org.apache.hadoop.chukwa.datacollection.adaptor.ExecAdaptor$RunToolTask

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.