casacore
Loading...
Searching...
No Matches
TaQLShow.h
Go to the documentation of this file.
1//# TaQLShow.h: Class to show various TaQL-related info
2//# Copyright (C) 2016
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_TAQLSHOW_H
27#define TABLES_TAQLSHOW_H
28
29//# Includes
30#include <casacore/casa/aips.h>
31#include <casacore/tables/TaQL/TaQLNodeRep.h>
32#include <casacore/casa/Quanta/UnitName.h>
33#include <casacore/casa/Arrays/Vector.h>
34#include <map>
35#include <ostream>
36
37namespace casacore { //# NAMESPACE CASACORE - BEGIN
38
39// <summary>
40// Class to show various TaQL-related info
41// </summary>
42
43// <use visibility=local>
44
45// <reviewed reviewer="" date="" tests="tTaQLNode">
46// </reviewed>
47
48// <prerequisite>
49//# Classes you should understand before using this one.
50// <li> <linkto group=TableGram.h#TableGramFunctions>TableGram</linkto>
51// <li> Note 199 describing
52// <a href="../notes/199.html">
53// TaQL</a>
54// </prerequisite>
55
56// <synopsis>
57// TaQLShow::getInfo is called by the TaQL help (or show) command.
58// It returns a string (with newlines) containing the requested help info.
59//
60// Note that a command like 'help func mscal' command calls the getInfo function in
61// the dynamically loaded mscal UDF library.
62// </synopsis>
63
64// <motivation>
65// It is nice if the user can get online TaQL help.
66// </motivation>
67
69{
70public:
71 static String getInfo (const Vector<String>& parts,
72 const TaQLStyle& style);
73 static String showTable (const Vector<String>& parts);
74 static String showCommand (const String& cmd);
75 static String showFuncs (const String& type,
76 const Vector<String>& parts,
77 const TaQLStyle& style);
78 static void showUnitKind (std::ostream& os, const UnitVal& kind,
79 const std::map<String, UnitName>& units);
80 static String showUnits (const String& type);
81 static String showMeasTypes (const String& type);
82};
83
84
85} //# NAMESPACE CASACORE - END
86
87#endif
String: the storage and methods of handling collections of characters.
Definition String.h:223
static void showUnitKind(std::ostream &os, const UnitVal &kind, const std::map< String, UnitName > &units)
static String showUnits(const String &type)
static String showTable(const Vector< String > &parts)
static String getInfo(const Vector< String > &parts, const TaQLStyle &style)
static String showCommand(const String &cmd)
static String showMeasTypes(const String &type)
static String showFuncs(const String &type, const Vector< String > &parts, const TaQLStyle &style)
this file contains all the compiler specific defines
Definition mainpage.dox:28