|
NAMEAnyEvent::XMPP - An implementation of the XMPP ProtocolVERSIONVersion 0.55SYNOPSISuse AnyEvent::XMPP::Connection; or: use AnyEvent::XMPP::IM::Connection; or: use AnyEvent::XMPP::Client; DESCRIPTIONThis is the head module of the AnyEvent::XMPP XMPP client protocol (as described in RFC 3920 and RFC 3921) framework.AnyEvent::XMPP::Connection is a RFC 3920 conforming "XML" stream implementation for clients, which handles TCP connect up to the resource binding. And provides low level access to the XML nodes on the XML stream along with some high level methods to send the predefined XML stanzas. AnyEvent::XMPP::IM::Connection is a more high level module, which is derived from AnyEvent::XMPP::Connection. It handles all the instant messaging client functionality described in RFC 3921. AnyEvent::XMPP::Client is a multi account client class. It manages connections to multiple XMPP accounts and tries to offer a nice high level interface to XMPP communication. For a list of "Supported extensions" see below. There are also other modules in this distribution, for example: AnyEvent::XMPP::Util, AnyEvent::XMPP::Writer, AnyEvent::XMPP::Parser and those I forgot :-) Those modules might be helpful and/or required if you want to use this framework for XMPP. See also AnyEvent::XMPP::Writer for a discussion about the brokenness of XML in the XMPP specification. If you have any questions or seek for help look below under "SUPPORT". REQUIREMENTSOne of the major drawbacks I see for AnyEvent::XMPP is the long list of required modules to make it work.
And yes, all these are essential for XMPP communication. Even though 'instant messaging' and 'presence' is a quite simple problem XMPP somehow was successful at making the task complicated enough to keep me busy for a long time. But all of that time wasn't only for the technology required to get it started, mostly it was for all the quirks, hacks and badly applied "XML" in the protocol which complicated the matter. RELEASE NOTESHere are some notes to the last releases (release of this version is at top):Version
TODOThere are still lots of items on the TODO list (see also the TODO file in the distribution of AnyEvent::XMPP).TEST SUITEIf you are a developer and want to test either a server or maybe just whether this module passes some basic tests you might want to run the developer test suite.This test suite is not enabled by default because it requires some human interaction to set it up, please see AnyEvent::XMPP::TestClient for hints about the setup procedure for the test suite. I wrote the test suite mostly because I wanted to make sure I didn't break something essential before a release. The tests don't cover everything and I don't plan to write a test for every single function in the API, that would slow down development considerably for me. But I hope that some grave show stopper bugs in releases are prevented with this test suite. The tests are also useful if you want to test a server implementation. But there are maybe of course conformance issues with AnyEvent::XMPP itself, so if you find something where AnyEvent::XMPP doesn't conform to the XMPP RFCs or XEPs consult the BUGS section below. If you find a server that doesn't handle something correctly but you need to interact with it you are free to implement workarounds and send me a patch, or even ask me whether I might want to look into the issue (I can't guarantee anything here, but I want this module to be as interoperable as possible. But if the implementation of a workaround for some non-conformant software will complicate the code too much I'm probably not going to implement it.). Of course, if you find a bug in some server implementation don't forget to file a bugreport to them, one hack less in AnyEvent::XMPP means more time for bug fixing and improvements and new features. Why (yet) another XMPP module?The main outstanding feature of this module in comparison to the other XMPP (aka Jabber) modules out there is the support for AnyEvent. AnyEvent permits you to use this module together with other I/O event based programs and libraries (ie. Gtk2 or Event).The other modules could often only be integrated in those applications or libraries by using threads. I decided to write this module because I think CPAN lacks an event based XMPP module. Threads are unfortunately not an alternative in Perl at the moment due the limited threading functionality they provide and the global speed hit. I also think that a simple event based I/O framework might be a bit easier to handle than threads. Another thing was that I didn't like the APIs of the other modules. In AnyEvent::XMPP I try to provide low level modules for speaking XMPP as defined in RFC 3920 and RFC 3921 (see also AnyEvent::XMPP::Connection and AnyEvent::XMPP::IM::Connection). But I also try to provide a high level API for easier usage for instant messaging tasks and clients (eg. AnyEvent::XMPP::Client). Supported extensionsSee AnyEvent::XMPP::Ext for a list.EXAMPLESFollowing examples are included in this distribution:
For others, which the author might forgot or didn't want to list here see the "samples/" directory. More examples will be included in later releases, please feel free to ask the "AUTHOR" if you have any questions about the API. There is also an IRC channel, see "SUPPORT". AUTHORRobin Redeker, "<elmex at ta-sa.org>", JID: "<elmex at jabber.org>"BUGSPlease note that I'm currently (July 2007) the only developer on this project and I'm very busy with my studies in Computer Science. If you want to ease my workload or want timely releases, please send me patches instead of bug reports or feature requests. I won't forget the reports or requests if you can't or didn't send patches, but I can't gurantee immediate response. But I will of course try to fix/implement them as soon as possible!Also try to be as precise as possible with bug reports, if you can't send a patch, it would be best if you find out which code doesn't work and tell me why. Please report any bugs or feature requests to "bug-net-xmpp2 at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=AnyEvent-XMPP>. I will be notified and then you'll automatically be notified of progress on your bug as I make changes. SUPPORTYou can find documentation for this module with the perldoc command.perldoc AnyEvent::XMPP You can also look for information at:
ACKNOWLEDGEMENTSThanks to the XSF for the development of an open instant messaging protocol (even though it uses "XML").And thanks to all people who had to listen to my desperate curses about the brokenness/braindeadness of XMPP. Without you I would've never brought this module to a usable state. Thanks to:
COPYRIGHT & LICENSECopyright 2007, 2008 Robin Redeker, all rights reserved.This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |