| AnyEvent-XMPP documentation | Contained in the AnyEvent-XMPP distribution. |
AnyEvent::XMPP::Parser - Parser for XML streams (helper for AnyEvent::XMPP)
use AnyEvent::XMPP::Parser; ...
This is a XMPP XML parser helper class, which helps me to cope with the XMPP XML.
See also AnyEvent::XMPP::Writer for a discussion of the issues with XML in XMPP.
This creates a new AnyEvent::XMPP::Parser and calls init.
Sets the 'XML stanza' callback.
$cb must be a code reference. The first argument to
the callback will be this AnyEvent::XMPP::Parser instance and
the second will be the stanzas root AnyEvent::XMPP::Node as first argument.
If the second argument is undefined the end of the stream has been found.
This sets the error callback that will be called when the parser encounters an syntax error. The first argument is the exception and the second is the data which caused the error.
This method sets the stream tag callback. It is called when the <stream> tag from the server has been encountered. The first argument to the callback is the AnyEvent::XMPP::Node of the opening stream tag.
This methods (re)initializes the parser.
This methods removes all handlers. Use it to avoid circular references.
This method checks whether the $cmptag matches the $tagname
in the $namespace.
$cmptag needs to come from the XML::Parser::Expat as it has
some magic attached that stores the namespace.
This method feeds a chunk of unparsed data to the parser.
Robin Redeker, <elmex at ta-sa.org>, JID: <elmex at jabber.org>
Copyright 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.
| AnyEvent-XMPP documentation | Contained in the AnyEvent-XMPP distribution. |
package AnyEvent::XMPP::Parser; no warnings; use strict; use AnyEvent::XMPP::Node; # OMFG!!!111 THANK YOU FOR THIS MODULE TO HANDLE THE XMPP INSANITY: use XML::Parser::Expat;
sub new { my $this = shift; my $class = ref($this) || $this; my $self = { stanza_cb => sub { die "No stanza callback provided!" }, error_cb => sub { warn "No error callback provided: $_[0]: $_[1]!" }, stream_cb => sub { }, @_ }; bless $self, $class; $self->init; $self }
sub set_stanza_cb { my ($self, $cb) = @_; $self->{stanza_cb} = $cb; }
sub set_error_cb { my ($self, $cb) = @_; $self->{error_cb} = $cb; }
sub set_stream_cb { my ($self, $cb) = @_; $self->{stream_cb} = $cb; }
sub init { my ($self) = @_; $self->{parser} = XML::Parser::ExpatNB->new ( Namespaces => 1, ProtocolEncoding => 'UTF-8' ); $self->{parser}->setHandlers ( Start => sub { $self->cb_start_tag (@_) }, End => sub { $self->cb_end_tag (@_) }, Char => sub { $self->cb_char_data (@_) }, Default => sub { $self->cb_default (@_) }, ); $self->{nso} = {}; $self->{nodestack} = []; }
sub cleanup { my ($self) = @_; $self->{parser}->release; for (qw(stanza_cb error_cb stream_cb parser)) { delete $self->{$_}; } return; }
sub nseq { my ($self, $ns, $name, $tag) = @_; unless (exists $self->{nso}->{$ns}->{$name}) { $self->{nso}->{$ns}->{$name} = $self->{parser}->generate_ns_name ($name, $ns); } return $self->{parser}->eq_name ($self->{nso}->{$ns}->{$name}, $tag); }
sub feed { my ($self, $data) = @_; eval { $self->{parser}->parse_more ($data); }; if ($@) { if ($self->{error_cb}) { $self->{error_cb}->($@, $data, 'xml'); } else { warn "parser error: $@ on [$data]\n"; } } } sub cb_start_tag { my ($self, $p, $el, %attrs) = @_; my $node = AnyEvent::XMPP::Node->new ($p->namespace ($el), $el, \%attrs, $self); $node->append_raw ($p->recognized_string); if (not @{$self->{nodestack}}) { $self->{stream_cb}->($node); } push @{$self->{nodestack}}, $node; } sub cb_char_data { my ($self, $p, $str) = @_; unless (@{$self->{nodestack}}) { warn "characters outside of tag: [$str]!\n"; return; } return if @{$self->{nodestack}} < 2; # don't append anything to the stream element my $node = $self->{nodestack}->[-1]; $node->add_text ($str); $node->append_raw ($p->recognized_string); } sub cb_end_tag { my ($self, $p, $el) = @_; unless (@{$self->{nodestack}}) { warn "end tag </$el> read without any starting tag!\n"; return; } if (!$p->eq_name ($self->{nodestack}->[-1]->name, $el)) { warn "end tag </$el> doesn't match start tags ($self->{tags}->[-1]->[0])!\n"; return; } my $node = pop @{$self->{nodestack}}; $node->append_raw ($p->recognized_string); # > 1 because we don't want the stream tag to save all our children... if (@{$self->{nodestack}} > 1) { $self->{nodestack}->[-1]->add_node ($node); } eval { if (@{$self->{nodestack}} == 1) { $self->{stanza_cb}->($self, $node); } elsif (@{$self->{nodestack}} == 0) { $self->{stanza_cb}->($self, undef); } }; if ($@) { $self->{error_cb}->($@, undef, 'exception'); } } sub cb_default { my ($self, $p, $str) = @_; $self->{nodestack}->[-1]->append_raw ($str) if @{$self->{nodestack}} > 1; # don't append to the stream element }
1; # End of AnyEvent::XMPP