Newer
Older
#!/usr/bin/env perl
use warnings; #sed replacement for -w perl parameter
Dan Povey
committed
# Copyright 2012 Johns Hopkins University (Author: Daniel Povey)
# Apache 2.0.
# This program is a bit like ./sym2int.pl in that it applies a map
# to things in a file, but it's a bit more general in that it doesn't
# assume the things being mapped to are single tokens, they could
# be sequences of tokens. See the usage message.
Dan Povey
committed
if (@ARGV > 0 && $ARGV[0] eq "-f") {
Dan Povey
committed
$field_spec = shift @ARGV;
if ($field_spec =~ m/^\d+$/) {
$field_begin = $field_spec - 1; $field_end = $field_spec - 1;
}
if ($field_spec =~ m/^(\d*)[-:](\d*)/) { # accept e.g. 1:10 as a courtesty (properly, 1-10)
if ($1 ne "") {
$field_begin = $1 - 1; # Change to zero-based indexing.
}
if ($2 ne "") {
$field_end = $2 - 1; # Change to zero-based indexing.
}
}
if (!defined $field_begin && !defined $field_end) {
die "Bad argument to -f option: $field_spec";
}
}
Karel Vesely
committed
# Mapping is obligatory
$permissive = 0;
if (@ARGV > 0 && $ARGV[0] eq '--permissive') {
shift @ARGV;
# Mapping is optional (missing key is printed to output)
$permissive = 1;
}
Dan Povey
committed
if(@ARGV != 1) {
print STDERR "Invalid usage: " . join(" ", @ARGV) . "\n";
Dan Povey
committed
print STDERR "Usage: apply_map.pl [options] map <input >output\n" .
"options: [-f <field-range> ]\n" .
"Applies the map 'map' to all input text, where each line of the map\n" .
"is interpreted as a map from the first field to the list of the other fields\n" .
"Note: <field-range> can look like 4-5, or 4-, or 5-, or 1, it means the field\n" .
"range in the input to apply the map to.\n" .
Dan Povey
committed
"e.g.: echo A B | apply_map.pl a.txt\n" .
"where a.txt is:\n" .
"A a1 a2\n" .
"B b\n" .
"will produce:\n" .
"a1 a2 b\n";
Dan Povey
committed
exit(1);
}
($map) = @ARGV;
open(M, "<$map") || die "Error opening map file $map: $!";
while (<M>) {
@A = split(" ", $_);
@A >= 1 || die "apply_map.pl: empty line.";
$i = shift @A;
$o = join(" ", @A);
$map{$i} = $o;
}
while(<STDIN>) {
@A = split(" ", $_);
for ($x = 0; $x < @A; $x++) {
Dan Povey
committed
if ( (!defined $field_begin || $x >= $field_begin)
&& (!defined $field_end || $x <= $field_end)) {
$a = $A[$x];
Karel Vesely
committed
if (!defined $map{$a}) {
if (!$permissive) {
die "apply_map.pl: undefined key $a\n";
} else {
print STDERR "apply_map.pl: warning! missing key $a\n";
}
} else {
$A[$x] = $map{$a};
}
Dan Povey
committed
}
}
print join(" ", @A) . "\n";
}