f09550b30d745d75b5fbcd9b57c1271c567f20c2
[catagits/Catalyst-Plugin-Cache.git] / lib / Catalyst / Plugin / Cache / Curried.pm
1 #!/usr/bin/perl
2
3 package Catalyst::Plugin::Cache::Curried;
4
5 use strict;
6 use warnings;
7
8 use base qw/Class::Accessor::Fast/;
9
10 use Scalar::Util ();
11
12 __PACKAGE__->mk_accessors(qw/c meta/);
13
14 sub new {
15     my ( $class, $c, @meta ) = @_;
16
17     my $self = $class->SUPER::new({
18         c    => $c,
19         meta => \@meta,
20     });
21
22     Scalar::Util::weaken( $self->{c} );
23
24     return $self;
25 }
26
27 sub backend {
28     my ( $self, @meta ) = @_;
29     $self->c->choose_cache_backend( @{ $self->meta }, @meta )
30 }
31
32 sub set {
33     my ( $self, $key, $value, @meta ) = @_;
34     $self->c->cache_set( $key, $value, @{ $self->meta }, @meta );
35 }
36
37 sub get {
38     my ( $self, $key, @meta ) = @_;
39     $self->c->cache_get( $key, @{ $self->meta } );
40 }
41
42 sub remove {
43     my ( $self, $key, @meta ) = @_;
44     $self->c->cache_remove( $key, @{ $self->meta } );
45 }
46
47 __PACKAGE__;
48
49 __END__
50
51 =pod
52
53 =head1 NAME
54
55 Catalyst::Plugin::Cache::Curried - Curried versions of C<cache_set>,
56 C<cache_get> and C<cache_remove> that look more like a backend.
57
58 =head1 SYNOPSIS
59
60     my $curried = $c->cache( %meta );
61
62     $curried->get( $key, $value ); # no need to specify %meta
63
64 =head1 DESCRIPTION
65
66 See L<Catalyst::Plugin::Cache/META DATA> for details.
67
68 =head1 METHODS
69
70 =over 4
71
72 =item new %meta
73
74 Create a new curried cache, that captures C<%meta>.
75
76 =item backend %additional_meta
77
78 This calls C<choose_cache_backend> on the $c object with the captured meta and
79 the additional meta.
80
81 =item set $key, $value, %additional_meta
82
83 =item get $key, %additional_meta
84
85 =item remove $key, %additional_meta
86
87 Dellegate to the C<c> object's C<cache_set>, C<cache_get> or C<cache_remove>
88 with the arguments, then the captured meta from C<meta>, and then the
89 additional meta.
90
91 =item meta
92
93 Returns the array ref that captured %meta from C<new>.
94
95 =item c
96
97 The captured $c object to delegate to.
98
99 =back
100
101 =cut
102
103