casacore
Loading...
Searching...
No Matches
MSSpwGram.h
Go to the documentation of this file.
1//# MSSpwGram.h: Grammar for ms field sub-expressions
2//# Copyright (C) 1998
3//# Associated Universities, Inc. Washington DC, USA.
4//#
5//# This library is free software; you can redistribute it and/or modify it
6//# under the terms of the GNU Library General Public License as published by
7//# the Free Software Foundation; either version 2 of the License, or (at your
8//# option) any later version.
9//#
10//# This library is distributed in the hope that it will be useful, but WITHOUT
11//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13//# License for more details.
14//#
15//# You should have received a copy of the GNU Library General Public License
16//# along with this library; if not, write to the Free Software Foundation,
17//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18//#
19//# Correspondence concerning AIPS++ should be addressed as follows:
20//# Internet email: casa-feedback@nrao.edu.
21//# Postal address: AIPS++ Project Office
22//# National Radio Astronomy Observatory
23//# 520 Edgemont Road
24//# Charlottesville, VA 22903-2475 USA
25
26#ifndef MS_MSSPWGRAM_H
27#define MS_MSSPWGRAM_H
28
29
30//# Includes
31#include <casacore/casa/aips.h>
32#include <casacore/casa/BasicSL/String.h>
33
34namespace casacore { //# NAMESPACE CASACORE - BEGIN
35
36 //# Forward Declarations
37 class MeasurementSet;
38 class TableExprNode;
39
40 // <summary>
41 // Global functions for flex/bison scanner/parser for MSSpwGram
42 // </summary>
43
44 // <use visibility=local>
45
46 // <reviewed reviewer="" date="" tests="">
47 // </reviewed>
48
49 // <prerequisite>
50 //# Classes you should understand before using this one.
51 // <li> MSSpwGram.l and .y (flex and bison grammar)
52 // </prerequisite>
53
54 // <synopsis>
55 // Global functions are needed to define the input of the flex scanner
56 // and to start the bison parser.
57 // The input is taken from a string.
58 // </synopsis>
59
60 // <motivation>
61 // It is necessary to be able to give an image expression in ASCII.
62 // This can be used in glish.
63 // </motivation>
64 // <todo asof="$DATE:$">
65 //# A List of bugs, limitations, extensions or planned refinements.
66 // </todo>
67
68
69 // <group name=MSSpwGramFunctions>
71 // Declare the bison parser (is implemented by bison command).
72 int msSpwGramParseCommand (const MeasurementSet *ms, const String& command);
73 int msSpwGramParseCommand (const MeasurementSet *ms, const String& command,
74 Vector<Int>& selectedIDs, Matrix<Int>& selectedChanIDs);
75 int msSpwGramParseCommand (const MSSpectralWindow& spwSubTable, const MSDataDescription& ddSubTable,
76 const TableExprNode& colAsTEN,
77 const String& command,
78 Vector<Int>& selectedIDs,
79 Matrix<Int>& selectedChans,
80 Vector<Int>& selectedDDIDs) ;
81
82 // The yyerror function for the parser.
83 // It throws an exception with the current token.
84 void MSSpwGramerror (const char*);
85
86 // Give the table expression node.
89
90 // Give the current position in the string.
91 // This can be used when parse errors occur.
93
94 // Declare the input routine for flex/bison.
95 int msSpwGramInput (char* buf, int max_size);
96
97 // A function to remove escaped characters.
98 //String msSpwGramRemoveEscapes (const String& in);
99
100 // A function to remove quotes from a quoted string.
101 //String msSpwGramRemoveQuotes (const String& in);
102
103 // </group>
104
105} //# NAMESPACE CASACORE - END
106
107#endif
String: the storage and methods of handling collections of characters.
Definition String.h:223
this file contains all the compiler specific defines
Definition mainpage.dox:28
int Int
Definition aipstype.h:48
int msSpwGramParseCommand(const MeasurementSet *ms, const String &command)
Declare the bison parser (is implemented by bison command).
void MSSpwGramerror(const char *)
The yyerror function for the parser.
int msSpwGramParseCommand(const MSSpectralWindow &spwSubTable, const MSDataDescription &ddSubTable, const TableExprNode &colAsTEN, const String &command, Vector< Int > &selectedIDs, Matrix< Int > &selectedChans, Vector< Int > &selectedDDIDs)
int msSpwGramParseCommand(const MeasurementSet *ms, const String &command, Vector< Int > &selectedIDs, Matrix< Int > &selectedChanIDs)
int msSpwGramInput(char *buf, int max_size)
Declare the input routine for flex/bison.
Int & msSpwGramPosition()
Give the current position in the string.
const TableExprNode * msSpwGramParseNode()
Give the table expression node.