| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Sys::Export::ISO9660::File; |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
our $VERSION = '0.006'; # VERSION |
|
4
|
|
|
|
|
|
|
# ABSTRACT: Represents a file in ISO9660, including packed encodings of directories |
|
5
|
|
|
|
|
|
|
|
|
6
|
2
|
|
|
2
|
|
21
|
use v5.26; |
|
|
2
|
|
|
|
|
6
|
|
|
7
|
2
|
|
|
2
|
|
9
|
use warnings; |
|
|
2
|
|
|
|
|
2
|
|
|
|
2
|
|
|
|
|
87
|
|
|
8
|
2
|
|
|
2
|
|
7
|
use experimental qw( signatures ); |
|
|
2
|
|
|
|
|
4
|
|
|
|
2
|
|
|
|
|
13
|
|
|
9
|
2
|
|
|
2
|
|
226
|
use parent 'Sys::Export::Extent'; |
|
|
2
|
|
|
|
|
3
|
|
|
|
2
|
|
|
|
|
21
|
|
|
10
|
2
|
|
|
2
|
|
127
|
use Sys::Export::ISO9660; |
|
|
2
|
|
|
|
|
2
|
|
|
|
2
|
|
|
|
|
361
|
|
|
11
|
|
|
|
|
|
|
our @CARP_NOT= qw( Sys::Export::ISO9660 ); |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
|
14
|
95
|
|
|
95
|
1
|
88
|
sub block_size($self) { 2048 } |
|
|
95
|
|
|
|
|
102
|
|
|
|
95
|
|
|
|
|
85
|
|
|
|
95
|
|
|
|
|
208
|
|
|
15
|
26
|
100
|
|
26
|
1
|
27
|
sub mtime($self, @v) { @v? ($self->{mtime}= $v[0]) : $self->{mtime} } |
|
|
26
|
|
|
|
|
27
|
|
|
|
26
|
|
|
|
|
26
|
|
|
|
26
|
|
|
|
|
22
|
|
|
|
26
|
|
|
|
|
131
|
|
|
16
|
41
|
100
|
|
41
|
1
|
56
|
sub flags($self, @v) { @v? ($self->{flags}= $v[0]) : $self->{flags} } |
|
|
41
|
|
|
|
|
41
|
|
|
|
41
|
|
|
|
|
40
|
|
|
|
41
|
|
|
|
|
30
|
|
|
|
41
|
|
|
|
|
283
|
|
|
17
|
7
|
|
50
|
7
|
1
|
11
|
sub is_dir($self) { ($self->{flags}||0) & Sys::Export::ISO9660::FLAG_DIRECTORY() } |
|
|
7
|
|
|
|
|
6
|
|
|
|
7
|
|
|
|
|
7
|
|
|
|
7
|
|
|
|
|
46
|
|
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
__END__ |