| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Feersum::Connection::Handle; |
|
2
|
141
|
|
|
141
|
|
728
|
use warnings; |
|
|
141
|
|
|
|
|
200
|
|
|
|
141
|
|
|
|
|
6742
|
|
|
3
|
141
|
|
|
141
|
|
528
|
use strict; |
|
|
141
|
|
|
|
|
184
|
|
|
|
141
|
|
|
|
|
2197
|
|
|
4
|
141
|
|
|
141
|
|
423
|
use Carp (); |
|
|
141
|
|
|
|
|
207
|
|
|
|
141
|
|
|
|
|
5365
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
sub new { |
|
7
|
0
|
|
|
0
|
0
|
|
Carp::croak "Cannot instantiate Feersum::Connection::Handle directly"; |
|
8
|
|
|
|
|
|
|
} |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
package Feersum::Connection::Reader; |
|
11
|
141
|
|
|
141
|
|
482
|
use warnings; |
|
|
141
|
|
|
|
|
223
|
|
|
|
141
|
|
|
|
|
4316
|
|
|
12
|
141
|
|
|
141
|
|
597
|
use strict; |
|
|
141
|
|
|
|
|
223
|
|
|
|
141
|
|
|
|
|
2967
|
|
|
13
|
141
|
|
|
141
|
|
541
|
use base 'Feersum::Connection::Handle'; |
|
|
141
|
|
|
|
|
244
|
|
|
|
141
|
|
|
|
|
21668
|
|
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub write { ## no critic (BuiltinHomonyms) |
|
16
|
0
|
|
|
0
|
|
|
Carp::croak "can't call write() on a read-only handle" } |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
package Feersum::Connection::Writer; |
|
19
|
141
|
|
|
141
|
|
705
|
use warnings; |
|
|
141
|
|
|
|
|
229
|
|
|
|
141
|
|
|
|
|
4638
|
|
|
20
|
141
|
|
|
141
|
|
523
|
use strict; |
|
|
141
|
|
|
|
|
202
|
|
|
|
141
|
|
|
|
|
2893
|
|
|
21
|
141
|
|
|
141
|
|
434
|
use base 'Feersum::Connection::Handle'; |
|
|
141
|
|
|
|
|
244
|
|
|
|
141
|
|
|
|
|
17122
|
|
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
sub read { ## no critic (BuiltinHomonyms) |
|
24
|
0
|
|
|
0
|
|
|
Carp::croak "can't call read() on a write-only handle" } |
|
25
|
|
|
|
|
|
|
sub seek { ## no critic (BuiltinHomonyms) |
|
26
|
0
|
|
|
0
|
|
|
Carp::croak "can't call seek() on a write-only handle" } |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
package Feersum::Connection::Handle; |
|
29
|
|
|
|
|
|
|
1; |
|
30
|
|
|
|
|
|
|
__END__ |