App-RecordStream
view release on metacpan or search on metacpan
lib/App/RecordStream/Executor.pm view on Meta::CPAN
no strict;
no warnings;
return ${$package_name . '::' . $name};
}
}
sub set_executor_method {
my $this = shift;
my $name = shift;
my $ref = shift;
my $package_name = $this->get_safe_package_name();
{
no strict;
no warnings;
*{$package_name . "::" . $name} = $ref;
}
}
sub get_code_ref {
my $this = shift;
my $name = shift;
$this->{'SNIPPETS'}->{$name}->{'CODE_REF'};
}
sub eval_safe_package {
my $__MY__code = shift;
my $code = <<CODE;
no strict;
no warnings;
$__MY__code
CODE
eval $code;
if ($@) {
die $@;
}
}
sub execute_code {
my ($this, @args) = @_;
return $this->execute_method($DEFAULT_METHOD_NAME, @args);
}
sub execute_method {
my ($this, $name, @args) = @_;
return $this->get_code_ref($name)->(@args);
}
sub transform_code {
my $this = shift;
my $code = shift;
while ( $code =~ m/\{\{(.*?)\}\}/ ) {
my $specifier = $1;
my $guessing_code = '${App::RecordStream::KeySpec::find_key($r, qq{\@' . $specifier . '})}';
$code =~ s/\{\{.*?\}\}/$guessing_code/;
}
return $code;
}
sub usage {
return <<USAGE;
CODE SNIPPETS:
__FORMAT_TEXT__
Recs code snippets are perl code, with one exception. There a couple of
variables predefined for you, and one piece of special syntax to assist in
modifying hashes.
__FORMAT_TEXT__
Special Variables:
__FORMAT_TEXT__
\$r - the current record object. This may be used exactly like a hash,
or you can use some of the special record functions, see App::RecordStream::Record for
more information
\$line - This is the number of records run through the code snippet,
starting at 1. For most scripts this corresponds to the line number of the
input to the script.
\$filename - The filename of the originating record. Note: This is only
useful if you're passing filenames directly to the recs script, piping from
other recs scripts or from cat, for instance, will not have a useful
filename.
__FORMAT_TEXT__
Special Syntax
__FORMAT_TEXT__
Use {{search_string}} to look for a string in the keys of a record, use /
to nest keys. You can nest into arrays by using an index. If you are
vivifying arrays (if the array doesn't exist, prefix your key with # so
that an array rather than a hash will be created to put a / in your key,
escape it twice, i.e. \\/
This is exactly the same as a key spec that is always prefaced with a @,
see 'man recs' for more info on key specs
__FORMAT_TEXT__
For example: A record that looks like:
{ "foo" : { "bar 1" : 1 }, "zoo" : 2}
Could be accessed like this:
# value of zoo # value of \$r->{foo}->{bar 1}: (comma separate nested keys)
{{zoo}} {{foo/ar 1}}
# Even assign to values (set the foo key to the value 1)
{{foo}} = 1
# And auto, vivify
{{new_key/array_key/#0}} = 3 # creates an array within a hash within a hash
# Index into an array
{{array_key/#3}} # The value of index 3 of the array ref under the
'array_key' hash key.
__FORMAT_TEXT__
( run in 0.866 second using v1.01-cache-2.11-cpan-39bf76dae61 )