Mercurial > pub > Impl
annotate Lib/IMPL/DOM/Navigator/Builder.pm @ 106:83e356614c1e
DOM Builder now is a navigator like SimpleBuilder
PostToDOM transformation
author | wizard |
---|---|
date | Wed, 12 May 2010 17:52:12 +0400 |
parents | 196bf443b5e1 |
children | 0ed8e2541b1c |
rev | line source |
---|---|
49 | 1 package IMPL::DOM::Navigator::Builder; |
2 use strict; | |
3 use warnings; | |
4 | |
106 | 5 use base qw(IMPL::DOM::Navigator); |
49 | 6 use IMPL::Class::Property; |
7 use IMPL::Class::Property::Direct; | |
8 require IMPL::DOM::Navigator::SchemaNavigator; | |
104
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
9 require IMPL::DOM::Schema::ValidationError; |
106 | 10 use IMPL::DOM::Document; |
49 | 11 |
12 BEGIN { | |
13 private _direct property _schemaNavi => prop_all; | |
103 | 14 private _direct property _docClass => prop_all; |
104
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
15 public _direct property BuildErrors => prop_get | prop_list; |
49 | 16 public _direct property Document => prop_get | owner_set; |
17 } | |
18 | |
106 | 19 our %CTOR = ( |
20 'IMPL::DOM::Navigator' => sub { IMPL::DOM::Document::Empty; } | |
21 ); | |
22 | |
49 | 23 sub CTOR { |
24 my ($this,$docClass,$schema) = @_; | |
25 | |
26 $this->{$_docClass} = $docClass; | |
27 $this->{$_schemaNavi} = $schema ? IMPL::DOM::Navigator::SchemaNavigator->new($schema) : undef; | |
28 } | |
29 | |
30 sub NavigateCreate { | |
31 my ($this,$nodeName,%props) = @_; | |
32 | |
33 if (my $schemaNode = $this->{$_schemaNavi}->NavigateName($nodeName)) { | |
104
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
34 my $class = $schemaNode->can('nativeType') ? $schemaNode->nativeType || 'IMPL::DOM::Node' : 'IMPL::DOM::Node'; |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
35 |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
36 my @errors = $this->inflateProperties($schemaNode,\%props); |
49 | 37 |
38 my $node; | |
39 if (! $this->{$Document}) { | |
40 $node = $this->{$Document} = $this->{$_docClass}->new(nodeName => $nodeName,%props); | |
106 | 41 $this->_initNavigator($node); |
49 | 42 } else { |
106 | 43 die new IMPL::InvalidOperationException('Can\t create a second top level element') unless $this->Current; |
49 | 44 $node = $this->{$Document}->Create($nodeName,$class,\%props); |
106 | 45 $this->Current->appendChild($node); |
46 $this->internalNavigateNodeSet($node); | |
49 | 47 } |
48 | |
104
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
49 if (@errors) { |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
50 $this->BuildErrors->Append( |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
51 map { |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
52 IMPL::DOM::Schema::ValidationError->new( |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
53 Node => $node, |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
54 Source => $this->{$_schemaNavi}->SourceSchemaNode, |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
55 Schema => $schemaNode, |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
56 Message => $schemaNode->messageInflateError, |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
57 Error => $_ |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
58 ) |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
59 } @errors |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
60 ); |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
61 } |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
62 |
49 | 63 return $node; |
64 } else { | |
65 die new IMPL::InvalidOperationException("The specified node is undefined", $nodeName); | |
66 } | |
67 } | |
68 | |
103 | 69 sub inflateProperties { |
70 my ($this,$schemaNode,$refProps) = @_; | |
104
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
71 my @errors; |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
72 foreach my $schemaProp ( $schemaNode->selectNodes('Property') ) { |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
73 next if not exists $refProps->{$schemaProp->name}; |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
74 my $result = eval {$schemaProp->inflateValue($refProps->{$schemaProp->name}) }; |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
75 if (my $e = $@) { |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
76 push @errors, $e; |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
77 } else { |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
78 $refProps->{$schemaProp->name} = $result; |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
79 } |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
80 } |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
81 return @errors; |
103 | 82 } |
83 | |
84 sub inflateValue { | |
104
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
85 my ($this,$value,$node) = @_; |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
86 |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
87 my $nodeSchema = $this->{$_schemaNavi}->Current; |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
88 |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
89 my $result = eval { $nodeSchema->inflateValue($value) }; |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
90 if (my $e=$@) { |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
91 $this->BuildErrors->Append(new IMPL::DOM::Schema::ValidationError( |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
92 Schema => $nodeSchema, |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
93 Node => $node, |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
94 Error => $e, |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
95 Message => $nodeSchema->messageInflateError, |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
96 Source => $this->{$_schemaNavi}->SourceSchemaNode |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
97 )); |
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
98 return $value; |
103 | 99 } else { |
104
196bf443b5e1
DOM::Schema RC0 inflators support, validation and some other things,
wizard
parents:
103
diff
changeset
|
100 return $result; |
103 | 101 } |
102 } | |
103 | |
49 | 104 sub Back { |
105 my ($this) = @_; | |
106 | |
107 $this->{$_schemaNavi}->SchemaBack(); | |
106 | 108 $this->SUPER::Back(); |
49 | 109 } |
110 | |
111 1; | |
112 | |
113 __END__ | |
64 | 114 |
49 | 115 =pod |
116 | |
64 | 117 =head1 NAME |
118 | |
119 C< IMPL::DOM::Navigator::Builder > - Навигатор, строящий документ по указанной схеме. | |
120 | |
49 | 121 =head1 SYNOPSIS |
122 | |
64 | 123 =begin code |
124 | |
49 | 125 my $builder = new IMPL::DOM::Navigator::Builder(new MyApp::Document,$schema); |
126 my $reader = new IMPL::DOM::XMLReader(Navigator => $builder); | |
127 | |
128 $reader->ParseFile("document.xml"); | |
129 | |
130 my @errors = $schema->Validate($builder->Document); | |
131 | |
64 | 132 =end code |
133 | |
49 | 134 =head1 DESCRIPTION |
135 | |
136 Построитель DOM документов по указанной схеме. Обычно используется в связке | |
137 с объектами для чтения такими как C<IMPL::DOM::XMLReader>. | |
138 | |
139 =head1 METHODS | |
140 | |
141 =over | |
142 | |
64 | 143 =item C< CTOR($classDocument,$schema) > |
49 | 144 |
64 | 145 Создает новый объект, принимает на вход класс документа (или фабрику, например |
146 L<IMPL::Object::Factory>) и схему. В процессе процедуры построения документа | |
147 будет создан объект документа. | |
49 | 148 |
64 | 149 =item C< NavigateCreate($nodeName,\%props) > |
49 | 150 |
151 Создает новый узел с указанным именем и переходит в него. В случае если в схеме | |
152 подходящий узел не найден, то вызывается исключение. | |
153 | |
154 При этом по имени узла ищется его схема, после чего определяется класс для | |
64 | 155 создания экземпляра и созданный узел доавляется в документ. При создании |
156 нового узла используется метод документа C<< IMPL::DOM::Document->Create >> | |
49 | 157 |
64 | 158 Свойства узла передаются при создании через параметр C<props>, но имя создаваемого |
159 узла НЕ может быть переопределено свойством C<nodeName>, оно будет проигнорировано. | |
160 | |
161 =item C< Document > | |
162 | |
163 Свойство, которое содержит документ по окончании процедурв построения. | |
49 | 164 |
165 =back | |
166 | |
167 =cut |