casa
$Rev:20696$
|
00001 //# MSArrayGram.h: Grammar for ms scan sub-expressions 00002 //# Copyright (C) 1998 00003 //# Associated Universities, Inc. Washington DC, USA. 00004 //# 00005 //# This library is free software; you can redistribute it and/or modify it 00006 //# under the terms of the GNU Library General Public License as published by 00007 //# the Free Software Foundation; either version 2 of the License, or (at your 00008 //# option) any later version. 00009 //# 00010 //# This library is distributed in the hope that it will be useful, but WITHOUT 00011 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00012 //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00013 //# License for more details. 00014 //# 00015 //# You should have received a copy of the GNU Library General Public License 00016 //# along with this library; if not, write to the Free Software Foundation, 00017 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. 00018 //# 00019 //# Correspondence concerning AIPS++ should be addressed as follows: 00020 //# Internet email: aips2-request@nrao.edu. 00021 //# Postal address: AIPS++ Project Office 00022 //# National Radio Astronomy Observatory 00023 //# 520 Edgemont Road 00024 //# Charlottesville, VA 22903-2475 USA 00025 //# 00026 //# $Id: MSArrayGram.h 20652 2009-07-06 05:04:32Z Malte.Marquarding $ 00027 00028 #ifndef MS_MSARRAYGRAM_H 00029 #define MS_MSARRAYGRAM_H 00030 00031 00032 //# Includes 00033 #include <casa/BasicSL/String.h> 00034 00035 namespace casa { //# NAMESPACE CASA - BEGIN 00036 00037 //# Forward Declarations 00038 class MeasurementSet; 00039 class TableExprNode; 00040 00041 // <summary> 00042 // Global functions for flex/bison scanner/parser for MSArrayGram 00043 // </summary> 00044 00045 // <use visibility=local> 00046 00047 // <reviewed reviewer="" date="" tests=""> 00048 // </reviewed> 00049 00050 // <prerequisite> 00051 //# Classes you should understand before using this one. 00052 // <li> MSArrayGram.l and .y (flex and bison grammar) 00053 // </prerequisite> 00054 00055 // <synopsis> 00056 // Global functions are needed to define the input of the flex scanner 00057 // and to start the bison parser. 00058 // The input is taken from a string. 00059 // </synopsis> 00060 00061 // <motivation> 00062 // It is necessary to be able to give an image expression in ASCII. 00063 // This can be used in glish. 00064 // </motivation> 00065 // <todo asof="$DATE:$"> 00066 //# A List of bugs, limitations, extensions or planned refinements. 00067 // </todo> 00068 00069 00070 // <group name=MSArrayGramFunctions> 00071 00072 // Declare the bison parser (is implemented by bison command). 00073 TableExprNode msArrayGramParseCommand (const MeasurementSet *ms, const String& command, 00074 Vector<Int>& idList, Int maxArrays=1000); 00075 00076 // The yyerror function for the parser. 00077 // It throws an exception with the current token. 00078 void MSArrayGramerror (const char*); 00079 00080 // Give the table expression node. 00081 // const TableExprNode *msArrayGramParseNode(); 00082 // void msArrayGramParseDeleteNode(); 00083 00084 // Give the current position in the string. 00085 // This can be used when parse errors occur. 00086 Int& msArrayGramPosition(); 00087 00088 // Declare the input routine for flex/bison. 00089 int msArrayGramInput (char* buf, int max_size); 00090 00091 // A function to remove escaped characters. 00092 //String msArrayGramRemoveEscapes (const String& in); 00093 00094 // A function to remove quotes from a quoted string. 00095 //String msArrayGramRemoveQuotes (const String& in); 00096 00097 // </group> 00098 00099 } //# NAMESPACE CASA - END 00100 00101 #endif