-
Notifications
You must be signed in to change notification settings - Fork 4
/
Blob2Cont.perl
executable file
·60 lines (51 loc) · 1.43 KB
/
Blob2Cont.perl
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
#!/usr/bin/perl
use lib ("$ENV{HOME}/lookup", "$ENV{HOME}/lib64/perl5", "/home/audris/lib64/perl5","$ENV{HOME}/lib/perl5", "$ENV{HOME}/lib/x86_64-linux-gnu/perl", "$ENV{HOME}/share/perl5");
use strict;
use warnings;
use Error qw(:try);
use TokyoCabinet;
use Compress::LZF;
sub toHex {
return unpack "H*", $_[0];
}
sub fromHex {
return pack "H*", $_[0];
}
my $sections = 128;
my $fbase="/lustre/haven/user/audris/All.sha1c/blob_";
my $fbasei ="/lustre/haven/user/audris/All.blobs/blob_";
my (%fhos);
my $sec = $ARGV[0];
{
my $pre = "/fast1";
tie %{$fhos{$sec}}, "TokyoCabinet::HDB", "${fbase}$sec.tch", TokyoCabinet::HDB::OWRITER | TokyoCabinet::HDB::OCREAT,
16777213, -1, -1, TokyoCabinet::TDB::TLARGE, 100000
or die "cant open $fbase$sec.tch\n";
open (FD, "$fbasei$sec.bin") or die "$!";
binmode(FD);
if ( -f "$fbasei$sec.idx"){
open A, "$fbasei$sec.idx" or die ($!);
while (<A>){
chop ();
my @x = split (/\;/, $_, -1);
my $of = $x[1];
my $len = $x[2];
my $hash = $x[3];
if ($#x>4){
$hash = $x[4]; #hash is on the next column in the beginning
}
my $h = fromHex ($hash);
my $codeC = "";
#seek (FD, $of, 0);
my $rl = read (FD, $codeC, $len);
if (defined $fhos{$sec}{$h}){
print STDERR "done\n";
last;
}
$fhos{$sec}{$h} = $codeC;
}
}else{
die "no $fbasei$sec.idx\n";
}
untie %{$fhos{$sec}};
}