机器人配置错误

发布于 2024-10-06 17:17:37 字数 3908 浏览 2 评论 0原文

我正在开发 GTalk 机器人。我还没有完成,但到目前为止,我的机器人工作正常。自从我第一次运行这个机器人以来,有一件事让我很恼火。当我向 gtalk 机器人发送 IM 消息时,它总是响应“机器人配置错误”消息。我不明白为什么会这样。即使在我收到配置错误消息后,它仍然会像正常情况一样进行并运行正常。如果我在收到错误消息几秒钟后发送另一条 IM 消息,我将不会收到机器人配置错误响应。如果我等几分钟让它“重置”。 “重置”机器人后,如果我再次向机器人发送另一条 IM 消息。我将得到配置错误响应。我完全不知道为什么我不断收到这些错误消息。我的代码中甚至没有“机器人配置错误”字符串。它必须来自 Smack API 或 GTalk 服务器或其他东西。

这是我的代码片段:

import java.io.IOException;

import org.jivesoftware.smack.*;
import org.jivesoftware.smack.packet.*;
import org.jivesoftware.smack.filter.*;
import org.apache.log4j.*;

public class GtalkBot {
    private static final String username = "[email protected]"; // fake login info
    private static final String password = "testpassword"; // fake password
    private static final String domain = "gmail.com";
    private static final int MAX_SLEEP_COUNT = 8;
    private int sleepCount = 0;
    private int sleepSec = 1000;

    private XMPPConnection conn;
    private GChatBufferProcessor chatProcessor;
    private Presence presence;
    private static final Logger logger = LoggerFactory.make();


    public GtalkBot(){
        presence = null;

        ConnectionConfiguration connConfig = new ConnectionConfiguration("talk.google.com", 5222, domain);
        //ConnectionConfiguration connConfig = new ConnectionConfiguration("talk.google.com", 5222);
        connConfig.setReconnectionAllowed(true);
        conn = new XMPPConnection(connConfig);

        chatProcessor = new GChatBufferProcessor(conn);
        logger.info(this.getClass().getSimpleName()+" created");
    } /* Gtalkbot */


    public void run() {
        while(true){
            try {
                login();
            } catch (XMPPException xe){
                logger.error("failed to connect to "+conn.getHost(), xe);
                this.incrementalNap();
                continue; // skip the rest of the loop and retry from the top
            }

            // start the chat message processor thread
            chatProcessor.start();

            // create gtalk chat listener
            this.createChatListener();

            while(conn.isConnected()){
                /* stuck in this loop while connected, not sure if 
                this is the right way to do it. */
                try {
                    Thread.sleep(500);
                } catch (InterruptedException e){
                    //e.printStackTrace();
                }
            }

            logger.warn("Lost connection, retrying the login process...");
        }
    } /* run */


    public void login() throws XMPPException {
        // connect to gtalk server
        conn.connect();
        logger.info("connected to "+conn.getHost());

        // login to gtalk server
        conn.login(username, password);
        logger.info("logged in as: "+conn.getUser());

        // set the presence status
        presence = new Presence(Presence.Type.available);
        logger.info("Set presence as: "+Presence.Type.available);
        conn.sendPacket(presence);
    } /* login */


    public void createChatListener(){
        GtalkMessageListener msgListener = new GtalkMessageListener();
        //PacketFilter filter = new MessageTypeFilter(Message.Type.chat);
        PacketFilter filter = new PacketTypeFilter(Message.class);
        conn.addPacketListener(msgListener, filter);
    } /* createChatListener */


    public void incrementalNap(){
        if(sleepCount < MAX_SLEEP_COUNT){
            sleepSec = sleepSec << 1; // multiply by 2
            sleepCount++;
        }

        logger.debug("Sleeping for "+(sleepSec/1000)+" seconds ...");

        try {
            Thread.sleep(sleepSec);
        } catch (InterruptedException e){
            e.printStackTrace();
        }
    } /*  incrementalNap */

}

提前感谢各位。

I'm working on a GTalk bot. I'm not done with it, but so far, my bot are working okay. There's one thing that annoys me ever since I first ran the bot. When I send an IM message to my gtalk bot, it always responds the "Bot configuration error" message. I can't figure out why it's like that. Even after I get the config error message, it will still proceed like normal and runs okay. If I send another IM message few seconds after getting the error message, I will not get the bot configuration error response. If I wait few minutes to allow it to "reset". After "resetting" the bot, if I send another IM message to the bot again. I will get the config error response. I have absolutely no idea why I keep getting these error messages. I don't even have the "Bot configuration error" string anywhere in my code. It has to be from Smack API or from the GTalk server or something.

Here's the snippet of my code:

import java.io.IOException;

import org.jivesoftware.smack.*;
import org.jivesoftware.smack.packet.*;
import org.jivesoftware.smack.filter.*;
import org.apache.log4j.*;

public class GtalkBot {
    private static final String username = "[email protected]"; // fake login info
    private static final String password = "testpassword"; // fake password
    private static final String domain = "gmail.com";
    private static final int MAX_SLEEP_COUNT = 8;
    private int sleepCount = 0;
    private int sleepSec = 1000;

    private XMPPConnection conn;
    private GChatBufferProcessor chatProcessor;
    private Presence presence;
    private static final Logger logger = LoggerFactory.make();


    public GtalkBot(){
        presence = null;

        ConnectionConfiguration connConfig = new ConnectionConfiguration("talk.google.com", 5222, domain);
        //ConnectionConfiguration connConfig = new ConnectionConfiguration("talk.google.com", 5222);
        connConfig.setReconnectionAllowed(true);
        conn = new XMPPConnection(connConfig);

        chatProcessor = new GChatBufferProcessor(conn);
        logger.info(this.getClass().getSimpleName()+" created");
    } /* Gtalkbot */


    public void run() {
        while(true){
            try {
                login();
            } catch (XMPPException xe){
                logger.error("failed to connect to "+conn.getHost(), xe);
                this.incrementalNap();
                continue; // skip the rest of the loop and retry from the top
            }

            // start the chat message processor thread
            chatProcessor.start();

            // create gtalk chat listener
            this.createChatListener();

            while(conn.isConnected()){
                /* stuck in this loop while connected, not sure if 
                this is the right way to do it. */
                try {
                    Thread.sleep(500);
                } catch (InterruptedException e){
                    //e.printStackTrace();
                }
            }

            logger.warn("Lost connection, retrying the login process...");
        }
    } /* run */


    public void login() throws XMPPException {
        // connect to gtalk server
        conn.connect();
        logger.info("connected to "+conn.getHost());

        // login to gtalk server
        conn.login(username, password);
        logger.info("logged in as: "+conn.getUser());

        // set the presence status
        presence = new Presence(Presence.Type.available);
        logger.info("Set presence as: "+Presence.Type.available);
        conn.sendPacket(presence);
    } /* login */


    public void createChatListener(){
        GtalkMessageListener msgListener = new GtalkMessageListener();
        //PacketFilter filter = new MessageTypeFilter(Message.Type.chat);
        PacketFilter filter = new PacketTypeFilter(Message.class);
        conn.addPacketListener(msgListener, filter);
    } /* createChatListener */


    public void incrementalNap(){
        if(sleepCount < MAX_SLEEP_COUNT){
            sleepSec = sleepSec << 1; // multiply by 2
            sleepCount++;
        }

        logger.debug("Sleeping for "+(sleepSec/1000)+" seconds ...");

        try {
            Thread.sleep(sleepSec);
        } catch (InterruptedException e){
            e.printStackTrace();
        }
    } /*  incrementalNap */

}

Thanks in advance, guys.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文