annotate Lib/IMPL/lang.pm @ 177:df71a307ef9b

new constructor syntax
author sourcer
date Wed, 12 Oct 2011 00:04:13 +0300
parents 74c27daf2e7b
children 658a80d19d33
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
164
eb3e9861a761 SQL traits in progress
wizard
parents:
diff changeset
1 package IMPL::lang;
eb3e9861a761 SQL traits in progress
wizard
parents:
diff changeset
2 use strict;
eb3e9861a761 SQL traits in progress
wizard
parents:
diff changeset
3 use warnings;
eb3e9861a761 SQL traits in progress
wizard
parents:
diff changeset
4
165
76515373dac0 Added Class::Template,
wizard
parents: 164
diff changeset
5 use parent qw(Exporter);
164
eb3e9861a761 SQL traits in progress
wizard
parents:
diff changeset
6 use IMPL::_core::version;
173
aaab45153411 minor bugfixes
sourcer
parents: 169
diff changeset
7 use IMPL::clone qw(clone);
164
eb3e9861a761 SQL traits in progress
wizard
parents:
diff changeset
8
167
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
9 require IMPL::Class::PropertyInfo;
164
eb3e9861a761 SQL traits in progress
wizard
parents:
diff changeset
10
167
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
11 our @EXPORT = qw(&is);
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
12 our %EXPORT_TAGS = (
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
13 base => [
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
14 qw(
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
15 &is
173
aaab45153411 minor bugfixes
sourcer
parents: 169
diff changeset
16 &clone
167
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
17 )
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
18 ],
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
19 constants => [
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
20 qw(
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
21 &ACCESS_PUBLIC
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
22 &ACCESS_PROTECTED
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
23 &ACCESS_PRIVATE
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
24 &PROP_GET
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
25 &PROP_SET
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
26 &PROP_OWNERSET
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
27 &PROP_LIST
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
28 &PROP_ALL
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
29 )
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
30 ],
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
31
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
32 declare => [
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
33 qw(
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
34 &public
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
35 &protected
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
36 &private
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
37 &virtual
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
38 &property
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
39 &static
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
40 &property
177
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
41 &ctor
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
42 &base
167
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
43 )
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
44 ],
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
45 compare => [
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
46 qw(
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
47 &equals
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
48 &equals_s
168
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
49 &hashCompare
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
50 )
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
51 ],
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
52 hash => [
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
53 qw(
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
54 &hashApply
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
55 &hashMerge
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
56 &hashDiff
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
57 &hashCompare
176
74c27daf2e7b minor changes
sergey
parents: 174
diff changeset
58 &hashParse
167
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
59 )
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
60 ]
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
61 );
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
62
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
63 our @EXPORT_OK = keys %{ { map (($_,1) , map (@{$_}, values %EXPORT_TAGS) ) } };
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
64
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
65 use constant {
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
66 ACCESS_PUBLIC => 1,
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
67 ACCESS_PROTECTED => 2,
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
68 ACCESS_PRIVATE => 3,
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
69 PROP_GET => 1,
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
70 PROP_SET => 2,
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
71 PROP_OWNERSET => 10,
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
72 PROP_LIST => 4,
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
73 PROP_ALL => 3
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
74 };
164
eb3e9861a761 SQL traits in progress
wizard
parents:
diff changeset
75
eb3e9861a761 SQL traits in progress
wizard
parents:
diff changeset
76 sub is($$) {
167
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
77 eval { $_[0]->isa( $_[1] ) };
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
78 }
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
79
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
80 sub virtual($) {
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
81 $_[0]->Virtual(1);
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
82 $_[0];
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
83 }
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
84
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
85 sub public($) {
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
86 $_[0]->Access(ACCESS_PUBLIC);
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
87 $_[0]->Implement;
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
88 $_[0];
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
89 }
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
90
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
91 sub private($) {
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
92 $_[0]->Access(ACCESS_PRIVATE);
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
93 $_[0]->Implement;
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
94 $_[0];
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
95 }
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
96
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
97 sub protected($) {
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
98 $_[0]->Access(ACCESS_PROTECTED);
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
99 $_[0]->Implement;
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
100 $_[0];
164
eb3e9861a761 SQL traits in progress
wizard
parents:
diff changeset
101 }
eb3e9861a761 SQL traits in progress
wizard
parents:
diff changeset
102
167
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
103 sub property($$;$) {
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
104 my ( $propName, $mutators, $attributes ) = @_;
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
105 my $Info = new IMPL::Class::PropertyInfo(
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
106 {
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
107 Name => $propName,
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
108 Mutators => $mutators,
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
109 Class => scalar(caller),
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
110 Attributes => $attributes
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
111 }
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
112 );
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
113 return $Info;
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
114 }
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
115
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
116 sub static($$) {
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
117 my ( $name, $value ) = @_;
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
118 my $class = caller;
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
119 $class->static_accessor( $name, $value );
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
120 }
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
121
177
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
122 sub ctor(&;$) {
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
123 my ( $code, $base ) = @_;
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
124 no strict 'refs';
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
125 my $class = caller;
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
126
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
127 if ($code) {
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
128 *{"${class}::CTOR"} = $code;
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
129 }
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
130
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
131 if (ref $base eq 'HASH') {
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
132 %{"${class}::CTOR"} = %$base;
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
133 }
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
134 }
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
135
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
136 sub base($) {
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
137 return shift;
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
138 }
df71a307ef9b new constructor syntax
sourcer
parents: 176
diff changeset
139
167
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
140 sub equals {
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
141 if (defined $_[0]) {
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
142 return 0 if (not defined $_[1]);
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
143
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
144 return $_[0] == $_[1];
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
145 } else {
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
146 return 0 if defined $_[1];
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
147
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
148 return 1;
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
149 }
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
150 }
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
151
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
152 sub equals_s {
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
153 if (defined $_[0]) {
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
154 return 0 if (not defined $_[1]);
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
155
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
156 return $_[0] eq $_[1];
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
157 } else {
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
158 return 0 if defined $_[1];
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
159
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
160 return 1;
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
161 }
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
162 }
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
163
168
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
164 sub hashDiff {
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
165 my ($src,$dst) = @_;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
166
169
fd92830036c3 corrected IMPL::SQL::Schema::Diff
sourcer
parents: 168
diff changeset
167 $dst = $dst ? { %$dst } : {} ;
fd92830036c3 corrected IMPL::SQL::Schema::Diff
sourcer
parents: 168
diff changeset
168 $src ||= {};
168
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
169
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
170 my %result;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
171
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
172 foreach my $key ( keys %$src ) {
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
173 if (exists $dst->{$key}) {
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
174 $result{"+$key"} = $dst->{$key} unless equals_s($dst->{$key}, $src->{$key});
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
175 delete $dst->{$key};
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
176 } else {
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
177 $result{"-$key"} = 1;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
178 }
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
179 }
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
180
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
181 $result{"+$_"} = $dst->{$_} foreach keys %$dst;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
182
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
183 return \%result;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
184 }
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
185
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
186 sub hashMerge {
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
187 return hashApply( { %{$_[0]} }, $_[1] );
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
188 }
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
189
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
190 sub hashApply {
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
191 my ($target,$diff) = @_;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
192
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
193 while ( my ($key,$value) = each %$diff) {
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
194 $key =~ /^(\+|-)?(.*)$/;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
195 my $op = $1 || '+';
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
196 $key = $2;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
197
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
198 if ($op eq '-') {
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
199 delete $target->{$key};
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
200 } else {
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
201 $target->{$key} = $value;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
202 }
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
203 }
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
204
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
205 return $target;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
206 }
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
207
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
208 sub hashCompare {
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
209 my ($l,$r,$cmp) = @_;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
210
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
211 $cmp ||= \&equals_s;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
212
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
213 return 0 unless scalar keys %$l == scalar keys %$r;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
214 &$cmp($l->{$_},$r->{$_}) || return 0 foreach keys %$l;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
215
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
216 return 1;
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
217 }
6148f89bb7bf IMPL::SQL::Schema::Traits::Diff alfa version
sourcer
parents: 167
diff changeset
218
174
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
219 sub hashParse {
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
220 my ($s,$p,$d) = @_;
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
221
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
222 $p = $p ? qr/$p/ : qr/\n+/;
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
223 $d = $d ? qr/$d/ : qr/\s*=\s*/;
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
224
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
225 return {
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
226 map split($d,$_,2), split($p,$s)
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
227 };
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
228 }
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
229
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
230 sub hashSave {
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
231
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
232 }
d920d2b70230 minor changes
sergey
parents: 173
diff changeset
233
167
1f7a6d762394 SQL schema in progress
sourcer
parents: 165
diff changeset
234 1;