/usr/share/perl5/Catmandu/Fix/Bind.pm is in libcatmandu-perl 0.9505-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | package Catmandu::Fix::Bind;
use Catmandu::Sane;
our $VERSION = '0.9505';
use Moo::Role;
use namespace::clean;
with 'Catmandu::Logger';
requires 'unit';
requires 'bind';
has return => (is => 'rw', default => sub { [0]});
has fixes => (is => 'rw', default => sub { [] });
around bind => sub {
my ($orig, $self, $prev, @args) = @_;
my $next = $orig->($self,$prev,@args);
if ($self->can('plus')) {
return $self->plus($prev,$next);
}
else {
return $next;
}
};
sub unit {
my ($self,$data) = @_;
return $data;
}
sub bind {
my ($self,$data,$code,$name,$fixes) = @_;
return $code->($data);
}
sub emit {
my ($self, $fixer, $label) = @_;
my $perl = "";
my $var = $fixer->var;
my $bind_var = $fixer->capture($self);
my $unit = $fixer->generate_var;
my $sub_fixer = Catmandu::Fix->new(fixes => $self->fixes);
my $sub_fixer_var = $fixer->capture($sub_fixer);
$perl .= "my ${unit} = ${bind_var}->unit(${var});";
for my $fix (@{$self->fixes}) {
my $name = ref($fix);
my $original_code = $fixer->emit_fix($fix);
my $generated_code = "sub { my ${var} = shift; $original_code ; ${var} }";
$perl .= "${unit} = ${bind_var}->bind(${unit}, $generated_code,'$name',${sub_fixer_var});"
}
if ($self->can('result')) {
$perl .= "${unit} = ${bind_var}->result(${unit});";
}
if ($self->return) {
$perl .= "${var} = ${unit};";
}
$perl;
}
1;
__END__
=pod
=head1 NAME
Catmandu::Fix::Bind - a wrapper for Catmandu::Fix-es
=head1 SYNOPSIS
package Catmandu::Fix::Bind::demo;
use Moo;
with 'Catmandu::Fix::Bind';
sub bind {
my ($self,$data,$code,$name) = @_;
warn "executing $name";
$code->($data);
}
# in your fix script you can now write
do
demo()
fix1()
fix2()
fix3()
end
# this will execute all the fixes as expected, and print to STDERR the following messages
executing fix1
executing fix2
executing fix3
=head1 DESCRIPTION
Bind is a package that wraps Catmandu::Fix-es and other Catmandu::Bind-s together. This gives
the programmer further control on the excution of fixes. With Catmandu::Fix::Bind you can simulate
the 'before', 'after' and 'around' modifiers as found in Moo or Dancer.
To wrap Fix functions, the Fix language has a 'do' statement:
do BIND
FIX1
FIX2
FIX3
end
where BIND is a implementation of Catmandu::Fix::Bind and FIX1,...,FIXn are Catmandu::Fix functions.
In the example above the BIND will wrap FIX1, FIX2 and FIX3. BIND will first wrap the record data
using its 'unit' method and send the data sequentially to each FIX which can make inline changes
to the record data. In pseudo-code this will look like:
$bind_data = $bind->unit($data);
$bind_data = $bind->bind($bind_data, $fix1);
$bind_data = $bind->bind($bind_data, $fix2);
$bind_data = $bind->bind($bind_data, $fix3);
return $data;
An alternative form exists, 'doset' which will overwrite the record data with results of the last
fix.
doset BIND
FIX1
FIX2
FIX3
end
Will result in a pseudo code like:
$bind_data = $bind->unit($data);
$bind_data = $bind->bind($bind_data, $fix1);
$bind_data = $bind->bind($bind_data, $fix2);
$bind_data = $bind->bind($bind_data, $fix3);
return $bind_data;
A Catmandu::Fix::Bind needs to implement two methods: 'unit' and 'bind'.
=head1 METHODS
=head2 unit($data)
The unit method receives a Perl $data HASH and should return it, possibly converted to a new type.
The 'unit' method is called before all Fix methods are executed. A trivial, but verbose, implementation
of 'unit' is:
sub unit {
my ($self,$data) = @_;
my $wrapped_data = $data;
return $wrapped_data;
}
=head2 bind($wrapped_data,$code,$name,$perl)
The bind method is executed for every Catmandu::Fix method in the fix script. It receives the $wrapped_data
(wrapped by 'unit'), the fix method as anonymous subroutine and the name of the fix. It should return data
with the same type as returned by 'unit'.
A trivial, but verbose, implementaion of 'bind' is:
sub bind {
my ($self,$wrapped_data,$code,$name,$perl) = @_;
my $data = $wrapped_data;
$data = $code->($data);
# we don't need to wrap it again because the $data and $wrapped_data have the same type
$data;
}
=head1 REQUIREMENTS
Bind modules are simplified implementations of Monads. They should answer the formal definition of Monads, codified
in 3 monadic laws:
=head2 left unit: unit acts as a neutral element of bind
my $monad = Catmandu::Fix::Bind->demo();
# bind(unit(data), coderef) == unit(coderef(data))
$monad->bind( $monad->unit({foo=>'bar'}) , $coderef) == $monad->unit($coderef->({foo=>'bar'}));
=head2 right unit: unit act as a neutral element of bind
# bind(unit(data), unit) == unit(data)
$monad->bind( $monad->unit({foo=>'bar'}) , sub { $monad->unit(shift) } ) == $monad->unit({foo=>'bar'});
=head2 associative: chaining bind blocks should have the same effect as nesting them
# bind(bind(unit(data),f),g) == bind(unit(data), sub { return bind(unit(f(data)),g) } )
my $f = sub { my $data = shift; $data->{demo} = 1 ; $data };
my $g = sub { my $data = shift; $data->{demo} += 1 ; $data};
$monad->bind( $monad->bind( $monad->unit({}) , f ) , g ) ==
$monad->bind( $monad->unit({}) , sub { my $data = shift; $monad->bind($monad->unit($f->($data)), $g ); $data; });
=head1 SEE ALSO
L<Catmandu::Fix::Bind::identity>, L<Catmandu::Fix::Bind::benchmark>
=cut
|