blob: 03c12de77def00d58fa61a03edbf8f9592effd8b (
plain)
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
|
#!/usr/bin/perl
# Perl Weekly Challenge - 098
# - https://perlweeklychallenge.org/blog/perl-weekly-challenge-098/
#
# Task 1 - Read N-characters
#
# Author: Niels 'PerlBoy' van Dijke
package readN;
use v5.16;
use strict;
use warnings;
use Fcntl qw(:DEFAULT);
use Time::HiRes qw(usleep);
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(readN);
my %FH;
my %EOF;
sub readN ($$) {
my ($fileName, $length) = @_;
# Close the file when eof is reached
if (exists $EOF{$fileName}) {
delete $FH{$fileName};
delete $EOF{$fileName};
return;
}
if (!exists ($FH{$fileName})) {
sysopen($FH{$fileName}, $fileName, O_RDONLY) //
die "Can't open '$fileName' ($!)";
binmode($FH{$fileName});
}
my $return;
my $retry = 10;
do {
my $buf;
my $nread = sysread($FH{$fileName}, $buf, $length);
if (!defined $nread) {
$retry--; usleep 1_000;
} elsif ($nread == 0) {
$EOF{$fileName}++;
} elsif ($nread <= $length) {
$return .= $buf;
}
} while (!exists $EOF{$fileName} and length($return // '') != $length and $retry);
return $return;
}
1;
|