Blame view
tools/sctk-2.4.10/src/ctmValidator/ctmValidator.pl
4.78 KB
8dcb6dfcb first commit |
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 |
#!/usr/bin/perl -w # CTMVALIDATOR # Author: Jerome Ajot # # This software was developed at the National Institute of Standards and Technology by # employees of the Federal Government in the course of their official duties. Pursuant # to title 17 Section 105 of the United States Code this software is not subject to # copyright protection and is in the public domain. CTMVALIDATOR is an experimental system. # NIST assumes no responsibility whatsoever for its use by other parties, and makes no # guarantees, expressed or implied, about its quality, reliability, or any other # characteristic. We would appreciate acknowledgement if the software is used. # # THIS SOFTWARE IS PROVIDED "AS IS." With regard to this software, NIST MAKES NO EXPRESS # OR IMPLIED WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING MERCHANTABILITY, # OR FITNESS FOR A PARTICULAR PURPOSE. use strict; use Getopt::Long; use Data::Dumper; my $VERSION = "3"; my $USAGE = " $0 [-l <language>] [-h] -i <CTM file> ". "Version: $VERSION ". "Description: This Perl program (version $VERSION) validates a given CTM file. ". "\tNote that the program will exit after it finds all the syntax errors. ". "Options: ". " -l <language> : check regarding the laguage (default: english) ". " -h : print this help message ". "Input: ". " -i <CTM file>: a CTM file "; # List the defined types my %TYPES; $TYPES{"lex"} = 1; $TYPES{"frag"} = 1; $TYPES{"fp"} = 1; $TYPES{"un-lex"} = 1; $TYPES{"for-lex"} = 1; $TYPES{"non-lex"} = 1; $TYPES{"misc"} = 1; $TYPES{"noscore"} = 1; # Number of fields my $NUM_FIELDS = 8; my $MIN_FIELDS = 5; my $inputfile = ""; my $language = "english"; GetOptions ( 'i=s' => \$inputfile, 'l=s' => \$language, 'h' => sub { print $USAGE; exit }, ); if($inputfile eq "") { print $USAGE; exit; } open(CTMFILE, $inputfile) or die "Unable to open for read ctm file '$inputfile'"; my $errors = 0; my $line = 0; while(<CTMFILE>) { chomp; $line++; # Comments # you can have plenty of those next if($_ =~ /^;;/); my @ctm_record = split(/\s+/, $_); # print scalar(@ctm_record)." $_ "; if(scalar(@ctm_record) < $MIN_FIELDS){ print "ERROR: [line $line] ctm record must have at least $MIN_FIELDS fields and no whitespace at the beginning "; $errors++; } elsif(scalar(@ctm_record) > $NUM_FIELDS) { print "ERROR: [line $line] ctm record must have no more than $NUM_FIELDS fields and no whitespace at the beginning "; $errors++; } else { my $source = $ctm_record[0]; my $channel = $ctm_record[1]; my $beg_time = $ctm_record[2]; my $duration = $ctm_record[3]; my $token = $ctm_record[4]; my $conf = (defined($ctm_record[5]) ? $ctm_record[5] : 0.0); my $type = (defined($ctm_record[6]) ? $ctm_record[6] : "lex"); my $speaker = (defined($ctm_record[7]) ? $ctm_record[7] : "spkr"); if($source !~ /^[A-Za-z0-9_-]+$/) { print "ERROR: [line $line] source '$source' must have alphanumeric, hyphens (-) and underscore (_) characters only "; $errors++; } if($channel !~ /^(\d+|[AB])$/) { print "ERROR: [line $line] channel '$channel' must be numeric only "; $errors++; } if ($token =~ /(<ALT>|<ALT_BEGIN>|<ALT_END>)/){ if($beg_time !~ /^\*$/) { print "ERROR: [line $line] begin '$beg_time' time for ALT Tag must be an asterisk /*/ "; $errors++; } if($duration !~ /^\*$/) { print "ERROR: [line $line] duration '$duration' time for ALT Tag must be an asterisk /*/ "; $errors++; } } else { if($beg_time !~ /^(\d+(\.\d+)?)$/) { print "ERROR: [line $line] begin '$beg_time' time must floating point value "; $errors++; } if($duration !~ /^(\d+(\.\d+)?)$/) { print "ERROR: [line $line] duration '$duration' time must floating point value "; $errors++; } if( (lc($language) eq "english") && ($type eq "lex") ) { if( ($token !~ /^[A-Za-z-\']+$/) && ($token !~ /^[A-Za-z]\./) && ($token !~ /@/) && ($token !~ /%(BCN?ACK|HESITATION)/i)) { print "ERROR: [line $line] token '$token' must have alphabetic, hyphens (-) and apostrophes (') characters only "; $errors++; } } } if($conf !~ /^(\d+(\.\d+)?)$/) { print "ERROR: [line $line] confidence '$conf' time must floating point value "; $errors++; } if(!defined($TYPES{$type})) { print "ERROR: [line $line] type '$type' is not a known type "; $errors++; } if($speaker !~ /^[A-Za-z0-9_-]+$/) { print "ERROR: [line $line] speaker '$speaker' must have alphanumeric, hyphens (-) and underscore (_) characters only "; $errors++; } } } close(CTMFILE); if($errors > 0){ print "FATAL: Validation '$inputfile' failed due to the $errors previous error(s) "; exit 1; } else { print "Validated $inputfile "; exit 0; } |