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
|
#!/usr/bin/perl -c
package Cyrus::CacheFile;
use strict;
use warnings;
use IO::File;
use IO::File::fcntl;
use IO::Handle;
use File::Temp;
use YAML;
=pod
=head1 NAME
Cyrus::CacheFile - A pure perl interface to the "cyrus.cache" file
format as generated by Cyrus IMAPd.
=head1 EXAMPLES
XXX: document.
See examples/index_uids.pl for some usage
=cut
# /* Access assistance macros for memory-mapped cache file data */
# /* CACHE_ITEM_BIT32: Convert to host byte order */
# /* CACHE_ITEM_LEN: Get the length out */
# /* CACHE_ITEM_NEXT: Return a pointer to the next entry. Sizes are
# * 4-byte aligned, so round up to the next 4 byte boundary */
# #define CACHE_ITEM_BIT32(ptr) (ntohl(*((bit32 *)(ptr))))
# #define CACHE_ITEM_LEN(ptr) CACHE_ITEM_BIT32(ptr)
# #define CACHE_ITEM_NEXT(ptr) ((ptr)+4+((3+CACHE_ITEM_LEN(ptr))&~3))
# #define MAILBOX_CACHE_MINOR_VERSION 2
# #define NUM_CACHE_FIELDS 10
our $NUM_CACHE_FIELDS = 10;
our @NAMES = qw(
ENVELOPE
BODYSTRUCTURE
BODY
SECTION
HEADERS
FROM
TO
CC
BCC
SUBJECT
);
# PUBLIC API
sub new {
my $class = shift;
my $handle = shift;
# read header
my $buf;
# XXX - check for success!
sysread($handle, $buf, 4);
my $version = unpack('N', $buf);
my $Self = bless { version => $version, handle => $handle, offset => 4 }, ref($class) || $class;
return $Self;
}
sub new_file {
my $class = shift;
my $file = shift;
my $lockopts = shift;
my $fh;
if ($lockopts) {
$lockopts = ['lock_ex'] unless ref($lockopts) eq 'ARRAY';
$fh = IO::File::fcntl->new($file, '+<', @$lockopts)
|| die "Can't open $file for locked read: $!";
} else {
$fh = IO::File->new("< $file")
|| die "Can't open $file for read: $!";
}
return $class->new($fh);
}
sub next_record {
my $Self = shift;
my $buf;
my @record;
my $size = 0;
for (1..$NUM_CACHE_FIELDS) {
sysread($Self->{handle}, $buf, 4);
return undef unless $buf;
my $num = unpack('N', $buf);
my $bytes = $num;
$bytes += 4 - $num % 4 if $num % 4; # offsets are multiple of 4 bytes
sysread($Self->{handle}, $buf, $bytes);
push @record, [$num, $bytes, $buf];
$size += $bytes + 4;
}
my $ret = {
size => $size,
records => \@record,
};
$Self->{record} = $ret;
$Self->{offset} += $size;
return $ret;
}
sub record {
my $Self = shift;
my $Field = shift;
return undef unless ($Self->{record});
if ($Field) {
return $Self->{record}{$Field};
}
return $Self->{record};
}
sub offset {
my $Self = shift;
if (@_) {
my $spot = shift;
seek($Self->{handle}, $spot, 0);
$Self->{offset} = $spot;
}
return $Self->{offset};
}
sub dump {
my $Self = shift;
while (my $rec = $Self->next_record()) {
$Self->dump_record($rec);
}
}
sub dump_record {
my $Self = shift;
my $rec = shift || $Self->{record};
return unless $rec;
print Dump($rec->{records});
}
sub print_record {
my $Self = shift;
my $rec = shift || $Self->{record};
return unless $rec;
foreach my $rnum (0..$NUM_CACHE_FIELDS-1) {
my $record = $rec->{records}[$rnum];
my $str = substr($record->[2], 0, $record->[0]);
if ($rnum == 3) { # section
my @items = unpack('N*', $str);
$str = parse_section(0, \@items);
}
print "$NAMES[$rnum]: $str\n";
}
}
sub parse_section {
my $part = shift;
my $items = shift;
my $num_parts = shift @$items;
if ($num_parts == 0) {
return "$part:()";
}
my $ret = "$part:(" . parse_item($items);
my $n = 1;
while ($n < $num_parts) {
my $subpart = $part ? "$part.$n" : $n;
$ret .= " " . parse_item($items);
$n++;
}
$n = 1;
$ret .= ")";
while ($n < $num_parts) {
my $subpart = $part ? "$part.$n" : $n;
$ret .= " " . parse_section($subpart, $items);
$n++;
}
return $ret;
}
sub parse_item {
my $items = shift;
my $header_offset = shift @$items;
my $header_size = shift @$items;
my $content_offset = shift @$items;
my $content_size = shift @$items;
my $encoding = shift @$items;
return "($header_offset:$header_size $content_offset:$content_size $encoding)";
}
=head1 AUTHOR AND COPYRIGHT
Bron Gondwana <brong@fastmail.fm> - Copyright 2008 FastMail
Licenced under the same terms as Cyrus IMAPd.
=cut
1;
|