Newer Older
141 lines | 3.236kb
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
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
Yuki Kimoto authored on 2011-01-20
13
# Carp trust relationship
14
push @DBIx::Custom::CARP_NOT, __PACKAGE__;
15

            
added test
Yuki Kimoto authored on 2011-01-19
16
__PACKAGE__->attr(
cleanup
Yuki Kimoto authored on 2011-01-25
17
    [qw/param query_builder/],
18
    clause => sub { [] },
added test
Yuki Kimoto authored on 2011-01-19
19
);
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
20

            
changed DBIx::Custom::Where ...
Yuki Kimoto authored on 2011-01-19
21
sub to_string {
added test
Yuki Kimoto authored on 2011-01-19
22
    my $self = shift;
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
23
    
many changed
Yuki Kimoto authored on 2011-01-23
24
    # Clause
added test
Yuki Kimoto authored on 2011-01-19
25
    my $clause = $self->clause;
changed DBIx::Custom::Where ...
Yuki Kimoto authored on 2011-01-19
26
    $clause = ['and', $clause] unless ref $clause eq 'ARRAY';
added test
Yuki Kimoto authored on 2011-01-19
27
    $clause->[0] = 'and' unless @$clause;
28

            
many changed
Yuki Kimoto authored on 2011-01-23
29
    # Parse
added test
Yuki Kimoto authored on 2011-01-19
30
    my $where = [];
31
    my $count = {};
many changed
Yuki Kimoto authored on 2011-01-23
32
    $self->_parse($clause, $where, $count, 'and');
changed DBIx::Custom::Where ...
Yuki Kimoto authored on 2011-01-19
33
    
many changed
Yuki Kimoto authored on 2011-01-23
34
    # Stringify
35
    unshift @$where, 'where' if @$where;
added test
Yuki Kimoto authored on 2011-01-19
36
    return join(' ', @$where);
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
37
}
38

            
added test
Yuki Kimoto authored on 2011-01-19
39
our %VALID_OPERATIONS = map { $_ => 1 } qw/and or/;
many changed
Yuki Kimoto authored on 2011-01-23
40
sub _parse {
added test
Yuki Kimoto authored on 2011-01-19
41
    my ($self, $clause, $where, $count, $op) = @_;
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
42
    
many changed
Yuki Kimoto authored on 2011-01-23
43
    # Array
changed DBIx::Custom::Where ...
Yuki Kimoto authored on 2011-01-19
44
    if (ref $clause eq 'ARRAY') {
many changed
Yuki Kimoto authored on 2011-01-23
45
        
46
        # Start
added test
Yuki Kimoto authored on 2011-01-19
47
        push @$where, '(';
changed DBIx::Custom::Where ...
Yuki Kimoto authored on 2011-01-19
48
        
many changed
Yuki Kimoto authored on 2011-01-23
49
        # Operation
changed DBIx::Custom::Where ...
Yuki Kimoto authored on 2011-01-19
50
        my $op = $clause->[0] || '';
51
        croak qq{"$op" is invalid operation}
52
          unless $VALID_OPERATIONS{$op};
many changed
Yuki Kimoto authored on 2011-01-23
53
        
54
        # Parse internal clause
changed DBIx::Custom::Where ...
Yuki Kimoto authored on 2011-01-19
55
        for (my $i = 1; $i < @$clause; $i++) {
many changed
Yuki Kimoto authored on 2011-01-23
56
            my $pushed = $self->_parse($clause->[$i], $where, $count, $op);
added test
Yuki Kimoto authored on 2011-01-19
57
            push @$where, $op if $pushed;
changed DBIx::Custom::Where ...
Yuki Kimoto authored on 2011-01-19
58
        }
added test
Yuki Kimoto authored on 2011-01-19
59
        pop @$where if $where->[-1] eq $op;
60
        
many changed
Yuki Kimoto authored on 2011-01-23
61
        # Undo
added test
Yuki Kimoto authored on 2011-01-19
62
        if ($where->[-1] eq '(') {
63
            pop @$where;
64
            pop @$where;
65
        }
many changed
Yuki Kimoto authored on 2011-01-23
66
        # End
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
67
        else { push @$where, ')' }
changed DBIx::Custom::Where ...
Yuki Kimoto authored on 2011-01-19
68
    }
many changed
Yuki Kimoto authored on 2011-01-23
69
    
70
    # String
changed DBIx::Custom::Where ...
Yuki Kimoto authored on 2011-01-19
71
    else {
72
        
added test
Yuki Kimoto authored on 2011-01-19
73
        # Column
74
        my $columns = $self->query_builder->build_query($clause)->columns;
changed DBIx::Custom::Where ...
Yuki Kimoto authored on 2011-01-19
75
        croak qq{each tag contains one column name: tag "$clause"}
76
          unless @$columns == 1;
77
        my $column = $columns->[0];
78
        
many changed
Yuki Kimoto authored on 2011-01-23
79
        # Column count up
added test
Yuki Kimoto authored on 2011-01-19
80
        my $count = ++$count->{$column};
changed DBIx::Custom::Where ...
Yuki Kimoto authored on 2011-01-19
81
        
many changed
Yuki Kimoto authored on 2011-01-23
82
        # Push
83
        my $param = $self->param;
added test
Yuki Kimoto authored on 2011-01-19
84
        my $pushed;
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
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...
Yuki Kimoto authored on 2011-01-18
93
            }
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
94
            push @$where, $clause if $pushed;
95
        }
96
        else {
97
            push @$where, $clause;
98
            $pushed = 1;
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
99
        }
added test
Yuki Kimoto authored on 2011-01-19
100
        
101
        return $pushed;
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
102
    }
103
}
104

            
105
1;
106

            
107
=head1 NAME
108

            
109
DBIx::Custom::Where - Where clause
110

            
111
=head1 SYNOPSYS
112

            
many changed
Yuki Kimoto authored on 2011-01-23
113
    my $where = DBIx::Custom::Where->new;
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
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
Yuki Kimoto authored on 2011-01-19
127
    $where->clause(
128
        ['and', '{= title}', ['or', '{< date}', '{> date}']]
129
    );
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
130

            
many changed
Yuki Kimoto authored on 2011-01-23
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...
Yuki Kimoto authored on 2011-01-18
135

            
136
=head2 C<to_string>
137

            
138
    $where->to_string;
added test
Yuki Kimoto authored on 2011-01-19
139

            
140
Convert where clause to string correspoinding to param name.
141