added experimental DBIx::Cus...
|
1 |
package DBIx::Custom::Where; |
2 | ||
3 |
use strict; |
|
4 |
use warnings; |
|
5 | ||
6 |
use base 'Object::Simple'; |
|
7 | ||
8 |
use overload 'bool' => sub {1}, fallback => 1; |
|
9 |
use overload '""' => sub { shift->to_string }, fallback => 1; |
|
10 | ||
11 |
use Carp 'croak'; |
|
12 | ||
updated document
|
13 |
# Carp trust relationship |
14 |
push @DBIx::Custom::CARP_NOT, __PACKAGE__; |
|
15 | ||
added test
|
16 |
__PACKAGE__->attr( |
cleanup
|
17 |
[qw/param query_builder/], |
18 |
clause => sub { [] }, |
|
added test
|
19 |
); |
added experimental DBIx::Cus...
|
20 | |
changed DBIx::Custom::Where ...
|
21 |
sub to_string { |
added test
|
22 |
my $self = shift; |
added experimental DBIx::Cus...
|
23 |
|
many changed
|
24 |
# Clause |
added test
|
25 |
my $clause = $self->clause; |
changed DBIx::Custom::Where ...
|
26 |
$clause = ['and', $clause] unless ref $clause eq 'ARRAY'; |
added test
|
27 |
$clause->[0] = 'and' unless @$clause; |
28 | ||
many changed
|
29 |
# Parse |
added test
|
30 |
my $where = []; |
31 |
my $count = {}; |
|
many changed
|
32 |
$self->_parse($clause, $where, $count, 'and'); |
changed DBIx::Custom::Where ...
|
33 |
|
many changed
|
34 |
# Stringify |
35 |
unshift @$where, 'where' if @$where; |
|
added test
|
36 |
return join(' ', @$where); |
added experimental DBIx::Cus...
|
37 |
} |
38 | ||
added test
|
39 |
our %VALID_OPERATIONS = map { $_ => 1 } qw/and or/; |
many changed
|
40 |
sub _parse { |
added test
|
41 |
my ($self, $clause, $where, $count, $op) = @_; |
added experimental DBIx::Cus...
|
42 |
|
many changed
|
43 |
# Array |
changed DBIx::Custom::Where ...
|
44 |
if (ref $clause eq 'ARRAY') { |
many changed
|
45 |
|
46 |
# Start |
|
added test
|
47 |
push @$where, '('; |
changed DBIx::Custom::Where ...
|
48 |
|
many changed
|
49 |
# Operation |
changed DBIx::Custom::Where ...
|
50 |
my $op = $clause->[0] || ''; |
51 |
croak qq{"$op" is invalid operation} |
|
52 |
unless $VALID_OPERATIONS{$op}; |
|
many changed
|
53 |
|
54 |
# Parse internal clause |
|
changed DBIx::Custom::Where ...
|
55 |
for (my $i = 1; $i < @$clause; $i++) { |
many changed
|
56 |
my $pushed = $self->_parse($clause->[$i], $where, $count, $op); |
added test
|
57 |
push @$where, $op if $pushed; |
changed DBIx::Custom::Where ...
|
58 |
} |
added test
|
59 |
pop @$where if $where->[-1] eq $op; |
60 |
|
|
many changed
|
61 |
# Undo |
added test
|
62 |
if ($where->[-1] eq '(') { |
63 |
pop @$where; |
|
64 |
pop @$where; |
|
65 |
} |
|
many changed
|
66 |
# End |
renamed DBIx::Custom::TagPro...
|
67 |
else { push @$where, ')' } |
changed DBIx::Custom::Where ...
|
68 |
} |
many changed
|
69 |
|
70 |
# String |
|
changed DBIx::Custom::Where ...
|
71 |
else { |
72 |
|
|
added test
|
73 |
# Column |
74 |
my $columns = $self->query_builder->build_query($clause)->columns; |
|
changed DBIx::Custom::Where ...
|
75 |
croak qq{each tag contains one column name: tag "$clause"} |
76 |
unless @$columns == 1; |
|
77 |
my $column = $columns->[0]; |
|
78 |
|
|
many changed
|
79 |
# Column count up |
added test
|
80 |
my $count = ++$count->{$column}; |
changed DBIx::Custom::Where ...
|
81 |
|
many changed
|
82 |
# Push |
83 |
my $param = $self->param; |
|
added test
|
84 |
my $pushed; |
renamed DBIx::Custom::TagPro...
|
85 |
if (defined $param) { |
86 |
if (exists $param->{$column}) { |
|
87 |
if (ref $param->{$column} eq 'ARRAY') { |
|
88 |
$pushed = 1 if exists $param->{$column}->[$count - 1]; |
|
89 |
} |
|
90 |
elsif ($count == 1) { |
|
91 |
$pushed = 1; |
|
92 |
} |
|
added experimental DBIx::Cus...
|
93 |
} |
renamed DBIx::Custom::TagPro...
|
94 |
push @$where, $clause if $pushed; |
95 |
} |
|
96 |
else { |
|
97 |
push @$where, $clause; |
|
98 |
$pushed = 1; |
|
added experimental DBIx::Cus...
|
99 |
} |
added test
|
100 |
|
101 |
return $pushed; |
|
added experimental DBIx::Cus...
|
102 |
} |
103 |
} |
|
104 | ||
105 |
1; |
|
106 | ||
107 |
=head1 NAME |
|
108 | ||
109 |
DBIx::Custom::Where - Where clause |
|
110 | ||
111 |
=head1 SYNOPSYS |
|
112 | ||
many changed
|
113 |
my $where = DBIx::Custom::Where->new; |
added experimental DBIx::Cus...
|
114 | |
115 |
=head1 ATTRIBUTES |
|
116 | ||
117 |
=head2 C<param> |
|
118 | ||
119 |
my $param = $where->param; |
|
120 |
$where = $where->param({title => 'Perl', |
|
121 |
date => ['2010-11-11', '2011-03-05']}, |
|
122 |
name => ['Ken', 'Taro']); |
|
123 |
=head1 METHODS |
|
124 | ||
125 |
=head2 C<clause> |
|
126 | ||
added test
|
127 |
$where->clause( |
128 |
['and', '{= title}', ['or', '{< date}', '{> date}']] |
|
129 |
); |
|
added experimental DBIx::Cus...
|
130 | |
many changed
|
131 |
Where clause. Above one is expanded to the following SQL by to_string |
132 |
If all parameter names is exists. |
|
133 | ||
134 |
"where ( {= title} and ( {< date} or {> date} ) )" |
|
added experimental DBIx::Cus...
|
135 | |
136 |
=head2 C<to_string> |
|
137 | ||
138 |
$where->to_string; |
|
added test
|
139 | |
140 |
Convert where clause to string correspoinding to param name. |
|
141 |