com.athena.peacock.agent.netty.PeacockClientHandler.java Source code

Java tutorial

Introduction

Here is the source code for com.athena.peacock.agent.netty.PeacockClientHandler.java

Source

/*
 * Copyright 2013 The Athena-Peacock Project.
 *
 * 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.
 *
 * Revision History
 * Author         Date            Description
 * ---------------   ----------------   ------------
 * Sang-cheon Park   2013. 7. 17.      First Draft.
 */
package com.athena.peacock.agent.netty;

import io.netty.bootstrap.Bootstrap;
import io.netty.channel.Channel;
import io.netty.channel.ChannelHandler.Sharable;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.EventLoop;
import io.netty.channel.SimpleChannelInboundHandler;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.StringReader;
import java.io.UnsupportedEncodingException;
import java.net.InetAddress;
import java.util.ArrayList;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Properties;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.TimeUnit;

import org.apache.commons.io.IOUtils;
import org.apache.commons.lang.StringUtils;
import org.codehaus.plexus.util.cli.CommandLineException;
import org.codehaus.plexus.util.cli.CommandLineUtils;
import org.codehaus.plexus.util.cli.CommandLineUtils.StringStreamConsumer;
import org.codehaus.plexus.util.cli.Commandline;
import org.quartz.Scheduler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Component;

import com.athena.peacock.agent.util.MacAddressUtil;
import com.athena.peacock.agent.util.PropertyUtil;
import com.athena.peacock.agent.util.SigarUtil;
import com.athena.peacock.common.constant.PeacockConstant;
import com.athena.peacock.common.netty.PeacockDatagram;
import com.athena.peacock.common.netty.message.AgentInitialInfoMessage;
import com.athena.peacock.common.netty.message.ConfigInfo;
import com.athena.peacock.common.netty.message.MessageType;
import com.athena.peacock.common.netty.message.OSPackageInfoMessage;
import com.athena.peacock.common.netty.message.PackageInfo;
import com.athena.peacock.common.netty.message.ProvisioningCommandMessage;
import com.athena.peacock.common.netty.message.ProvisioningResponseMessage;
import com.athena.peacock.common.netty.message.SoftwareInfo;
import com.athena.peacock.common.netty.message.SoftwareInfoMessage;
import com.athena.peacock.common.provider.AppContext;

/**
 * <pre>
 *
 * </pre>
 * 
 * @author Sang-cheon Park
 * @version 1.0
 */
@Component
@Qualifier("peacockClientHandler")
@Sharable
public class PeacockClientHandler extends SimpleChannelInboundHandler<Object> {

    private static final Logger logger = LoggerFactory.getLogger(PeacockClientHandler.class);

    private boolean connected = false;
    private static boolean _packageCollected = false;
    private static boolean _softwareCollected = false;
    private String machineId = null;

    private PeacockClient client = null;

    @Override
    public void channelActive(ChannelHandlerContext ctx) throws Exception {
        logger.debug("channelActive() has invoked. RemoteAddress=[{}]", ctx.channel().remoteAddress());

        connected = true;

        String ipAddr = ctx.channel().remoteAddress().toString();
        ipAddr = ipAddr.substring(1, ipAddr.indexOf(":"));

        // register a new channel
        if (ChannelManagement.registerChannel(ipAddr, ctx.channel()) == 1) {
            // ? ? ?? ?? ? System  .
            ctx.writeAndFlush(getAgentInitialInfo());
        } else {
            while (true) {
                if (this.machineId == null) {
                    Thread.sleep(100);
                } else {
                    break;
                }
            }

            AgentInitialInfoMessage message = new AgentInitialInfoMessage();
            message.setMachineId(this.machineId);

            ctx.writeAndFlush(new PeacockDatagram<AgentInitialInfoMessage>(message));
        }
    }

    @SuppressWarnings("unchecked")
    @Override
    protected void channelRead0(ChannelHandlerContext ctx, Object msg) throws Exception {
        logger.debug("channelRead0() has invoked.");

        logger.debug("[Client] Object => " + msg.getClass().getName());
        logger.debug("[Client] Contents => " + msg.toString());

        if (msg instanceof PeacockDatagram) {
            MessageType messageType = ((PeacockDatagram<?>) msg).getMessageType();

            if (messageType.equals(MessageType.COMMAND)) {
                ProvisioningResponseMessage response = new ProvisioningResponseMessage();
                response.setAgentId(((PeacockDatagram<ProvisioningCommandMessage>) msg).getMessage().getAgentId());
                response.setBlocking(((PeacockDatagram<ProvisioningCommandMessage>) msg).getMessage().isBlocking());

                ((PeacockDatagram<ProvisioningCommandMessage>) msg).getMessage().executeCommands(response);

                ctx.writeAndFlush(new PeacockDatagram<ProvisioningResponseMessage>(response));
            } else if (messageType.equals(MessageType.PACKAGE_INFO)) {
                ctx.writeAndFlush("Start OS Package collecting...");

                String packageFile = null;

                try {
                    packageFile = PropertyUtil.getProperty(PeacockConstant.PACKAGE_FILE_KEY);
                } catch (Exception e) {
                    // nothing to do.
                } finally {
                    if (StringUtils.isEmpty(packageFile)) {
                        packageFile = "/peacock/agent/config/package.log";
                    }
                }

                new PackageGatherThread(ctx, packageFile).start();
            } else if (messageType.equals(MessageType.INITIAL_INFO)) {
                machineId = ((PeacockDatagram<AgentInitialInfoMessage>) msg).getMessage().getAgentId();
                String packageCollected = ((PeacockDatagram<AgentInitialInfoMessage>) msg).getMessage()
                        .getPackageCollected();
                String softwareInstalled = ((PeacockDatagram<AgentInitialInfoMessage>) msg).getMessage()
                        .getSoftwareInstalled();

                String agentFile = null;
                String agentId = null;

                try {
                    agentFile = PropertyUtil.getProperty(PeacockConstant.AGENT_ID_FILE_KEY);
                } catch (Exception e) {
                    // nothing to do.
                } finally {
                    if (StringUtils.isEmpty(agentFile)) {
                        agentFile = "/peacock/agent/.agent";
                    }
                }

                File file = new File(agentFile);
                boolean isNew = false;

                try {
                    agentId = IOUtils.toString(file.toURI());

                    if (!agentId.equals(machineId)) {
                        isNew = true;
                    }
                } catch (IOException e) {
                    logger.error(agentFile + " file cannot read or saved invalid agent ID.", e);
                }

                if (isNew) {
                    logger.info("New Agent-ID({}) will be saved.", machineId);

                    try {
                        file.setWritable(true);
                        OutputStreamWriter output = new OutputStreamWriter(new FileOutputStream(file));
                        output.write(machineId);
                        file.setReadOnly();
                        IOUtils.closeQuietly(output);
                    } catch (UnsupportedEncodingException e) {
                        logger.error("UnsupportedEncodingException has occurred : ", e);
                    } catch (FileNotFoundException e) {
                        logger.error("FileNotFoundException has occurred : ", e);
                    } catch (IOException e) {
                        logger.error("IOException has occurred : ", e);
                    }
                }

                //   ?      ??   
                if (packageCollected != null && packageCollected.equals("N")) {
                    if (!_packageCollected) {
                        _packageCollected = true;
                        String packageFile = null;

                        try {
                            packageFile = PropertyUtil.getProperty(PeacockConstant.PACKAGE_FILE_KEY);
                        } catch (Exception e) {
                            // nothing to do.
                        } finally {
                            if (StringUtils.isEmpty(packageFile)) {
                                packageFile = "/peacock/agent/config/package.log";
                            }
                        }

                        file = new File(packageFile);

                        if (!file.exists()) {
                            new PackageGatherThread(ctx, packageFile).start();
                        }
                    }
                }

                if (softwareInstalled != null && softwareInstalled.equals("N")) {
                    if (!_softwareCollected) {
                        _softwareCollected = true;
                        new SoftwareGatherThread(ctx).start();
                    }
                }

                Scheduler scheduler = (Scheduler) AppContext.getBean("quartzJobScheduler");

                if (!scheduler.isStarted()) {
                    scheduler.start();
                }
            }
        }
    }

    @Override
    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
        logger.error("Unexpected exception from downstream.", cause);
        ctx.close();
    }

    /* (non-Javadoc)
     * @see io.netty.channel.ChannelInboundHandlerAdapter#channelInactive(io.netty.channel.ChannelHandlerContext)
     */
    @Override
    public void channelInactive(ChannelHandlerContext ctx) throws Exception {
        logger.debug("channelInactive() has invoked. RemoteAddress=[{}]", ctx.channel().remoteAddress());

        // deregister a closed channel
        ChannelManagement.deregisterChannel(ctx.channel());

        if (ChannelManagement.getChannelSize() == 0) {
            connected = false;
        }

        // ? ? ? 5  ?? .
        if (client == null) {
            client = AppContext.getBean(PeacockClient.class);
        }

        final EventLoop eventLoop = ctx.channel().eventLoop();
        final String ipAddr = ctx.channel().remoteAddress().toString();
        eventLoop.schedule(new Runnable() {
            @Override
            public void run() {
                logger.debug("Attempt to reconnect within 5 seconds.");
                client.createBootstrap(new Bootstrap(), eventLoop, ipAddr.substring(1, ipAddr.indexOf(":")));
            }
        }, 5L, TimeUnit.SECONDS);

        super.channelInactive(ctx);
    }

    /**
    * @return the connected
    */
    public boolean isConnected() {
        return connected;
    }

    /**
     * @return the channel
     */
    private Channel getAnyChannel() {
        List<String> keyList = ChannelManagement.getKeys();
        int idx = (int) (Math.random() * 10) % keyList.size();
        return getChannel(keyList.get(idx));
    }

    /**
     * @return the channel
     */
    private Channel getChannel(String ipAddr) {
        return ChannelManagement.getChannel(ipAddr);
    }

    /**
     * @return the channel
     */
    public void close() {
        ChannelManagement.deregisterAllChannel();
    }

    /**
     * <pre>
     * 
     * </pre>
     * @param datagram
     */
    public void sendMessage(PeacockDatagram<?> datagram) {
        // Agent Controller    Monitoring     ? ,
        // Agent  ?  ? ? ?  ?.
        getAnyChannel().writeAndFlush(datagram);
    }//end of sendMessage()

    /**
      * <pre>
      * Agent?   .
      * </pre>
      * @return
     * @throws Exception 
      */
    private PeacockDatagram<AgentInitialInfoMessage> getAgentInitialInfo() throws Exception {
        String agentId = IOUtils
                .toString(new File(PropertyUtil.getProperty(PeacockConstant.AGENT_ID_FILE_KEY)).toURI());

        AgentInitialInfoMessage message = new AgentInitialInfoMessage();
        message.setMacAddrMap(MacAddressUtil.getMacAddressMap());
        message.setAgentId(agentId);
        message.setOsName(System.getProperty("os.name"));
        message.setOsArch(System.getProperty("os.arch"));
        message.setOsVersion(System.getProperty("os.version"));
        message.setCpuClock(SigarUtil.getCpuClock());
        message.setCpuNum(SigarUtil.getCpuNum());
        message.setCpuModel(SigarUtil.getCpuModel());
        message.setCpuVendor(SigarUtil.getCpuVendor());
        message.setMemSize(SigarUtil.getMemSize());
        message.setHostName(SigarUtil.getNetInfo().getHostName());
        //message.setHostName(InetAddress.getLocalHost().getHostName());

        try {
            // 
            message.setIpAddr(InetAddress.getLocalHost().getHostAddress());
        } catch (Exception e) {
            // ignore
            logger.info("[{}] has occurred but ignore this exception.", e.getMessage());
        }

        return new PeacockDatagram<AgentInitialInfoMessage>(message);
    }//end of getAgentInitialInfo()

    /**
     * <pre>
     * Channel   ?
     * </pre>
     * @author Sang-cheon Park
     * @version 1.0
     */
    static class ChannelManagement {

        static Map<String, Channel> channelMap = new ConcurrentHashMap<String, Channel>();

        /**
         * <pre>
         *  ?? ?.
         * </pre>
         * @param ipAddr
         * @param channel
         */
        synchronized static int registerChannel(String ipAddr, Channel channel) {
            logger.debug("ipAddr({}) and channel({}) will be added to channelMap.", ipAddr, channel);
            channelMap.put(ipAddr, channel);

            return channelMap.size();
        }//end of registerChannel()

        /**
           * <pre>
           * ipAddr?  ?? map? .
           * </pre>
           * @param ipAddr
           */
        synchronized static void deregisterChannel(String ipAddr) {
            logger.debug("ipAddr({}) will be removed from channelMap.", ipAddr);
            channelMap.remove(ipAddr);
        }//end of deregisterChannel()

        /**
         * <pre>
         *  ? ?? map? .
         * </pre>
         * @param channel
         */
        synchronized static void deregisterChannel(Channel channel) {
            Iterator<Entry<String, Channel>> iter = channelMap.entrySet().iterator();

            Entry<String, Channel> entry = null;
            while (iter.hasNext()) {
                entry = iter.next();

                if (entry.getValue() != null && entry.getValue() == channel) {
                    deregisterChannel(entry.getKey());
                    break;
                }
            }
        }//end of deregisterChannel()

        /**
         * <pre>
         * ?  ?? .
         * </pre>
         */
        synchronized static void deregisterAllChannel() {
            Iterator<Entry<String, Channel>> iter = channelMap.entrySet().iterator();

            while (iter.hasNext()) {
                deregisterChannel(iter.next().getKey());
            }
        }//end of deregisterAllChannel()

        /**
         * <pre>
         * ipAddr?  ?  .
         * </pre>
         * @param ipAddr
         * @return
         */
        static Channel getChannel(String ipAddr) {
            return channelMap.get(ipAddr);
        }//end of getChannel()

        /**
         * <pre>
         * ? ?  .
         * </pre>
         * @return
         */
        static synchronized int getChannelSize() {
            return channelMap.size();
        }//end of getChannelSize()

        /**
         * <pre>
         * ? ? IP ?? .
         * </pre>
         * @return
         */
        static List<String> getKeys() {
            return new ArrayList<String>(channelMap.keySet());
        }//end of getKeys()
    }
    //end of ChannelManagement.java
}
//end of PeacockClientHandler.java

/**
 * <pre>
 * Agent?    
 * </pre>
 * @author Sang-cheon Park
 * @version 1.0
 */
class PackageGatherThread extends Thread {

    private static final Logger logger = LoggerFactory.getLogger(PackageGatherThread.class);

    private ChannelHandlerContext ctx;
    private String packageFile;

    public PackageGatherThread(ChannelHandlerContext ctx, String packageFile) {
        this.ctx = ctx;
        this.packageFile = packageFile;
    }

    @Override
    public void run() {
        try {
            // rpm -qa    
            Commandline commandLine = new Commandline();
            commandLine.setExecutable("rpm");
            commandLine.createArg().setValue("-qa");

            StringStreamConsumer consumer = new CommandLineUtils.StringStreamConsumer();

            logger.debug("Start Package(rpm) info gathering...");
            logger.debug("~]$ {}\n", commandLine.toString());

            int returnCode = CommandLineUtils.executeCommandLine(commandLine, consumer, consumer,
                    Integer.MAX_VALUE);

            if (returnCode == 0) {
                String[] rpms = consumer.getOutput().split("\n");

                OSPackageInfoMessage msg = new OSPackageInfoMessage(MessageType.PACKAGE_INFO);
                msg.setAgentId(IOUtils
                        .toString(new File(PropertyUtil.getProperty(PeacockConstant.AGENT_ID_FILE_KEY)).toURI()));
                PackageInfo packageInfo = null;
                for (String rpm : rpms) {
                    try {
                        // rpm -q --qf "%{NAME}\n%{ARCH}\n%{SIZE}\n%{VERSION}\n%{RELEASE}\n%{INSTALLTIME:date}\n%{SUMMARY}\n%{DESCRIPTION}" ${PACKAGE_NAME}  ?   
                        packageInfo = getPackageInfo(rpm);

                        if (packageInfo != null) {
                            msg.addPackageInfo(packageInfo);
                        }
                    } catch (Exception e) {
                        logger.error("Unhandled Exception has occurred. ", e);
                    }
                }

                StringBuilder sb = new StringBuilder("CurrenDate : ").append(new Date()).append(", RPM Count : ")
                        .append(rpms.length).append("\r\n");

                FileWriter fw = new FileWriter(packageFile, true);
                fw.write(sb.toString());
                fw.flush();

                IOUtils.closeQuietly(fw);

                if (msg.getPackageInfoList().size() > 0) {
                    ctx.writeAndFlush(new PeacockDatagram<OSPackageInfoMessage>(msg));
                }

                logger.debug("End Package(rpm) info gathering...");
            } else {
                // when command execute failed.
                // especially command not found.
                logger.debug("End Package(rpm) info gathering with error(command execute failed)...");
            }
        } catch (Exception e) {
            logger.error("Unhandled Exception has occurred. ", e);
        }
    }

    private PackageInfo getPackageInfo(String rpm) throws CommandLineException {
        Commandline commandLine = new Commandline();
        commandLine.setExecutable("rpm");
        commandLine.createArg().setValue("-q");
        commandLine.createArg().setValue("--qf");
        commandLine.createArg().setValue(
                "%{NAME}\n%{ARCH}\n%{SIZE}\n%{VERSION}\n%{RELEASE}\n%{INSTALLTIME}\n%{SUMMARY}\n%{DESCRIPTION}");
        commandLine.createArg().setValue(rpm);

        //logger.debug("~]$ {}\n", commandLine.toString());

        StringStreamConsumer consumer = new CommandLineUtils.StringStreamConsumer();
        int returnCode = CommandLineUtils.executeCommandLine(commandLine, consumer, consumer, Integer.MAX_VALUE);

        if (returnCode == 0) {
            PackageInfo packageInfo = new PackageInfo();

            String result = consumer.getOutput();
            int start = 0, end = 0;

            start = 0;
            end = result.indexOf("\n", start);
            packageInfo.setName(result.substring(start, end));

            start = end + 1;
            end = result.indexOf("\n", start);
            packageInfo.setArch(result.substring(start, end));

            start = end + 1;
            end = result.indexOf("\n", start);
            packageInfo.setSize(result.substring(start, end));

            start = end + 1;
            end = result.indexOf("\n", start);
            packageInfo.setVersion(result.substring(start, end));

            start = end + 1;
            end = result.indexOf("\n", start);
            packageInfo.setRelease(result.substring(start, end));

            start = end + 1;
            end = result.indexOf("\n", start);
            packageInfo.setInstallDate(new Date(Long.parseLong(result.substring(start, end)) * 1000));

            start = end + 1;
            end = result.indexOf("\n", start);
            packageInfo.setSummary(result.substring(start, end));

            start = end + 1;
            packageInfo.setDescription(result.substring(start));

            return packageInfo;
        } else {
            return null;
        }
    }
}
//end of PackageGatherThread.java

/**
 * <pre>
 * Agent?    
 * </pre>
 * @author Sang-cheon Park
 * @version 1.0
 */
class SoftwareGatherThread extends Thread {

    private static final Logger logger = LoggerFactory.getLogger(SoftwareGatherThread.class);

    private ChannelHandlerContext ctx;

    public SoftwareGatherThread(ChannelHandlerContext ctx) {
        this.ctx = ctx;
    }

    @Override
    public void run() {
        try {
            StringStreamConsumer consumer = null;
            Commandline commandLine = null;
            int returnCode = 0;
            Properties properties = null;

            SoftwareInfoMessage msg = new SoftwareInfoMessage(MessageType.SOFTWARE_INFO);
            msg.setAgentId(IOUtils
                    .toString(new File(PropertyUtil.getProperty(PeacockConstant.AGENT_ID_FILE_KEY)).toURI()));
            SoftwareInfo softwareInfo = null;

            // =======================
            // 1. JBOSS EWS(HTTPD)
            // =======================
            try {
                commandLine = new Commandline();
                commandLine.setExecutable("sh");
                commandLine.createArg().setLine("chkhttpd.sh");

                logger.debug("Start Software(httpd) info gathering...");
                logger.debug("~]$ {}\n", commandLine.toString());

                consumer = new CommandLineUtils.StringStreamConsumer();

                returnCode = CommandLineUtils.executeCommandLine(commandLine, consumer, consumer,
                        Integer.MAX_VALUE);

                if (returnCode == 0) {
                    properties = new Properties();
                    properties.load(new StringReader(consumer.getOutput()));

                    int count = Integer.parseInt((String) properties.get("COUNT"));
                    String apacheHome = (String) properties.get("APACHE_HOME");
                    String serverHome = (String) properties.get("SERVER_HOME");
                    String startCmd = (String) properties.get("START_CMD");
                    String stopCmd = (String) properties.get("STOP_CMD");

                    for (int i = 1; i <= count; i++) {
                        softwareInfo = new SoftwareInfo();
                        softwareInfo.setName("httpd");

                        if (apacheHome != null && apacheHome.split(",")[i].indexOf("2.1") >= 0) {
                            softwareInfo.setVersion("2.2.26");
                        } else {
                            softwareInfo.setVersion("2.2.22");
                        }

                        softwareInfo.getInstallLocations().add(apacheHome.split(",")[i]);
                        softwareInfo.getInstallLocations().add(serverHome.split(",")[i] + "/bin");
                        softwareInfo.getInstallLocations().add(serverHome.split(",")[i] + "/conf");
                        softwareInfo.getInstallLocations().add(serverHome.split(",")[i] + "/log");
                        softwareInfo.getInstallLocations().add(serverHome.split(",")[i] + "/run");
                        softwareInfo.getInstallLocations().add(serverHome.split(",")[i] + "/www");
                        softwareInfo.setStartWorkingDir("");
                        softwareInfo.setStartCommand(
                                startCmd.split(",")[i].substring(0, startCmd.split(",")[i].indexOf(" ")));
                        softwareInfo.setStartArgs(
                                startCmd.split(",")[i].substring(startCmd.split(",")[i].indexOf(" ") + 1));
                        softwareInfo.setStopWorkingDir("");
                        softwareInfo.setStopCommand(
                                stopCmd.split(",")[i].substring(0, stopCmd.split(",")[i].indexOf(" ")));
                        softwareInfo.setStopArgs(
                                stopCmd.split(",")[i].substring(stopCmd.split(",")[i].indexOf(" ") + 1));

                        String configFile = null;
                        ConfigInfo configInfo = null;

                        String[] configKeys = new String[] { "HTTPD_CONF", "HTTPD_INFO_CONF", "SSL_CONF",
                                "URIWORKERMAP", "WORKERS" };

                        for (String configKey : configKeys) {
                            if ((configFile = (String) properties.get(configKey)) != null) {
                                // ,,,,, ?  split size 0 ? ?   ? .
                                configFile = configFile + " ";
                                if (configFile.split(",").length > 0
                                        && configFile.split(",")[i].indexOf("/") >= 0) {
                                    commandLine = new Commandline();
                                    commandLine.setExecutable("cat");
                                    commandLine.createArg().setLine(configFile.split(",")[i]);

                                    consumer = new CommandLineUtils.StringStreamConsumer();

                                    returnCode = CommandLineUtils.executeCommandLine(commandLine, consumer,
                                            consumer, Integer.MAX_VALUE);

                                    if (returnCode == 0) {
                                        configInfo = new ConfigInfo();
                                        configInfo.setConfigFileLocation(configFile.split(",")[i].substring(0,
                                                configFile.split(",")[i].lastIndexOf("/")));
                                        configInfo.setConfigFileName(configFile.split(",")[i]
                                                .substring(configFile.split(",")[i].lastIndexOf("/") + 1,
                                                        configFile.split(",")[i].length())
                                                .trim());
                                        configInfo.setConfigFileContents(consumer.getOutput().substring(0,
                                                consumer.getOutput().length() - 1));
                                        softwareInfo.getConfigInfoList().add(configInfo);
                                    }
                                }
                            }
                        }

                        msg.getSoftwareInfoList().add(softwareInfo);
                    }

                    logger.debug("End Software(httpd) info gathering...");
                }
            } catch (Exception e1) {
                // ignore after logging
                logger.error("Unhandled Exception has occurred. ", e1);
            }

            // =======================
            // 2. JBOSS EWS(TOMCAT)
            // =======================
            try {
                commandLine = new Commandline();
                commandLine.setExecutable("sh");
                commandLine.createArg().setLine("chkews.sh");

                logger.debug("Start Software(tomcat) info gathering...");
                logger.debug("~]$ {}\n", commandLine.toString());

                consumer = new CommandLineUtils.StringStreamConsumer();

                returnCode = CommandLineUtils.executeCommandLine(commandLine, consumer, consumer,
                        Integer.MAX_VALUE);

                if (returnCode == 0) {
                    properties = new Properties();
                    properties.load(new StringReader(consumer.getOutput()));

                    int count = Integer.parseInt((String) properties.get("COUNT"));
                    String version = (String) properties.get("VERSION");
                    String catalinaHome = (String) properties.get("CATALINA_HOME");
                    String serverHome = (String) properties.get("SERVER_HOME");
                    String startCmd = (String) properties.get("START_CMD");
                    String stopCmd = (String) properties.get("STOP_CMD");

                    for (int i = 1; i <= count; i++) {
                        softwareInfo = new SoftwareInfo();
                        softwareInfo.setName("tomcat");

                        if (version != null && version.split(",")[i].indexOf("7") >= 0) {
                            softwareInfo.setVersion("7.0.54");
                        } else {
                            softwareInfo.setVersion("6.0.41");
                        }

                        softwareInfo.getInstallLocations().add(catalinaHome.split(",")[i].substring(0,
                                catalinaHome.split(",")[i].lastIndexOf("/")));
                        softwareInfo.getInstallLocations().add(serverHome.split(",")[i] + "/apps");
                        softwareInfo.getInstallLocations().add(serverHome.split(",")[i] + "/bin");
                        softwareInfo.getInstallLocations().add(serverHome.split(",")[i] + "/Servers");
                        softwareInfo.getInstallLocations().add(serverHome.split(",")[i] + "/svrlogs");
                        softwareInfo.getInstallLocations().add(serverHome.split(",")[i] + "/wily");
                        softwareInfo.setStartWorkingDir("");
                        softwareInfo.setStartCommand(
                                startCmd.split(",")[i].substring(0, startCmd.split(",")[i].indexOf(" ")));
                        softwareInfo.setStartArgs(
                                startCmd.split(",")[i].substring(startCmd.split(",")[i].indexOf(" ") + 1));
                        softwareInfo.setStopWorkingDir("");
                        softwareInfo.setStopCommand(
                                stopCmd.split(",")[i].substring(0, stopCmd.split(",")[i].indexOf(" ")));
                        softwareInfo.setStopArgs(
                                stopCmd.split(",")[i].substring(stopCmd.split(",")[i].indexOf(" ") + 1));

                        String configFile = null;
                        ConfigInfo configInfo = null;

                        String[] configKeys = new String[] { "ENV_SH", "SERVER_XML", "CONTEXT_XML" };

                        for (String configKey : configKeys) {
                            if ((configFile = (String) properties.get(configKey)) != null) {
                                // ,,,,, ?  split size 0 ? ?   ? .
                                configFile = configFile + " ";
                                if (configFile.split(",").length > 0
                                        && configFile.split(",")[i].indexOf("/") >= 0) {
                                    commandLine = new Commandline();
                                    commandLine.setExecutable("cat");
                                    commandLine.createArg().setLine(configFile.split(",")[i]);

                                    consumer = new CommandLineUtils.StringStreamConsumer();

                                    returnCode = CommandLineUtils.executeCommandLine(commandLine, consumer,
                                            consumer, Integer.MAX_VALUE);

                                    if (returnCode == 0) {
                                        configInfo = new ConfigInfo();
                                        configInfo.setConfigFileLocation(configFile.split(",")[i].substring(0,
                                                configFile.split(",")[i].lastIndexOf("/")));
                                        configInfo.setConfigFileName(configFile.split(",")[i]
                                                .substring(configFile.split(",")[i].lastIndexOf("/") + 1,
                                                        configFile.split(",")[i].length())
                                                .trim());
                                        configInfo.setConfigFileContents(consumer.getOutput().substring(0,
                                                consumer.getOutput().length() - 1));
                                        softwareInfo.getConfigInfoList().add(configInfo);
                                    }
                                }
                            }
                        }

                        msg.getSoftwareInfoList().add(softwareInfo);
                    }

                    logger.debug("End Software(tomcat) info gathering...");
                }
            } catch (Exception e1) {
                // ignore after logging
                logger.error("Unhandled Exception has occurred. ", e1);
            }

            // =======================
            // 3. JBOSS EAP
            // =======================
            try {
                commandLine = new Commandline();
                commandLine.setExecutable("sh");
                commandLine.createArg().setLine("chkeap.sh");

                logger.debug("Start Software(eap) info gathering...");
                logger.debug("~]$ {}\n", commandLine.toString());

                consumer = new CommandLineUtils.StringStreamConsumer();

                returnCode = CommandLineUtils.executeCommandLine(commandLine, consumer, consumer,
                        Integer.MAX_VALUE);

                if (returnCode == 0) {
                    properties = new Properties();
                    properties.load(new StringReader(consumer.getOutput()));

                    int count = Integer.parseInt((String) properties.get("COUNT"));
                    String version = (String) properties.get("VERSION");
                    String jbossHome = (String) properties.get("JBOSS_HOME");
                    String serverHome = (String) properties.get("SERVER_HOME");
                    String startCmd = (String) properties.get("START_CMD");
                    String stopCmd = (String) properties.get("STOP_CMD");

                    for (int i = 1; i <= count; i++) {
                        softwareInfo = new SoftwareInfo();
                        softwareInfo.setName("eap");

                        if (version != null && version.split(",")[i].indexOf("5.2") >= 0) {
                            softwareInfo.setVersion("5.2.0");
                        } else {
                            softwareInfo.setVersion("5.1.2");
                        }

                        softwareInfo.getInstallLocations().add(jbossHome.split(",")[i]);
                        softwareInfo.getInstallLocations().add(serverHome.split(",")[i] + "/apps");
                        softwareInfo.getInstallLocations().add(serverHome.split(",")[i] + "/Servers");
                        softwareInfo.getInstallLocations().add(serverHome.split(",")[i] + "/svrlogs");
                        softwareInfo.getInstallLocations().add(serverHome.split(",")[i] + "/wily");
                        softwareInfo.setStartWorkingDir("");
                        softwareInfo.setStartCommand(
                                startCmd.split(",")[i].substring(0, startCmd.split(",")[i].indexOf(" ")));
                        softwareInfo.setStartArgs(
                                startCmd.split(",")[i].substring(startCmd.split(",")[i].indexOf(" ") + 1));
                        softwareInfo.setStopWorkingDir("");
                        softwareInfo.setStopCommand(
                                stopCmd.split(",")[i].substring(0, stopCmd.split(",")[i].indexOf(" ")));
                        softwareInfo.setStopArgs(
                                stopCmd.split(",")[i].substring(stopCmd.split(",")[i].indexOf(" ") + 1));

                        String configFile = null;
                        ConfigInfo configInfo = null;

                        String[] configKeys = new String[] { "ENV_SH", "DS_XML", "LOGIN_CONFIG_XML" };

                        for (String configKey : configKeys) {
                            if ((configFile = (String) properties.get(configKey)) != null) {
                                // ,,,,, ?  split size 0 ? ?   ? .
                                configFile = configFile + " ";
                                if (configFile.split(",").length > 0
                                        && configFile.split(",")[i].indexOf("/") >= 0) {
                                    commandLine = new Commandline();
                                    commandLine.setExecutable("cat");
                                    commandLine.createArg().setLine(configFile.split(",")[i]);

                                    consumer = new CommandLineUtils.StringStreamConsumer();

                                    returnCode = CommandLineUtils.executeCommandLine(commandLine, consumer,
                                            consumer, Integer.MAX_VALUE);

                                    if (returnCode == 0) {
                                        configInfo = new ConfigInfo();
                                        configInfo.setConfigFileLocation(configFile.split(",")[i].substring(0,
                                                configFile.split(",")[i].lastIndexOf("/")));
                                        configInfo.setConfigFileName(configFile.split(",")[i]
                                                .substring(configFile.split(",")[i].lastIndexOf("/") + 1,
                                                        configFile.split(",")[i].length())
                                                .trim());
                                        configInfo.setConfigFileContents(consumer.getOutput().substring(0,
                                                consumer.getOutput().length() - 1));
                                        softwareInfo.getConfigInfoList().add(configInfo);
                                    }
                                }
                            }
                        }

                        msg.getSoftwareInfoList().add(softwareInfo);
                    }

                    logger.debug("End Software(eap) info gathering...");
                }
            } catch (Exception e1) {
                // ignore after logging
                logger.error("Unhandled Exception has occurred. ", e1);
            }

            if (msg.getSoftwareInfoList().size() > 0) {
                ctx.writeAndFlush(new PeacockDatagram<SoftwareInfoMessage>(msg));
            }
        } catch (Exception e) {
            logger.error("Unhandled Exception has occurred. ", e);
        }
    }
}
//end of SoftwareGatherThread.java