Mercurial > pub > Impl
view Lib/IMPL/DOM/Schema/SwitchNode.pm @ 388:648dfaf642e0
DOM refactoring,
removed inflators from DOM Schema,
DOM validation - in progress
author | cin |
---|---|
date | Tue, 11 Feb 2014 20:22:01 +0400 |
parents | b8c724f6de36 |
children | 5aff94ba842f |
line wrap: on
line source
package IMPL::DOM::Schema::SwitchNode; use strict; use warnings; use parent qw(IMPL::DOM::Schema::AnyNode); use IMPL::Class::Property; require IMPL::DOM::Schema::ValidationError; use IMPL::DOM::Property qw(_dom); our %CTOR = ( 'IMPL::DOM::Schema::AnyNode' => sub { my %args = @_; $args{nodeName} ||= 'SwitchNode'; %args; } ); BEGIN { public _dom property messageNoMatch => prop_all; } sub CTOR { my ($this,%args) = @_; $this->messageNoMatch($args{messageNoMatch} || 'A node %node.nodeName% isn\'t expected in the %parent.path%'); } sub Validate { my ($this,$node,$ctx) = @_; if ( my ($schema) = $this->selectNodes(sub {$_[0]->name eq $node->nodeName} ) ) { return $schema->Validate($node); } else { return new IMPL::DOM::Schema::ValidationError( node => $node, source => $this, message => $this->messageNoMatch ); } } 1; __END__ =pod =head1 DESCRIPTION Представляет узел, который может быть одним из узлов, которые лежат внутри него. Это более строгий вариант C<IMPL::DOM::Schema::AnyNode>. =cut