view Lib/IMPL/DOM/Schema/ComplexType.pm @ 125:a4b0a819bbda

Small fixes in IMPL::DOM::Schema
author wizard
date Thu, 10 Jun 2010 17:43:51 +0400
parents e30bdd040fe3
children 1e7f03414b65
line wrap: on
line source

package IMPL::DOM::Schema::ComplexType;
use strict;
use warnings;

use base qw(IMPL::DOM::Schema::ComplexNode);
use IMPL::Class::Property;
use IMPL::Class::Property::Direct;

BEGIN {
    public _direct property nativeType => prop_get;
    public _direct property messageWrongType => prop_get;
}

our %CTOR = (
    'IMPL::DOM::Schema::ComplexNode' => sub {
        my %args = @_;
        $args{nodeName} ||= 'ComplexType';
        $args{minOccur} = 0;
        $args{maxOccur} = 'unbounded';
        $args{name} ||= 'ComplexType';
        delete @args{qw(nativeType messageWrongType)};
        %args
    }
);

sub CTOR {
    my ($this,%args) = @_;
    
    $this->{$nativeType} = $args{nativeType};
    $this->{$messageWrongType} = $args{messageWrongType} || "A complex node '%Node.path%' is expected to be %Schema.nativeType%";
}

sub Validate {
	my ($this, $node,$ctx) = @_;
	
	if ($this->{$nativeType}) {
		return new IMPL::DOM::Schema::ValidationError(
			Node => $node,
			Source => $ctx->{Source} || $this,
			Schema => $this,
			Message => $this->messageWrongType
		) unless $node->isa($this->{$nativeType});
	}
	return $this->SUPER::Validate($node,$ctx);
}

sub qname {
	$_[0]->nodeName.'[type='.$_[0]->type.']';
}


1;