X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.db-live.git;a=blobdiff_plain;f=pctb%2Fdictionary-update-receiver;h=3e04f6c3015d5ebf65a5672d6d2e0acd24021e77;hp=9132c4e9d22036ab35a249ffbe8e54d388666662;hb=0c7799d7cea28bfc9d24ea4a152b5fa602118284;hpb=6bc2ac751dfd2cd3633e94388b6c1f5a52abb5ae diff --git a/pctb/dictionary-update-receiver b/pctb/dictionary-update-receiver index 9132c4e..3e04f6c 100755 --- a/pctb/dictionary-update-receiver +++ b/pctb/dictionary-update-receiver @@ -17,6 +17,7 @@ # The SC PCTB client does this so that use strict (qw(vars)); +use POSIX; $CGI::POST_MAX= 65536; $CGI::DISABLE_UPLOADS= 1; @@ -30,7 +31,7 @@ use IO::Handle; sub parseentryin__pixmap ($) { my ($entry_in) = @_; $entry_in =~ - m/^(\w+ \- \w[-+'"#! 0-9a-z]*)\nP3\n([1-9]\d{1,3}) ([1-9]\d{1,3})\n255\n/s or die; # ']); + m/^(\w+ \- \w[-+\'\"\#! 0-9a-z]*)\nP3\n([1-9]\d{1,3}) ([1-9]\d{1,3})\n255\n/s or die; my ($def,$w,$h)= ($1, $2+0, $3+0); my @d= grep { m/./ } split /\s+/, $'; @d == $w*$h*3 or die "$d[0]|$d[1]|...|$d[$#d-1]|$d[$#d] ?"; @@ -50,31 +51,15 @@ sub parseentryin__pixmap ($) { $ppm .= "\n"; } - my $icon= pipeval($ppm, - 'ppmtopgm', - 'pnmscale -xysize 156 80', - 'pnmnorm -bpercent 40 -wpercent 20', - 'pgmtopbm -threshold', - 'pnminvert', - 'pbmtoascii -2x4'); - - my $whole= pipeval($ppm, - 'ppmtopgm', - 'pnmnorm -bpercent 40 -wpercent 20', - 'pgmtopbm -threshold', - 'pnminvert', - 'pbmtoascii'); - - my $entry= "$def\n$ppm"; - return ('',$def,$entry,$icon,$w,$whole); + return ('',$def,$ppm,$ppm,$def); } #---------- characters ---------- -sub parseentryin__char ($) { - my ($ei) = @_; - $ei =~ m/^([1-9]\d{0,2})\n(Digit|Upper|Lower)\n((?:[-&\'A-F0-9a-f ]|\x20)+)\n/s or die; - my ($h,$ctx,$str)= ($1+0,$2,$3); +sub parseentryin__char ($$) { + my ($ei,$h) = @_; + $ei =~ m/^(Digit|Upper|Lower)\n((?:[-&\'A-F0-9a-f ]|\x20)+)\n/s or die; + my ($ctx,$str)= ($1,$2); #print STDERR ">$'<\n"; my @d= grep { m/./ } split /\n/, $'; #print STDERR ">@d<\n"; @@ -90,120 +75,73 @@ sub parseentryin__char ($) { my $ppm= "P2\n$w $h\n1\n"; for (my $y=0; $y<$h; $y++) { for (my $x=0; $x<$w; $x++) { - $ppm .= sprintf " %d", !!($d[$x] & (1<<$y)); + $ppm .= sprintf " %d", !($d[$x] & (1<<$y)); } $ppm .= "\n"; } - my $entry= sprintf "%d\n%s\n%s\n", $h,$ctx,$str; - map { $entry .= sprintf "%x\n", $_; } @d; + my $key= join ' ', $ctx, map { sprintf "%x", $_; } @d; -#print STDERR "[[[[\n$ppm\n]]]]"; - - my $icon= pipeval($ppm, -# "pnmscale -xysize 78 $h", - 'pgmtopbm -threshold', - 'pnminvert', - 'pbmtoascii'); - - return ("$ctx",$str,$entry, '',$w,$icon); -} - -#---------- useful stuff ---------- - -sub pipeval ($@) { - my ($val, @cmds) = @_; - my (@pids); - - my $lastpipe; - - foreach my $cmd ('',@cmds) { - my $pipe= new IO::Pipe or die $!; - my $pid= fork(); defined $pid or die $!; - - if (!$pid) { - $pipe->writer(); - if (!$lastpipe) { - print $pipe $val or die $!; - exit 0; - } else { - open STDIN, '<&', $lastpipe or die $!; - open STDOUT, '>&', $pipe or die $!; - close $lastpipe or die $!; - close $pipe or die $!; - exec $cmd; die $!; - } - } - $pipe->reader(); - if ($lastpipe) { close $lastpipe or die $!; } - $lastpipe= $pipe; - push @pids, $pid; - } - - $!=0; { local ($/)=undef; $val= <$lastpipe>; } - defined $val or die $!; - $lastpipe->error and die $!; close $lastpipe or die $!; - - foreach my $cmd ('(paste)', @cmds) { - my $pid= shift @pids; - waitpid($pid,0) == $pid or die "$pid $? $!"; - $?==0 or $?==13 or die "$cmd $?"; - } - return $val; + return ($ctx,$str,$ppm,$key,$str); } #---------- main program ---------- -my $path= path_info(); +my $dict= param('dict'); my $entry_in= param('entry'); defined $entry_in or die; -my $owner= `whoami`; $? and die $?; -chomp $owner; - -my $kind; - -if ($path =~ /(pixmap|char)/) { - $kind=$1; +my $ocean= param('ocean'); +my $pirate= param('pirate'); +if (defined $ocean && defined $pirate) { + $pirate= "$ocean - $pirate"; } else { - die "$path ?"; + $pirate= $ENV{'REMOTE_ADDR'}; + my $fwdf= $ENV{'HTTP_X_FORWARDED_FOR'}; + if (defined $fwdf) { + $fwdf =~ s/\s//g; + $fwdf =~ s/[^0-9.,]/?/g; + $pirate= "$fwdf,$pirate"; + } } -my ($ctx,$def,$entry,$icon,$width,$whole)= &{"parseentryin__$kind"}($entry_in); - -$icon =~ s/^/ /mg; +my $du=$ENV{'YPPSC_DICTUPDATES'}; +chdir $du or die "$du $!" + if defined $du; -my $email= < $fn_t" or die "$fn_t $!"; +(stat F) or die $!; +my $fn_i= sprintf "_update.$$-%016x.rdy", (stat _)[1]; -my $lw= 79; +print F "ypp-sc-tools dictionary update v1\n"; -while ($whole =~ m/../) { - my $lhs= $whole; - $lhs =~ s/^(.{0,$lw}).*$/$1/mg; - $whole =~ s/^.{1,$lw}//mg; -#print STDERR "[[[[[$lhs########$whole]]]]]\n"; - $email .= $lhs; +foreach my $v ($pirate,$dict,$ctx,$def,$image,$key,$val) { + printf F "%d\n", length($v) or die $!; + print F $v,"\n" or die $!; } -END - ; +close F or die $!; + +my @tm= localtime; +my $tm= strftime "%Y-%m-%d %H:%M:%S %Z", @tm; -my $cutline= "-8<-\n"; -$email .= $cutline.$entry.$cutline; +open L, ">> _dict.log" or die $!; +my $ll= sprintf "%s %-6s %-31s %s %s\n", $tm, $dict, $pirate, $fn_i, "submit"; +print L $ll or die $!; +close L or die $!; -print $email or die $!; +rename $fn_t, $fn_i or die "$fn_t $fn_i $!";