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
|
package Catmandu::Fix::Bind::hashmap;
use Catmandu::Sane;
our $VERSION = '1.2024';
use Moo;
use Catmandu::Util qw(:is);
use namespace::clean;
use Catmandu::Fix::Has;
with 'Catmandu::Fix::Bind', 'Catmandu::Fix::Bind::Group';
has exporter => (fix_opt => 1);
has store => (fix_opt => 1);
has uniq => (fix_opt => 1, default => sub {0});
has count => (fix_opt => 1);
has join => (fix_opt => 1);
has extra_args => (fix_opt => 'collect');
has hash => (is => 'lazy');
sub _build_hash {
+{};
}
sub add_to_hash {
my ($self, $key, $val) = @_;
if ($self->count) {
$self->hash->{$key} += 1;
}
elsif ($self->uniq) {
$self->hash->{$key}->{$val} = 1;
}
else {
push @{$self->hash->{$key}}, $val;
}
}
sub bind {
my ($self, $data, $code) = @_;
$data = $code->($data);
my $key = $data->{key};
my $value = $data->{value};
if (defined $key) {
if (is_string($key)) {
$self->add_to_hash($key, $value);
}
elsif (is_array_ref($key)) {
for (@$key) {
$self->add_to_hash($_, $value);
}
}
else {
warn "$key is not a string or array for $value";
}
}
$data;
}
sub DESTROY {
my ($self) = @_;
my $h = $self->hash;
my $e;
my $args = $self->extra_args // {};
if ($self->store) {
$e = Catmandu->store($self->store, %$args);
}
elsif ($self->exporter) {
$e = Catmandu->exporter($self->exporter, %$args);
}
else {
$e = Catmandu->exporter('JSON', line_delimited => 1);
}
my $sorter = $self->count ? sub {$h->{$b} <=> $h->{$a}} : sub {$a cmp $b};
my $id = 0;
for (sort $sorter keys %$h) {
my $v;
if ($self->count) {
$v = $h->{$_};
}
elsif ($self->uniq) {
$v = [sort keys %{$h->{$_}}];
}
else {
$v = $h->{$_};
}
if (is_array_ref($v) && $self->join) {
$v = join $self->join, @$v;
}
$e->add({_id => $_, value => $v});
}
$e->commit;
}
1;
__END__
=pod
=head1 NAME
Catmandu::Fix::Bind::hashmap - a binder to add key/value pairs to an internal hashmap
=head1 SYNOPSIS
# Find non unique ISBN numbers in the record stream
do hashmap(join: ',')
copy_field(isbn,key)
copy_field(_id,value)
end
# will export to the JSON exporter a hash map containing all isbn occurrences in the stream
{ "_id": "9781565920422" , "value": "rec0001,rec0329,rec1032" }
{ "_id": "9780596004927" , "value": "rec0718" }
# Ignore the values. Count the number of ISBN occurrences in a stream
# File: count.fix:
do hashmap(count: 1)
copy_field(isbn,key)
end
# Use the Null exporter to suppress the normal output
$ cat /tmp/data.json | catmandu convert JSON --fix count.fix to Null
=head1 DESCRIPTION
The hashmap binder will insert all key/value pairs given to a internal hashmap
that can be exported using an Catmandu::Exporter.
The 'key' fields in the internal hashmap will be exported as '_id' field.
If the key in the hashmap Bind is an ARRAY, then multiple key/value pairs will
be inserted into the hashmap.
By default all the values will be added as an array to the hashmap. Every key
will have one or more values. Use the 'join' parameter to create a string
out of this array.
=head1 CONFIGURATION
=head2 exporter: EXPORTER
The name of an exporter to send the results to. Default: JSON Extra parameters can be added:
do hashmap(exporter: JSON, file:/tmp/data.json, count: 1)
...
end
=head2 store: STORE
Send the output to a store instead of an exporter. Extra parameters can be added:
do hashmap(store: MongoDB, database_name: test, bag: data, count: 1)
...
end
=head2 uniq: 0|1
When set to 1, then all values in the key 'value' will be made unique
=head2 join: CHAR
Join all the values of a key using a delimiter.
=head2 count: 0|1
Don't store the values only count the number of key occurrences.
=head1 SEE ALSO
L<Catmandu::Fix::Bind>
=cut
|