Newer Older
144 lines | 3.452kb
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;
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
75
        croak qq{Each tag contains one column name: tag "$clause"}
changed DBIx::Custom::Where ...
Yuki Kimoto authored on 2011-01-19
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;
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
85
        if (ref $param eq 'HASH') {
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
86
            if (exists $param->{$column}) {
87
                if (ref $param->{$column} eq 'ARRAY') {
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
88
                    $pushed = 1
89
                      if  exists $param->{$column}->[$count - 1]
90
                       && ref $param->{$column}->[$count - 1] ne 'DBIx::Custom::NotExists';
91
                } 
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
92
                elsif ($count == 1) {
93
                    $pushed = 1;
94
                }
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
95
            }
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
96
            push @$where, $clause if $pushed;
97
        }
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
98
        elsif (!defined $param) {
renamed DBIx::Custom::TagPro...
Yuki Kimoto authored on 2011-01-24
99
            push @$where, $clause;
100
            $pushed = 1;
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
101
        }
added experimental not_exist...
Yuki Kimoto authored on 2011-01-26
102
        else { croak "Parameter must be hash reference or undfined value" }
added test
Yuki Kimoto authored on 2011-01-19
103
        
104
        return $pushed;
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
105
    }
106
}
107

            
108
1;
109

            
110
=head1 NAME
111

            
112
DBIx::Custom::Where - Where clause
113

            
114
=head1 SYNOPSYS
115

            
many changed
Yuki Kimoto authored on 2011-01-23
116
    my $where = DBIx::Custom::Where->new;
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
117

            
118
=head1 ATTRIBUTES
119

            
120
=head2 C<param>
121

            
122
    my $param = $where->param;
123
    $where    = $where->param({title => 'Perl',
124
                               date => ['2010-11-11', '2011-03-05']},
125
                               name => ['Ken', 'Taro']);
126
=head1 METHODS
127

            
128
=head2 C<clause>
129

            
added test
Yuki Kimoto authored on 2011-01-19
130
    $where->clause(
131
        ['and', '{= title}', ['or', '{< date}', '{> date}']]
132
    );
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
133

            
many changed
Yuki Kimoto authored on 2011-01-23
134
Where clause. Above one is expanded to the following SQL by to_string
135
If all parameter names is exists.
136

            
137
    "where ( {= title} and ( {< date} or {> date} ) )"
added experimental DBIx::Cus...
Yuki Kimoto authored on 2011-01-18
138

            
139
=head2 C<to_string>
140

            
141
    $where->to_string;
added test
Yuki Kimoto authored on 2011-01-19
142

            
143
Convert where clause to string correspoinding to param name.
144