我正在实施一个Google Talk监听器,它会更新我的所有联系人列表项目。
require 'xmpp4r'
require 'xmpp4r/roster'
require 'xmpp4r/roster/helper/roster'
sender_jid = Jabber::JID.new('email')
client = Jabber::Client.new(sender_jid)
client.connect('talk.google.com')
client.auth('password')
client.send(Jabber::Presence.new.set_type(':available'))
#Presence updates:
client.add_presence_callback do |pres|
puts pres.from.to_s.split("/")[0] unless pres.nil?
puts pres.show.to_s.inspect unless pres.nil?
end
Thread.stop
client.close
代码工作正常,线程继续侦听一个Gmail帐户,但在几个联系人出现后给我这个错误:
client.rb:33:in `stop': deadlock detected (fatal)
from client.rb:33:in `<main>'
此错误出现的其他帐户有更多具有不同状态的联系人。似乎无法弄清楚为什么会这样。任何帮助都会很棒。
感谢。
答案 0 :(得分:3)
通过记录器解决了问题。它因为解析错误而陷入僵局。我与某些无法解析的字符有某些联系。
似乎xmpp4r暂时没有更新,我的解决方案是转移到有些人已更新的回购。
如果有人遇到类似问题,请查看: https://github.com/whitehat101/xmpp4r
解析是通过nokogiri完成的。
更新: 有许多新的维护者从上面分解了许多更新+修复了其他问题: https://github.com/xmpp4r/xmpp4r