Main.java 3.3 KB
package com.tianbo;

import com.caac.imf.api.IMFClient;
import com.caac.imf.api.IMFClientFactory;
import com.tianbo.imf.IMF_Reader;
import com.tianbo.imf.IMF_Sender;
import com.tianbo.util.IO.FileTool;
import org.apache.log4j.Logger;
import org.apache.log4j.PropertyConfigurator;

import java.io.File;
import java.util.List;

public class Main {
    private static final Logger logger = Logger.getLogger(Main.class);
    public static boolean LOGIN_OK = false;
    public static boolean isSuc = true;
    public static IMFClient client = null;

    public static void sendMsg(String msg){
        if (!msg.equals(null) && !msg.isEmpty()){

        }

    }


    private static void start() throws Exception {
        PropertyConfigurator.configure("config/log4j.properties");
        client = IMFClientFactory.createInstance();
        String loginname = FileTool.readProperties("loginname");
        String loginpass = FileTool.readProperties("loginpass");

        while (true) {
            if (client != null) {
                IMF_Reader reader = new IMF_Reader(client);
                if (!reader.isrunning) {
                    reader.start();
                    logger.info("*********KAKO读取线程已开启***********");
                } else {
//                    logger.info("*********KAKO读取线程已开启-不再启动线程*********");
                }

                IMF_Sender kako_sender = new IMF_Sender(client);
                if(!kako_sender.isrunning) {
                    kako_sender.start();
                }
            }

            if (!LOGIN_OK) {
                loginIMF(client, loginname, loginpass, "config/imf_config.properties");
            }
            try {
                Thread.sleep(30000L);
            } catch (InterruptedException var7) {
                var7.printStackTrace();
            }
        }

    }



    private static void loginIMF(IMFClient client, String userName, String password, String confFileName) {
        if (client.initial(confFileName)) {
            String message = client.login(userName, password);
            logger.info("message=" + message);
            if (message.indexOf("<CODE>1</CODE>") > 0) {
                logger.info("登陆成功");
                LOGIN_OK = true;
            } else {
                int times = 0;

                while(times <= 3) {
                    logger.info("try connection...");
                    ++times;
                    logger.info("message.=" + message);
                    if (message.indexOf("<CODE>1</CODE>") > 0) {
                        logger.info("登陆成功");
                        LOGIN_OK = true;
                        break;
                    }

                    logger.info("登录失败~~~~");
                    message = client.login(userName, password);

                    try {
                        Thread.sleep(4000L);
                    } catch (InterruptedException var7) {
                        var7.printStackTrace();
                    }
                }

                if (!LOGIN_OK) {
                    logger.info("多次尝试登录失败,退出登陆");
                    client.disconnect();
                    isSuc =false;
                    System.exit(-1);
                }
            }
        }

    }

    public static void main(String[] args) throws Exception{
            start();
    }

}