1 cdf0e10cSrcweir#!/usr/bin/perl -w 2 *b31e36b3SAndrew Rist# ************************************************************* 3 *b31e36b3SAndrew Rist# 4 *b31e36b3SAndrew Rist# Licensed to the Apache Software Foundation (ASF) under one 5 *b31e36b3SAndrew Rist# or more contributor license agreements. See the NOTICE file 6 *b31e36b3SAndrew Rist# distributed with this work for additional information 7 *b31e36b3SAndrew Rist# regarding copyright ownership. The ASF licenses this file 8 *b31e36b3SAndrew Rist# to you under the Apache License, Version 2.0 (the 9 *b31e36b3SAndrew Rist# "License"); you may not use this file except in compliance 10 *b31e36b3SAndrew Rist# with the License. You may obtain a copy of the License at 11 *b31e36b3SAndrew Rist# 12 *b31e36b3SAndrew Rist# http://www.apache.org/licenses/LICENSE-2.0 13 *b31e36b3SAndrew Rist# 14 *b31e36b3SAndrew Rist# Unless required by applicable law or agreed to in writing, 15 *b31e36b3SAndrew Rist# software distributed under the License is distributed on an 16 *b31e36b3SAndrew Rist# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 *b31e36b3SAndrew Rist# KIND, either express or implied. See the License for the 18 *b31e36b3SAndrew Rist# specific language governing permissions and limitations 19 *b31e36b3SAndrew Rist# under the License. 20 *b31e36b3SAndrew Rist# 21 *b31e36b3SAndrew Rist# ************************************************************* 22 cdf0e10cSrcweir# 23 cdf0e10cSrcweir# langwrap - language wrapper for building resources 24 cdf0e10cSrcweir# 25 cdf0e10cSrcweir# $Id: langwrap,v 1.2 2008-08-18 13:10:41 vg Exp $ 26 cdf0e10cSrcweir 27 cdf0e10cSrcweiruse Getopt::Std; 28 cdf0e10cSrcweir 29 cdf0e10cSrcweir###### globals ###### 30 cdf0e10cSrcweir 31 cdf0e10cSrcweir$is_debug = 0; 32 cdf0e10cSrcweir$nfield = 0; 33 cdf0e10cSrcweir@LoL = (); 34 cdf0e10cSrcweir@command = (); 35 cdf0e10cSrcweir 36 cdf0e10cSrcweir###### main ###### 37 cdf0e10cSrcweir 38 cdf0e10cSrcweir# Version 39 cdf0e10cSrcweir$idStr = ' $Revision: 1.2 $ '; 40 cdf0e10cSrcweir$idStr =~ /Revision:\s+(\S+)\s+\$/ 41 cdf0e10cSrcweir ? ($langwrapRev = $1) : ($langwrapRev = "-"); 42 cdf0e10cSrcweir 43 cdf0e10cSrcweirprint "langwrap -- Version: $langwrapRev\n"; 44 cdf0e10cSrcweir 45 cdf0e10cSrcweir# Options 46 cdf0e10cSrcweir&check_options(); 47 cdf0e10cSrcweir 48 cdf0e10cSrcweir# parse command file 49 cdf0e10cSrcweir&parse_commandfile($opt_c); 50 cdf0e10cSrcweir 51 cdf0e10cSrcweir# create list with command lines 52 cdf0e10cSrcweir&create_commands(); 53 cdf0e10cSrcweir 54 cdf0e10cSrcweir# finally execute commands 55 cdf0e10cSrcweirforeach $cmd (@command) { 56 cdf0e10cSrcweir if ($is_debug) { 57 cdf0e10cSrcweir print $cmd . "\n"; 58 cdf0e10cSrcweir } else { 59 cdf0e10cSrcweir system($cmd); 60 cdf0e10cSrcweir $res = $? >> 8; 61 cdf0e10cSrcweir if ($res) { 62 cdf0e10cSrcweir print "langwrap: command execution failed with exitcode $res.\n"; 63 cdf0e10cSrcweir exit($res); 64 cdf0e10cSrcweir } 65 cdf0e10cSrcweir } 66 cdf0e10cSrcweir} 67 cdf0e10cSrcweir 68 cdf0e10cSrcweirexit(0); 69 cdf0e10cSrcweir 70 cdf0e10cSrcweir###### routines ###### 71 cdf0e10cSrcweir 72 cdf0e10cSrcweir### parse_commandfile() 73 cdf0e10cSrcweirsub parse_commandfile { 74 cdf0e10cSrcweir my($file) = shift; 75 cdf0e10cSrcweir my(@field); 76 cdf0e10cSrcweir 77 cdf0e10cSrcweir open(COMMAND, "<$file") or die "can�t open $file"; 78 cdf0e10cSrcweir 79 cdf0e10cSrcweir while (<COMMAND>) { 80 cdf0e10cSrcweir $line = $_; 81 cdf0e10cSrcweir chomp($line); 82 cdf0e10cSrcweir if ( ($line =~ //) || ($line =~ /^\r/) || ($line =~ /^#/) ) { 83 cdf0e10cSrcweir next; 84 cdf0e10cSrcweir } 85 cdf0e10cSrcweir 86 cdf0e10cSrcweir @field = split " ", $line; 87 cdf0e10cSrcweir push @LoL, [@field]; 88 cdf0e10cSrcweir if (!$nfield) { 89 cdf0e10cSrcweir $nfield = $#field + 1; 90 cdf0e10cSrcweir } else { 91 cdf0e10cSrcweir if ( $nfield != ($#field + 1) ) { 92 cdf0e10cSrcweir print "langwrap: error in <cmdfile>: every row must "; 93 cdf0e10cSrcweir print "have the same # of columns.\n"; 94 cdf0e10cSrcweir exit(3); 95 cdf0e10cSrcweir } 96 cdf0e10cSrcweir } 97 cdf0e10cSrcweir } 98 cdf0e10cSrcweir 99 cdf0e10cSrcweir close(COMMAND); 100 cdf0e10cSrcweir} 101 cdf0e10cSrcweir 102 cdf0e10cSrcweir### create_command() 103 cdf0e10cSrcweirsub create_commands() { 104 cdf0e10cSrcweir my($cmd, $cmdline, $arg_string, $ntempl); 105 cdf0e10cSrcweir 106 cdf0e10cSrcweir $cmd = shift @ARGV; 107 cdf0e10cSrcweir $arg_string = join(" ", @ARGV); 108 cdf0e10cSrcweir # just count the number of templates 109 cdf0e10cSrcweir $ntempl = ($arg_string =~ s/@\d+@/$&/eg); 110 cdf0e10cSrcweir if ( $ntempl >= $nfield ) { 111 cdf0e10cSrcweir print "lnagwrap: # of templates > # of fields in <cmdfile>.\n"; 112 cdf0e10cSrcweir exit(4); 113 cdf0e10cSrcweir } 114 cdf0e10cSrcweir 115 cdf0e10cSrcweir # create command lines 116 cdf0e10cSrcweir for $i (0..$#LoL) { 117 cdf0e10cSrcweir $cmdline = $arg_string; 118 cdf0e10cSrcweir $cmdline =~ s/@(\d+)@/$LoL[$i][$1]/eg; 119 cdf0e10cSrcweir push @command, $cmd . " " . $cmdline; 120 cdf0e10cSrcweir } 121 cdf0e10cSrcweir} 122 cdf0e10cSrcweir 123 cdf0e10cSrcweir### check_options() 124 cdf0e10cSrcweirsub check_options { 125 cdf0e10cSrcweir 126 cdf0e10cSrcweir if ( !getopts('c:') ) { 127 cdf0e10cSrcweir &usage(); 128 cdf0e10cSrcweir } 129 cdf0e10cSrcweir 130 cdf0e10cSrcweir if ( !$opt_c ) { 131 cdf0e10cSrcweir &usage(); 132 cdf0e10cSrcweir } 133 cdf0e10cSrcweir 134 cdf0e10cSrcweir if ( ! -r $opt_c ) { 135 cdf0e10cSrcweir print "langwrap: $opt_c is not a readable file.\n"; 136 cdf0e10cSrcweir exit(2); 137 cdf0e10cSrcweir } 138 cdf0e10cSrcweir 139 cdf0e10cSrcweir if ( $#ARGV < 1 ) { 140 cdf0e10cSrcweir print "langwrap: empty <template_string>.\n"; 141 cdf0e10cSrcweir &usage(); 142 cdf0e10cSrcweir } 143 cdf0e10cSrcweir} 144 cdf0e10cSrcweir 145 cdf0e10cSrcweir### usage() 146 cdf0e10cSrcweirsub usage { 147 cdf0e10cSrcweir print "Usage: langwrap -c cmdfile tool <template_string>\n"; 148 cdf0e10cSrcweir print "<template_string> is of form: ...\@1\@ .... \@2\@...\n"; 149 cdf0e10cSrcweir print "with \@<n>\@ template #n\n"; 150 cdf0e10cSrcweir exit(1); 151 cdf0e10cSrcweir} 152