summaryrefslogtreecommitdiffstats
path: root/blog/BBSFileHeader.pm
blob: 4865da8b3441cdb3365dc7c7f979965128c2c76b (plain) (blame)
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
#!/usr/bin/perl
package BBSFileHeader;
use strict;
use IO::Handle;
use Data::Dumper;

use fields qw/dir fh cache/;

sub TIEHASH
{
    my($class, $dir) = @_;
    my $self = fields::new($class);

    open $self->{fh}, "<$dir/.DIR";
    return undef if( !$self->{fh} );

    $self->{dir} = $dir;
    return $self;
}

sub FETCH
{   
    my($self, $k) = @_;

    return $self->{dir} if( $k eq 'dir' );
    return ((-s "$self->{dir}/.DIR") / 128) if( $k eq 'num' );

    my($num, $key) = $k =~ /(.*)\.(.*)/;
    my($t, %h);

    $num += $self->FETCH('num') if( $num < 0 );

    return $self->{cache}{$num}{$key} if( $self->{cache}{$num}{$key} );

    seek($self->{fh}, $num * 128, 0);
    $self->{fh}->read($t, 128);

    if( $key eq 'isdir' ){
    my $fn = "$self->{dir}/" . $self->FETCH("$num.filename");
    return (-d $fn);
    }
    elsif( $key eq 'content' ){
    my $fn = "$self->{dir}/" . $self->FETCH("$num.filename");
    return `/bin/cat $fn`;
    }
    else{
    ($h{filename}, $h{recommend}, $h{owner}, $h{date}, $h{title}) =
        unpack('Z33cZ14Z6Z65', $t);
    $h{title} = substr($h{title}, 3);
    $self->{cache}{$num}{$_} = $h{$_}
        foreach( 'filename', 'owner', 'date', 'title' );
    return $h{$key};
    }
}

1;