/usr/share/perl5/MCE/Candy.pm is in libmce-perl 1.810-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 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 | ###############################################################################
## ----------------------------------------------------------------------------
## Sugar methods and output iterators.
##
###############################################################################
package MCE::Candy;
use strict;
use warnings;
no warnings qw( threads recursion uninitialized );
our $VERSION = '1.810';
our @CARP_NOT = qw( MCE );
###############################################################################
## ----------------------------------------------------------------------------
## Import routine.
##
###############################################################################
my $_imported;
sub import {
my $_class = shift; return if ($_imported++);
unless (defined $MCE::VERSION) {
$\ = undef; require Carp;
Carp::croak(
"MCE::Candy requires MCE. Please see the MCE::Candy documentation\n".
"for more information.\n\n"
);
}
return;
}
###############################################################################
## ----------------------------------------------------------------------------
## Forchunk, foreach, and forseq sugar methods.
##
###############################################################################
sub forchunk {
my $x = shift; my $self = ref($x) ? $x : $MCE::MCE;
my $_input_data = $_[0];
MCE::_validate_runstate($self, 'MCE::forchunk');
my ($_user_func, $_params_ref);
if (ref $_[1] eq 'HASH') {
$_user_func = $_[2]; $_params_ref = $_[1];
} else {
$_user_func = $_[1]; $_params_ref = {};
}
@_ = ();
MCE::_croak('MCE::forchunk: (input_data) is not specified')
unless (defined $_input_data);
MCE::_croak('MCE::forchunk: (code_block) is not specified')
unless (defined $_user_func);
$_params_ref->{input_data} = $_input_data;
$_params_ref->{user_func} = $_user_func;
$self->run(1, $_params_ref);
return $self;
}
sub foreach {
my $x = shift; my $self = ref($x) ? $x : $MCE::MCE;
my $_input_data = $_[0];
MCE::_validate_runstate($self, 'MCE::foreach');
my ($_user_func, $_params_ref);
if (ref $_[1] eq 'HASH') {
$_user_func = $_[2]; $_params_ref = $_[1];
} else {
$_user_func = $_[1]; $_params_ref = {};
}
@_ = ();
MCE::_croak('MCE::foreach: (input_data) is not specified')
unless (defined $_input_data);
MCE::_croak('MCE::foreach: (code_block) is not specified')
unless (defined $_user_func);
$_params_ref->{chunk_size} = 1;
$_params_ref->{input_data} = $_input_data;
$_params_ref->{user_func} = $_user_func;
$self->run(1, $_params_ref);
return $self;
}
sub forseq {
my $x = shift; my $self = ref($x) ? $x : $MCE::MCE;
my $_sequence = $_[0];
MCE::_validate_runstate($self, 'MCE::forseq');
my ($_user_func, $_params_ref);
if (ref $_[1] eq 'HASH') {
$_user_func = $_[2]; $_params_ref = $_[1];
} else {
$_user_func = $_[1]; $_params_ref = {};
}
@_ = ();
MCE::_croak('MCE::forseq: (sequence) is not specified')
unless (defined $_sequence);
MCE::_croak('MCE::forseq: (code_block) is not specified')
unless (defined $_user_func);
$_params_ref->{sequence} = $_sequence;
$_params_ref->{user_func} = $_user_func;
$self->run(1, $_params_ref);
return $self;
}
###############################################################################
## ----------------------------------------------------------------------------
## Output iterators for preserving output order.
##
###############################################################################
sub out_iter_array {
my $_aref = shift; my %_tmp; my $_order_id = 1;
MCE::_croak('The argument to (out_iter_array) is not an array ref.')
unless (ref($_aref) eq 'ARRAY');
return sub {
my $_chunk_id = shift;
if ($_chunk_id == $_order_id && keys %_tmp == 0) {
## already orderly
$_order_id++; push @{ $_aref }, @_;
}
else {
## hold temporarily otherwise until orderly
@{ $_tmp{ $_chunk_id } } = @_;
while (1) {
last unless exists $_tmp{ $_order_id };
push @{ $_aref }, @{ delete $_tmp{ $_order_id++ } };
}
}
};
}
sub out_iter_fh {
my $_fh = $_[0]; my %_tmp; my $_order_id = 1;
$_fh = \$_[0] if (!ref $_fh && ref \$_[0]);
MCE::_croak('The argument to (out_iter_fh) is not a supported file handle.')
unless (ref($_fh) =~ /^(?:GLOB|FileHandle|IO::)/);
return sub {
my $_chunk_id = shift;
if ($_chunk_id == $_order_id && keys %_tmp == 0) {
## already orderly
$_order_id++; print {$_fh} @_;
}
else {
## hold temporarily otherwise until orderly
@{ $_tmp{ $_chunk_id } } = @_;
while (1) {
last unless exists $_tmp{ $_order_id };
print {$_fh} @{ delete $_tmp{ $_order_id++ } };
}
}
};
}
1;
__END__
###############################################################################
## ----------------------------------------------------------------------------
## Module usage.
##
###############################################################################
=head1 NAME
MCE::Candy - Sugar methods and output iterators
=head1 VERSION
This document describes MCE::Candy version 1.810
=head1 DESCRIPTION
This module provides a collection of sugar methods and helpful output iterators
for preserving output order.
=head1 "FOR" SUGAR METHODS
The sugar methods described below were created prior to the 1.5 release which
added MCE Models. This module is loaded automatically upon calling a "for"
method.
=head2 $mce->forchunk ( $input_data [, { options } ], sub { ... } )
Forchunk, foreach, and forseq are sugar methods in MCE. Workers are
spawned automatically, the code block is executed in parallel, and shutdown
is called. Do not call these methods if workers must persist afterwards.
Specifying options is optional. Valid options are the same as for the
process method.
## Declare a MCE instance.
my $mce = MCE->new(
chunk_size => 20,
max_workers => $max_workers
);
## Arguments inside the code block are the same as passed to user_func.
$mce->forchunk(\@input_data, sub {
my ($mce, $chunk_ref, $chunk_id) = @_;
foreach ( @{ $chunk_ref } ) {
MCE->print("$chunk_id: $_\n");
}
});
## Passing chunk_size as an option.
$mce->forchunk(\@input_data, { chunk_size => 30 }, sub {
...
});
=head2 $mce->foreach ( $input_data [, { options } ], sub { ... } )
Foreach implies chunk_size => 1 and cannot be overwritten. Thus, looping is
not necessary inside the block.
my $mce = MCE->new(
max_workers => $max_workers
);
$mce->foreach(\@input_data, sub {
my ($mce, $chunk_ref, $chunk_id) = @_;
my $row = $chunk_ref->[0];
MCE->print("$chunk_id: $row\n");
});
=head2 $mce->forseq ( $sequence_spec [, { options } ], sub { ... } )
Sequence can be defined using an array or hash reference.
my $mce = MCE->new(
max_workers => 3
);
$mce->forseq([ 20, 40 ], sub {
my ($mce, $n, $chunk_id) = @_;
my $result = `ping 192.168.1.${n}`;
...
});
$mce->forseq({ begin => 15, end => 10, step => -1 }, sub {
my ($mce, $n, $chunk_id) = @_;
print $n, " from ", MCE->wid, "\n";
});
The $n_seq variable points to an array_ref of sequences. Chunk size defaults
to 1 when not specified.
$mce->forseq([ 20, 80 ], { chunk_size => 10 }, sub {
my ($mce, $n_seq, $chunk_id) = @_;
for my $n ( @{ $n_seq } ) {
my $result = `ping 192.168.1.${n}`;
...
}
});
=head1 OUTPUT ITERATORS WITH INPUT
This module includes 2 output iterators which are useful for preserving output
order while gathering data. These cover the 2 general use cases. The chunk_id
value must be the first argument to gather. Gather must also not be called
more than once inside the block.
=head2 gather => MCE::Candy::out_iter_array( \@array )
The example utilizes the Core API with chunking disabled. Basically, setting
chunk_size to 1.
use MCE;
use MCE::Candy;
my @results;
my $mce = MCE->new(
chunk_size => 1, max_workers => 4,
gather => MCE::Candy::out_iter_array(\@results),
user_func => sub {
my ($mce, $chunk_ref, $chunk_id) = @_;
$mce->gather($chunk_id, $chunk_ref->[0] * 2);
}
);
$mce->process([ 100 .. 109 ]);
print "@results", "\n";
-- Output
200 202 204 206 208 210 212 214 216 218
Chunking may be desired for thousands or more items. In other words, wanting
to reduce the overhead placed on IPC.
use MCE;
use MCE::Candy;
my @results;
my $mce = MCE->new(
chunk_size => 100, max_workers => 4,
gather => MCE::Candy::out_iter_array(\@results),
user_func => sub {
my ($mce, $chunk_ref, $chunk_id) = @_;
my @output;
foreach my $item (@{ $chunk_ref }) {
push @output, $item * 2;
}
$mce->gather($chunk_id, @output);
}
);
$mce->process([ 100_000 .. 200_000 - 1 ]);
print scalar @results, "\n";
-- Output
100000
=head2 gather => MCE::Candy::out_iter_fh( $fh )
Let's change things a bit and use MCE::Flow for the next 2 examples. Chunking
is not desired for the first example.
use MCE::Flow;
use MCE::Candy;
open my $fh, '>', '/tmp/foo.txt';
mce_flow {
chunk_size => 1, max_workers => 4,
gather => MCE::Candy::out_iter_fh($fh)
},
sub {
my ($mce, $chunk_ref, $chunk_id) = @_;
$mce->gather($chunk_id, $chunk_ref->[0] * 2, "\n");
}, (100 .. 109);
close $fh;
-- Output sent to '/tmp/foo.txt'
200
202
204
206
208
210
212
214
216
218
Chunking is desired for the next example due to processing many thousands.
use MCE::Flow;
use MCE::Candy;
open my $fh, '>', '/tmp/foo.txt';
mce_flow {
chunk_size => 100, max_workers => 4,
gather => MCE::Candy::out_iter_fh( $fh )
},
sub {
my ($mce, $chunk_ref, $chunk_id) = @_;
my @output;
foreach my $item (@{ $chunk_ref }) {
push @output, ($item * 2) . "\n";
}
$mce->gather($chunk_id, @output);
}, (100_000 .. 200_000 - 1);
close $fh;
print -s '/tmp/foo.txt', "\n";
-- Output
700000
=head1 OUTPUT ITERATORS WITHOUT INPUT
Input data is not a requirement for using the output iterators included in this
module. The 'chunk_id' value is set uniquely and the same as 'wid' when not
processing input data.
=head2 gather => MCE::Candy::out_iter_array( \@array )
use MCE::Flow;
use MCE::Candy;
my @results;
mce_flow {
max_workers => 'auto', ## Note that 'auto' is never higher than 8
gather => MCE::Candy::out_iter_array(\@results)
},
sub {
my ($mce) = @_; ## This line is not necessary
## Calling via module okay; e.g: MCE->method
## Do work
## Sending a complex data structure is allowed
## Output will become orderly by iterator
$mce->gather( $mce->chunk_id, {
wid => $mce->wid, result => $mce->wid * 2
});
};
foreach my $href (@results) {
print $href->{wid} .": ". $href->{result} ."\n";
}
-- Output
1: 2
2: 4
3: 6
4: 8
5: 10
6: 12
7: 14
8: 16
=head2 gather => MCE::Candy::out_iter_fh( $fh )
use MCE::Flow;
use MCE::Candy;
open my $fh, '>', '/tmp/out.txt';
mce_flow {
max_workers => 'auto', ## See get_ncpu in <MCE::Util|MCE::Util>
gather => MCE::Candy::out_iter_fh($fh)
},
sub {
my $output = "# Worker ID: " . MCE->wid . "\n";
## Append results to $output string
$output .= (MCE->wid * 2) . "\n\n";
## Output will become orderly by iterator
MCE->gather( MCE->wid, $output );
};
close $fh;
-- Output
# Worker ID: 1
2
# Worker ID: 2
4
# Worker ID: 3
6
# Worker ID: 4
8
# Worker ID: 5
10
# Worker ID: 6
12
# Worker ID: 7
14
# Worker ID: 8
16
=head1 INDEX
L<MCE|MCE>, L<MCE::Core>
=head1 AUTHOR
Mario E. Roy, S<E<lt>marioeroy AT gmail DOT comE<gt>>
=cut
|