mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 20:46:59 +03:00
c7b78dfc2a
only the gzipped exists. git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1324 1f5c12ca-751b-0410-a591-d2e778427230
115 lines
3.0 KiB
Perl
Executable File
115 lines
3.0 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
# $Id$
|
|
# given a moses.ini file, creates a wiseln of it and all the included bits
|
|
# in the current directory
|
|
|
|
# relies on wiseln, a wise variant of linking. You might just use ln -s instead.
|
|
|
|
use strict;
|
|
use Getopt::Long;
|
|
|
|
my @fixpath = ();
|
|
# specify search-replace pattern to fix paths.
|
|
# use a space to delimit source and target pathnames
|
|
GetOptions(
|
|
"fixpath=s" => \@fixpath,
|
|
);
|
|
my @fixrepls = map {
|
|
my ($fixsrc, $fixtgt) = split / /, $_;
|
|
print STDERR "Will replace >$fixsrc< with >$fixtgt<\n";
|
|
[ $fixsrc, $fixtgt ];
|
|
} @fixpath;
|
|
|
|
my $ini = shift;
|
|
die "usage!" if !defined $ini;
|
|
|
|
my %cnt; # count files per section
|
|
open INI, $ini or die "Can't read $ini";
|
|
open OUT, ">moses.ini" or die "Can't write ./moses.ini";
|
|
my $section = undef;
|
|
while (<INI>) {
|
|
if (/^\[([^\]]*)\]\s*$/) {
|
|
$section = $1;
|
|
}
|
|
if (/^[0-9]/) {
|
|
if ($section eq "ttable-file" || $section eq "lmodel-file") {
|
|
chomp;
|
|
my ($a, $b, $c, $fn) = split / /;
|
|
$cnt{$section}++;
|
|
$fn = fixpath($fn);
|
|
$fn = ensure_relative_to_origin($fn, $ini);
|
|
$fn = ensure_exists_or_gzipped_exists($fn);
|
|
my $suffix = ($fn =~ /\.gz$/ ? ".gz" : "");
|
|
safesystem("wiseln $fn ./$section.$cnt{$section}$suffix") or die;
|
|
$_ = "$a $b $c ./$section.$cnt{$section}$suffix\n";
|
|
}
|
|
if ($section eq "generation-file") {
|
|
chomp;
|
|
my ($a, $b, $c, $fn) = split / /;
|
|
$cnt{$section}++;
|
|
$fn = fixpath($fn);
|
|
$fn = ensure_exists_or_gzipped_exists($fn);
|
|
my $suffix = ($fn =~ /\.gz$/ ? ".gz" : "");
|
|
safesystem("wiseln $fn ./$section.$cnt{$section}$suffix") or die;
|
|
$_ = "$a $b $c ./$section.$cnt{$section}$suffix\n";
|
|
}
|
|
if ($section eq "distortion-file") {
|
|
chomp;
|
|
my $fn = $_;
|
|
$cnt{$section}++;
|
|
$fn = fixpath($fn);
|
|
$fn = ensure_relative_to_origin($fn, $ini);
|
|
$fn = ensure_exists_or_gzipped_exists($fn);
|
|
my $suffix = ($fn =~ /\.gz$/ ? ".gz" : "");
|
|
safesystem("wiseln $fn ./$section.$cnt{$section}$suffix") or die;
|
|
$_ = "./$section.$cnt{$section}$suffix\n";
|
|
}
|
|
}
|
|
print OUT $_;
|
|
}
|
|
close INI;
|
|
close OUT;
|
|
|
|
sub ensure_exists_or_gzipped_exists {
|
|
my $fn = shift;
|
|
return $fn if -e $fn;
|
|
my $tryfn = $fn.".gz";
|
|
return $tryfn if -e $tryfn;
|
|
die "$0:$ini:Neither file $fn nor $tryfn found.";
|
|
}
|
|
|
|
sub fixpath {
|
|
my $fn = shift;
|
|
foreach my $pair (@fixrepls) {
|
|
$fn =~ s/$pair->[0]/$pair->[1]/g;
|
|
}
|
|
return $fn;
|
|
}
|
|
|
|
sub safesystem {
|
|
print STDERR "Executing: @_\n";
|
|
system(@_);
|
|
if ($? == -1) {
|
|
print STDERR "Failed to execute: @_\n $!\n";
|
|
exit(1);
|
|
}
|
|
elsif ($? & 127) {
|
|
printf STDERR "Execution of: @_\n died with signal %d, %s coredump\n",
|
|
($? & 127), ($? & 128) ? 'with' : 'without';
|
|
}
|
|
else {
|
|
my $exitcode = $? >> 8;
|
|
print STDERR "Exit code: $exitcode\n" if $exitcode;
|
|
return ! $exitcode;
|
|
}
|
|
}
|
|
|
|
sub ensure_relative_to_origin {
|
|
my $target = shift;
|
|
my $originfile = shift;
|
|
return $target if $target =~ /^\/|^~/; # the target path is absolute already
|
|
$originfile =~ s/[^\/]*$//;
|
|
return $originfile."/".$target;
|
|
}
|