First public contribution.
2 # Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 # This component and the accompanying materials are made available
5 # under the terms of "Eclipse Public License v1.0"
6 # which accompanies this distribution, and is available
7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 # Initial Contributors:
10 # Nokia Corporation - initial contribution.
22 @PARSER::ISA=qw(Exporter);
23 @PARSER::EXPORT=qw(nextNonEmptyStrippedDownLine ungetNonEmptyStrippedDownLine);
25 # @PARSER::nextNonEmptyStrippedDownLine is a global variable in this package
29 my $strippedDownLine=shift;
30 $strippedDownLine=~s/#.*$//;
31 $strippedDownLine=~s/^\s+//;
32 $strippedDownLine=~s/\s+$//;
33 return $strippedDownLine;
36 sub nextNonEmptyStrippedDownLine
39 if (defined(@PARSER::nextNonEmptyStrippedDownLine) && (@PARSER::nextNonEmptyStrippedDownLine>0))
41 if (@{$PARSER::nextNonEmptyStrippedDownLine[0]}!=2)
44 die("Error: internal error in \"PARSER.PM\"\n");
46 return @{shift(@PARSER::nextNonEmptyStrippedDownLine)};
50 while ($line=<$fileHandle>)
53 my $strippedDownBuffer=&strippedDownLine($buffer);
54 if ($strippedDownBuffer!~/\\$/)
56 $strippedDownBuffer=~s/\\\n/ /g;
57 if ($strippedDownBuffer ne '')
59 return ($buffer, $strippedDownBuffer);
67 die("Error: file ends with a \"\\\"\n");
72 sub ungetNonEmptyStrippedDownLine
76 unshift(@PARSER::nextNonEmptyStrippedDownLine, $arrayCopy);