casa
$Rev:20696$
|
00001 //# RecordExpr.h: Global functions to make a expression node for a record field 00002 //# Copyright (C) 2000 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: RecordExpr.h 20551 2009-03-25 00:11:33Z Malte.Marquarding $ 00027 00028 #ifndef TABLES_RECORDEXPR_H 00029 #define TABLES_RECORDEXPR_H 00030 00031 //# Includes 00032 #include <tables/Tables/ExprNode.h> 00033 #include <casa/Containers/RecordInterface.h> 00034 #include <casa/Containers/RecordDesc.h> 00035 00036 00037 00038 namespace casa { //# NAMESPACE CASA - BEGIN 00039 00040 // <summary> 00041 // Global functions to make a expression node for a record field. 00042 // </summary> 00043 00044 // <use visibility=export> 00045 00046 // <reviewed reviewer="UNKNOWN" date="before2004/08/25" tests=""> 00047 // </reviewed> 00048 // 00049 // <prerequisite> 00050 //# Classes you should understand before using this one. 00051 // <li> TableExprNode 00052 // </prerequisite> 00053 00054 // <synopsis> 00055 // This file contains a few global functions to construct an expression 00056 // node for a field in a record. 00057 // </synopsis> 00058 00059 00060 // <group name=RecordExpr> 00061 00062 // Make a record expression node for the given field in the record description. 00063 // <group> 00064 TableExprNode makeRecordExpr (const RecordDesc& desc, 00065 Int fieldNumber); 00066 TableExprNode makeRecordExpr (const RecordDesc& desc, 00067 const String& fieldName); 00068 // </group> 00069 00070 // Make a record expression node for the given field in the record. 00071 inline TableExprNode makeRecordExpr (const RecordInterface& record, 00072 Int fieldNumber) 00073 { return makeRecordExpr (record.description(), fieldNumber); } 00074 00075 00076 // Make a record expression node for the given field in the record. 00077 // The field can be a field in the record itself, but it can also be 00078 // a field in a subrecord (or subsubrecord, etc.). If it is not a field 00079 // in the record itself, the name must define the 'path' to the field 00080 // in the subrecord by preceeding the field name with the name(s) of the 00081 // subrecord(s) separated by dots. E.g. <src>sub1.sub2.fld</src> 00082 TableExprNode makeRecordExpr (const RecordInterface& record, 00083 const String& fieldName); 00084 // </group> 00085 00086 00087 00088 00089 } //# NAMESPACE CASA - END 00090 00091 #endif