casacore
Loading...
Searching...
No Matches
TableGram.h
Go to the documentation of this file.
1//# TableGram.h: Grammar for table command lines
2//# Copyright (C) 1993,1994,1995,1997,1999
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 TABLES_TABLEGRAM_H
27#define TABLES_TABLEGRAM_H
28
29//# Includes
30#include <casacore/casa/aips.h>
31#include <casacore/casa/BasicSL/String.h>
32#include <casacore/casa/Quanta/MVTime.h>
33
34namespace casacore { //# NAMESPACE CASACORE - BEGIN
35
36//# Forward Declarations
37
38
39// <summary>
40// Global functions for flex/bison scanner/parser for TableGram
41// </summary>
42
43// <use visibility=local>
44
45// <reviewed reviewer="UNKNOWN" date="before2004/08/25" tests="tTableGram">
46// </reviewed>
47
48// <prerequisite>
49//# Classes you should understand before using this one.
50// <li> TableGram.l and .y (flex and bison grammar)
51// </prerequisite>
52
53// <synopsis>
54// Global functions are needed to define the input of the flex scanner
55// and to start the bison parser.
56// The input is taken from a string.
57// </synopsis>
58
59// <motivation>
60// It is necessary to be able to give a table select command in ASCII.
61// This can be used in a CLI or in the table browser to get a subset
62// of a table or to sort a table.
63// </motivation>
64
65// <todo asof="$DATE:$">
66//# A List of bugs, limitations, extensions or planned refinements.
67// </todo>
68
69// <group name=TableGramFunctions>
71// Declare the bison parser (is implemented by bison command).
72int tableGramParseCommand (const String& command);
73
74// The yyerror function for the parser.
75// It throws an exception with the current token.
76void TableGramerror (const char*);
77
78// Give the current position in the string.
79// This can be used when parse errors occur.
81
82// Declare the input routine for flex/bison.
83int tableGramInput (char* buf, int max_size);
84
85// A function to remove escape characters.
87
88// A function to remove escape characters and quotes.
90
91// A function to remove quotes from a quoted string.
93
94// A function to parse a date/time string.
96
97// A function to parse a time/position string.
98// The value is returned in radians.
100
101// </group>
102
103
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
double Double
Definition aipstype.h:53
void TableGramerror(const char *)
The yyerror function for the parser.
int tableGramInput(char *buf, int max_size)
Declare the input routine for flex/bison.
String tableGramRemoveEscapes(const String &in)
A function to remove escape characters.
MVTime tableGramParseDateTime(const String &in)
A function to parse a date/time string.
int tableGramParseCommand(const String &command)
Declare the bison parser (is implemented by bison command).
Double tableGramParseTime(const String &in)
A function to parse a time/position string.
String tableGramRemoveQuotes(const String &in)
A function to remove quotes from a quoted string.
String tableGramRemoveEscapesQuotes(const String &in)
A function to remove escape characters and quotes.
Int & tableGramPosition()
Give the current position in the string.