com.clustercontrol.port.protocol.ReachAddressPOP3S.java Source code

Java tutorial

Introduction

Here is the source code for com.clustercontrol.port.protocol.ReachAddressPOP3S.java

Source

/*
    
 Copyright (C) 2006 NTT DATA Corporation
    
 This program is free software; you can redistribute it and/or
 Modify it under the terms of the GNU General Public License
 as published by the Free Software Foundation, version 2.
    
 This program is distributed in the hope that it will be
 useful, but WITHOUT ANY WARRANTY; without even the implied
 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 PURPOSE.  See the GNU General Public License for more details.
    
 */

package com.clustercontrol.port.protocol;

import java.io.IOException;
import java.net.InetAddress;
import java.net.SocketException;
import java.net.UnknownHostException;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.commons.net.pop3.POP3SClient;

import com.clustercontrol.util.HinemosTime;
import com.clustercontrol.util.MessageConstant;

/**
 * POP3S?????????
 * 
 * @version 4.0.0
 * @since 4.0.0
 */
public class ReachAddressPOP3S extends ReachAddressProtocol {

    private static Log m_log = LogFactory.getLog(ReachAddressPOP3S.class);

    /**
     * POP3S????????
     * 
     * @param addressText
     * @return POP3S
     */
    @Override
    protected boolean isRunning(String addressText) {

        m_message = "";
        m_messageOrg = "";
        m_response = -1;

        boolean isReachable = false;

        try {
            long start = 0; // 
            long end = 0; // 
            boolean retry = true; // ????(true:??false:???)

            StringBuffer bufferOrg = new StringBuffer(); // 
            String result = "";

            InetAddress address = InetAddress.getByName(addressText);

            bufferOrg.append("Monitoring the POP3S Service of " + address.getHostName() + "["
                    + address.getHostAddress() + "]:" + m_portNo + ".\n\n");

            POP3SClient client = new POP3SClient(true);

            for (int i = 0; i < m_sentCount && retry; i++) {
                try {
                    bufferOrg.append(HinemosTime.getDateString() + " Tried to Connect: ");
                    client.setDefaultTimeout(m_timeout);

                    start = HinemosTime.currentTimeMillis();
                    client.connect(address, m_portNo);
                    end = HinemosTime.currentTimeMillis();

                    m_response = end - start;

                    result = client.getReplyString();

                    if (m_response > 0) {
                        if (m_response < m_timeout) {
                            result = result + ("\n" + "Response Time = " + m_response + "ms");
                        } else {
                            m_response = m_timeout;
                            result = result + ("\n" + "Response Time = " + m_response + "ms");
                        }
                    } else {
                        result = result + ("\n" + "Response Time < 1ms");
                    }

                    retry = false;
                    isReachable = true;

                } catch (SocketException e) {
                    result = (e.getMessage() + "[SocketException]");
                    retry = true;
                    isReachable = false;
                } catch (IOException e) {
                    result = (e.getMessage() + "[IOException]");
                    retry = true;
                    isReachable = false;
                } finally {
                    bufferOrg.append(result + "\n");
                    if (client.isConnected()) {
                        try {
                            client.disconnect();
                        } catch (IOException e) {
                            m_log.warn("isRunning(): " + "socket disconnect failed: " + e.getMessage(), e);
                        }
                    }
                }

                if (i < m_sentCount - 1 && retry) {
                    try {
                        Thread.sleep(m_sentInterval);
                    } catch (InterruptedException e) {
                        break;
                    }
                }
            }

            m_message = result + "(POP3S/" + m_portNo + ")";
            m_messageOrg = bufferOrg.toString();
            return isReachable;
        } catch (UnknownHostException e) {
            m_log.debug("isRunning(): " + MessageConstant.MESSAGE_FAIL_TO_EXECUTE_TO_CONNECT.getMessage()
                    + e.getMessage());

            m_message = MessageConstant.MESSAGE_FAIL_TO_EXECUTE_TO_CONNECT.getMessage() + " (" + e.getMessage()
                    + ")";

            return false;
        }
    }
}