#!/usr/bin/perl
our
$VERSION
= 3.004;
my
$OBJECT_CACHE_REF
= Class::Std::Fast::OBJECT_CACHE_REF();
my
%LOADED_OF
= ();
sub
new {
my
(
$class
,
$args
) =
@_
;
my
$self
= {
class_resolver
=>
$args
->{ class_resolver },
strict
=>
exists
$args
->{ strict } ?
$args
->{ strict } : 1,
};
bless
$self
,
$class
;
if
(
$args
->{ class_resolver }) {
$self
->load_classes()
if
!
exists
$LOADED_OF
{
$self
->{ class_resolver } };
}
return
$self
;
}
sub
class_resolver {
my
$self
=
shift
;
if
(
@_
) {
$self
->{ class_resolver } =
shift
;
$self
->load_classes()
if
!
exists
$LOADED_OF
{
$self
->{ class_resolver } };
}
return
$self
->{ class_resolver };
}
sub
load_classes {
my
$self
=
shift
;
return
if
$LOADED_OF
{
$self
->{ class_resolver } };
for
(
sort
values
%{
$self
->{ class_resolver }->get_typemap }) {
no
strict
qw(refs)
;
my
$class
=
$_
;
next
if
$class
eq
'__SKIP__'
;
next
if
defined
*{
"$class\::"
};
$class
=~s{ :: }{/}xmsg;
require
"$class.pm"
;
}
$LOADED_OF
{
$self
->{ class_resolver } } = 1;
}
sub
_initialize {
my
(
$self
,
$parser
) =
@_
;
$self
->{ parser } =
$parser
;
delete
$self
->{ data };
delete
$self
->{ header };
my
$characters
;
my
$current
=
undef
;
my
$list
= [];
my
$path
= [];
my
$skip
= 0;
my
$depth
= 0;
my
%content_check
=
$self
->{strict}
? (
0
=>
sub
{
die
"Bad top node $_[1]"
if
$_
[1] ne
'Envelope'
;
die
"Bad namespace for SOAP envelope: "
.
$_
[0]->recognized_string()
$depth
++;
return
;
},
1
=>
sub
{
$depth
++;
if
(
$_
[1] eq
'Body'
) {
if
(
exists
$self
->{ data }) {
$self
->{ header } =
$self
->{ data };
delete
$self
->{ data };
$list
= [];
$path
= [];
undef
$current
;
}
}
return
;
}
)
: (
0
=>
sub
{
$depth
++ },
1
=>
sub
{
$depth
++ },
);
my
(
$_prefix
,
$_method
,
$_class
,
$_leaf
) = ();
my
$char_handler
=
sub
{
return
if
(!
$_leaf
);
$characters
.=
$_
[1];
return
;
};
no
strict
qw(refs)
;
$parser
->setHandlers(
Start
=>
sub
{
$_leaf
= 1;
return
&{
$content_check
{
$depth
}}
if
exists
$content_check
{
$depth
};
push
@{
$path
},
$_
[1];
return
if
$skip
;
$_class
=
$self
->{ class_resolver }->get_class(
$path
);
if
(!
defined
(
$_class
) and
$self
->{ strict }) {
die
"Cannot resolve class for "
.
join
(
'/'
, @{
$path
}) .
" via "
.
$self
->{ class_resolver };
}
if
(!
defined
(
$_class
) or (
$_class
eq
'__SKIP__'
) ) {
$skip
=
join
(
'/'
, @{
$path
});
$_
[0]->setHandlers(
Char
=>
undef
);
return
;
}
push
@$list
,
$current
;
undef
$current
;
$characters
=
q{}
;
$current
=
pop
@{
$OBJECT_CACHE_REF
->{
$_class
} };
if
(not
defined
$current
) {
my
$o
= Class::Std::Fast::ID();
$current
=
bless
\
$o
,
$_class
;
}
ATTR: {
if
(
@_
> 2) {
my
%attr
=
@_
[2..
$#_
];
if
(
my
$nil
=
delete
$attr
{nil}) {
if
(
$nil
&&
$nil
ne
'false'
) {
undef
$characters
;
last
ATTR
if
not (
%attr
);
}
}
$current
->attr(\
%attr
);
}
}
$depth
++;
return
;
},
Char
=>
$char_handler
,
End
=>
sub
{
pop
@{
$path
};
if
(
$skip
) {
return
if
$skip
ne
join
'/'
, @{
$path
},
$_
[1];
$skip
= 0;
$_
[0]->setHandlers(
Char
=>
$char_handler
);
return
;
}
$depth
--;
if
(
$_leaf
) {
$SOAP::WSDL::XSD::Typelib::Builtin::anySimpleType::___value
->{
$$current
} =
$characters
if
defined
$characters
&&
defined
$current
;
}
$characters
=
q{}
;
$_leaf
= 0;
if
(not
defined
$list
->[-1]) {
$self
->{ data } =
$current
if
(not
exists
$self
->{ data });
return
;
};
$_method
=
"add_$_[1]"
;
$_method
=~s{\.}{__}xg;
$_method
=~s{\-}{_}xg;
$list
->[-1]->
$_method
(
$current
);
$current
=
pop
@$list
;
return
;
}
);
return
$parser
;
}
sub
get_header {
return
$_
[0]->{ header };
}
1;
=pod
=head1 NAME
SOAP::WSDL::Expat::MessageParser - Convert SOAP messages to custom object trees
=head1 SYNOPSIS
my
$parser
= SOAP::WSDL::Expat::MessageParser->new({
class_resolver
=>
'My::Resolver'
});
$parser
->parse(
$xml
);
my
$obj
=
$parser
->get_data();
=head1 DESCRIPTION
Real fast expat based SOAP message parser.
See L<SOAP::WSDL::Manual::Parser>
for
details.
=head2 Skipping unwanted items
Sometimes there's unnecessary information transported in SOAP messages.
To skip XML nodes (including all child nodes), just edit the type
map
for
the message, set the type
map
entry to
'__SKIP__'
, and comment out all
child elements you want to skip.
=head1 Bugs and Limitations
=over
=item * Ignores all namespaces
=item * Does not handle mixed content
=item * The SOAP header is ignored
=back
=head1 AUTHOR
Replace the whitespace by @
for
E-Mail Address.
Martin Kutter E<lt>martin.kutter fen-net.deE<gt>
=head1 LICENSE AND COPYRIGHT
Copyright 2004-2007 Martin Kutter.
This file is part of SOAP-WSDL. You may distribute/modify it under
the same terms as perl itself
=head1 Repository information
$Id
: MessageParser.pm 851 2009-05-15 22:45:18Z kutterma $
$LastChangedDate
: 2009-05-16 00:45:18 +0200 (Sa, 16. Mai 2009) $
$LastChangedRevision
: 851 $
$LastChangedBy
: kutterma $