diff -r 7c11c3d8d025 -r 44b0e894b7ab deprecated/buildtools/buildsystemtools/genxml.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/deprecated/buildtools/buildsystemtools/genxml.pl Wed Oct 27 19:35:19 2010 +0800 @@ -0,0 +1,238 @@ +# Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). +# All rights reserved. +# This component and the accompanying materials are made available +# under the terms of "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Nokia Corporation - initial contribution. +# +# Contributors: +# +# Description: +# Script to Generate the XML command file from the xml files +# +# + +use strict; +use FindBin; # for FindBin::Bin +use Getopt::Long; +use File::Copy; + +use lib $FindBin::Bin; +use lib "$FindBin::Bin/lib"; + +# Process the commandline +my ($iDataSource, $iDataOutput, $iLogFile, $iSourceDir, $iReallyClean, + $iClean, $iXmlSource, $iConfName, $iMergedXml, $iValidate, + $iTextOutput, $iCBROutput, $iFilter, $iEffectiveDir) = ProcessCommandLine(); + +if (scalar(@$iXmlSource)) +{ + use GenXml; + &GenXml::Start($iXmlSource, $iDataOutput, $iLogFile, $iSourceDir, + $iConfName, $iMergedXml, $iValidate, $iTextOutput, $iCBROutput, $iFilter, $iEffectiveDir); +} else { + use GenBuild; + # Start the generation of the XML + print "Warning old .txt file input is being used\n"; + &GenBuild::Start($iDataSource, $iDataOutput, $iLogFile, $iSourceDir, $iReallyClean, $iClean); +} + + +# ProcessCommandLine +# +# Inputs +# +# Outputs +# @iDataSource array of multiple (txt file(s) to process) +# $iDataOutput (XML file to generate) +# $iLogFile (Log file to put processing errors) +# $iSourceDir (Location of Source) +# $iReallyClean (script to run the "abld reallyclean" command) +# $iClean (script to run the "abld clean" command) +# @iXmlSource array of multiple (XML file(s) to process) +# $iConfName (Name of configuration to generate) +# $iMergedXml - Hidden option to save the output of the merging xml process for debug use +# $iValidate (Just validate the input) +# $iText (txt file to generate) +# $iFilter (filter to apply before generating merged XML file) +# $iEffectiveDir (location at which source will be used) +# +# Description +# This function processes the commandline + +sub ProcessCommandLine { + my ($iHelp, $iPort, @iDataSource, $iLogFile, $iSourceDir, $iReallyClean, $iClean, + @iXmlSource, $iConfName, $iMergedXml, $iValidate, $iTextOutput, $iCBROutput, + $iFilter, $iEffectiveDir); + GetOptions( + 'h' => \$iHelp, + 'd=s@' =>\@iDataSource, + 'o=s' => \$iDataOutput, + 'l=s' => \$iLogFile, + 's=s' => \$iSourceDir, + 'e=s' => \$iEffectiveDir, + 'r=s' => \$iReallyClean, + 'c=s' => \$iClean, # or $iCBROutput in XML input mode + 'x=s@' =>\@iXmlSource, + 'n=s' => \$iConfName, + 'm=s' => \$iMergedXml, + 'v' =>\$iValidate, + 't=s' => \$iTextOutput, + 'f=s' => \$iFilter); + + Usage() if ($iHelp); + + Usage("Must specify the root of the source tree with -s") if (!defined $iSourceDir); + Usage("Must specify at least one input file") if ((!@iDataSource) && (!@iXmlSource)); + Usage("$iSourceDir is not a directory") if (!-d $iSourceDir); + + if (scalar @iXmlSource) + { + # Validation of options for XML input + + Usage("Can't mix -d and -x") if (scalar @iDataSource); + + $iCBROutput = $iClean; # deal with ambiguity in -c option + $iClean = ""; + + if ((!defined $iMergedXml) && (!defined $iDataOutput) + && (!defined $iTextOutput) && (!defined $iCBROutput)) + { + Usage("Must specify at least one output file") if (!defined $iValidate); + } + else + { + Usage("Can't specify output files with -v") if (defined $iValidate); + } + if (defined $iDataOutput || defined $iTextOutput) + { + Usage("Must specify configuration for XML or list output") if (!defined $iConfName); + } + Usage("Can't specify reallyclean files with -x") if (defined $iReallyClean); + + $iEffectiveDir = $iSourceDir if (!defined $iEffectiveDir); + } + else + { + # Validation of options for component list input + + Usage("Must specify a logfile with -l") if (!defined $iLogFile); + Usage("Can't request validation on non-XML input") if (defined $iValidate); + Usage("Can't specify merged or text output with -d") if (defined $iTextOutput || defined $iMergedXml); + Usage ("Can't specify a filter for non-XML input") if (defined $iFilter); + Usage ("Can't specify a configuration for non-XML input") if (defined $iConfName); + } + + foreach my $iFile (@iDataSource) + { + if (! -e $iFile) + { + die "Cannot open $iFile"; + } + } + + foreach my $iFile (@iXmlSource) + { + if (! -e $iFile) + { + die "Cannot open $iFile"; + } + } + + # Backup existing files + + &backupFile($iLogFile); + &backupFile($iDataOutput); + &backupFile($iMergedXml); + &backupFile($iTextOutput); + &backupFile($iCBROutput); + &backupFile($iReallyClean); + &backupFile($iClean); + + return(\@iDataSource, $iDataOutput, $iLogFile, $iSourceDir, $iReallyClean, $iClean, \@iXmlSource, $iConfName, $iMergedXml, $iValidate, $iTextOutput, $iCBROutput, $iFilter, $iEffectiveDir); +} + +# backupFile +# +# Inputs +# $iFile - filename to backup +# +# Outputs +# +# Description +# This function renames a file with the .baknn extension, if necessary +sub backupFile +{ + my ($iFile) = @_; + + return if (!$iFile || !-e $iFile); + + my ($iBak) = $iFile.".bak"; + my ($i, $freefilename); + # Loop until you find a free file name by increamenting the number on the end of the .bak extension + while (!$freefilename) + { + if (-e $iBak.$i) + { + $i++; + } else { + $iBak .= $i; + $freefilename = 1; + } + } + print "WARNING: $iFile already exists, creating backup of original with new name of $iBak\n"; + move($iFile,$iBak) or die "Could not backup $iFile to $iBak because of: $!\n"; +} + +# Usage +# +# Output Usage Information. +# + +sub Usage { + my ($reason) = @_; + + print "ERROR: $reason\n" if ($reason); + print <