File: TaQLNodeDer.h

package info (click to toggle)
casacore 3.8.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 51,908 kB
  • sloc: cpp: 471,569; fortran: 16,372; ansic: 7,416; yacc: 4,714; lex: 2,346; sh: 1,865; python: 629; perl: 531; sed: 499; csh: 201; makefile: 32
file content (1380 lines) | stat: -rw-r--r-- 44,091 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
//# TaQLNodeDer.h: Specialized nodes in the raw TaQL parse tree
//# Copyright (C) 2005
//# Associated Universities, Inc. Washington DC, USA.
//#
//# This library is free software; you can redistribute it and/or modify it
//# under the terms of the GNU Library General Public License as published by
//# the Free Software Foundation; either version 2 of the License, or (at your
//# option) any later version.
//#
//# This library is distributed in the hope that it will be useful, but WITHOUT
//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
//# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
//# License for more details.
//#
//# You should have received a copy of the GNU Library General Public License
//# along with this library; if not, write to the Free Software Foundation,
//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
//#
//# Correspondence concerning AIPS++ should be addressed as follows:
//#        Internet email: casa-feedback@nrao.edu.
//#        Postal address: AIPS++ Project Office
//#                        National Radio Astronomy Observatory
//#                        520 Edgemont Road
//#                        Charlottesville, VA 22903-2475 USA

#ifndef TABLES_TAQLNODEDER_H
#define TABLES_TAQLNODEDER_H

//# Includes
#include <casacore/casa/aips.h>
#include <casacore/tables/TaQL/TaQLNode.h>
#include <casacore/casa/BasicSL/Complex.h>
#include <casacore/casa/BasicSL/String.h>
#include <casacore/casa/Utilities/Regex.h>
#include <casacore/casa/Quanta/MVTime.h>
#include <casacore/casa/Containers/Block.h>
#include <vector>
#include <iostream>

namespace casacore { //# NAMESPACE CASACORE - BEGIN


// <summary>
// Raw TaQL parse tree node defining a constant value.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding a constant expression or a table name.
// The types supported are Bool, Int, Double, DComplex, String, and MVTime.
// Note that a keyword or column name is represented by TaQLKeyColNodeRep.
// </synopsis> 

class TaQLConstNodeRep: public TaQLNodeRep
{
public:
  // Do not change the values of this enum, as objects might be persistent.
  enum Type {CTBool   =0,
             CTInt    =1,
             CTReal   =2,
             CTComplex=3,
             CTString =4,
             CTTime   =5};
  explicit TaQLConstNodeRep (Bool value);
  explicit TaQLConstNodeRep (Int64 value);
  explicit TaQLConstNodeRep (Double value);
  explicit TaQLConstNodeRep (Double value, const String& unit);
  explicit TaQLConstNodeRep (DComplex value);
  explicit TaQLConstNodeRep (const String& value, Bool isTableName=False);
  explicit TaQLConstNodeRep (const MVTime& value);
  explicit TaQLConstNodeRep (Int64 value, const String& subTableName);
  void setIsTableName()
    { itsIsTableName = True; }
  const String& getString() const;
  const String& getUnit() const
    { return itsUnit; }
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  Type     itsType;
  Bool     itsIsTableName;
  Bool     itsBValue;
  Int64    itsIValue;
  Double   itsRValue;
  DComplex itsCValue;
  String   itsSValue;
  MVTime   itsTValue;
  String   itsUnit;
};


// <summary>
// Raw TaQL parse tree node defining a constant regex value.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding a constant regex/pattern value.
// Part of the regex are the delimiters (like p//).
// It also holds if the regex is case-insensitive and if a match or no match
// operator is given.
// </synopsis> 

class TaQLRegexNodeRep: public TaQLNodeRep
{
public:
  explicit TaQLRegexNodeRep (const String& value);
  TaQLRegexNodeRep (const String& value, Bool caseInsensitive, Bool negate,
                    Bool ignoreBlanks, Int maxDistance);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  String itsValue;
  Bool   itsCaseInsensitive;
  Bool   itsNegate;             //# True means !~
  //# The following members are only used for distance.
  Bool   itsIgnoreBlanks;
  Int    itsMaxDistance;
};


// <summary>
// Raw TaQL parse tree node defining a unary operator.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding a unary operator and operand.
// The operators supported are -, ~, NOT, EXISTS, and NOT EXISTS.
// Note the unary operator + is superfluous and is ignored by the parser.
// </synopsis> 

class TaQLUnaryNodeRep: public TaQLNodeRep
{
public:
  // Do not change the values of this enum, as objects might be persistent.
  enum Type {U_MINUS    =0,
             U_NOT      =1,
             U_EXISTS   =2,
             U_NOTEXISTS=3,
             U_BITNOT   =4};
  TaQLUnaryNodeRep (Type type, const TaQLNode& child);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  Type     itsType;
  TaQLNode itsChild;
};


// <summary>
// Raw TaQL parse tree node defining a binary operator.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding a binary operator and operands.
// All standard mathematical (including % and ^), relational, bit, and logical
// operators are supported. Furthermore operator IN and the INDEX operator
// (for indexing in an array) are supported.
// </synopsis> 

class TaQLBinaryNodeRep: public TaQLNodeRep
{
public:
  // Do not change the values of this enum, as objects might be persistent.
  enum Type {B_PLUS  =0,
             B_MINUS =1,
             B_TIMES =2,
             B_DIVIDE=3,
             B_MODULO=4,
             B_POWER =5,
             B_EQ    =6,
             B_NE    =7,
             B_GT    =8,
             B_GE    =9,
             B_LT    =10,
             B_LE    =11,
             B_OR    =12,
             B_AND   =13,
             B_IN    =14,
             B_INDEX =15,
             B_DIVIDETRUNC=16,
             B_EQREGEX    =17,
             B_NEREGEX    =18,
             B_BITAND     =19,
             B_BITXOR     =20,
             B_BITOR      =21};
  TaQLBinaryNodeRep (Type type, const TaQLNode& left, const TaQLNode& right);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);
  // Handle a comparison wih a regex. The operator (~ or !~) is extracted
  // from the regex.
  static TaQLBinaryNodeRep* handleRegex (const TaQLNode& left,
                                         const TaQLRegexNode& regex);

  Type     itsType;
  TaQLNode itsLeft;
  TaQLNode itsRight;
};


// <summary>
// Raw TaQL parse tree node defining a list of nodes.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding a list of heterogeneous nodes.
// </synopsis> 

class TaQLMultiNodeRep: public TaQLNodeRep
{
public:
  explicit TaQLMultiNodeRep (Bool isSetOrArray=False);
  TaQLMultiNodeRep(const String& prefix, const String& postfix,
                   Bool isSetOrArray=False);
  void setIsSetOrArray()
    { itsIsSetOrArray = True; }
  void setPPFix (const String& prefix, const String& postfix)
    { itsPrefix = prefix; itsPostfix = postfix; }
  void setSeparator (const String& sep)
    { itsSep = sep; }
  void setSeparator (uInt incr, const String& sep)
    { itsIncr = incr; itsSep2 = sep; }
  void add (const TaQLNode& node)
    { itsNodes.push_back (node); }
  const std::vector<TaQLNode>& getNodes() const
    { return itsNodes; }
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLMultiNode restore (AipsIO& aio);

  std::vector<TaQLNode> itsNodes;
  Bool   itsIsSetOrArray;
  String itsPrefix;
  String itsPostfix;
  String itsSep;
  String itsSep2;
  uInt   itsIncr;
};


// <summary>
// Raw TaQL parse tree node defining a function.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding a function name and its arguments.
// </synopsis> 

class TaQLFuncNodeRep: public TaQLNodeRep
{
public:
  TaQLFuncNodeRep (const String& name);
  TaQLFuncNodeRep (const String& name, const TaQLMultiNode& args);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  String        itsName;
  TaQLMultiNode itsArgs;
};


// <summary>
// Raw TaQL parse tree node defining a range.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the optional start and end values
// of a range (i.e. an interval) and flags if the range is open or closed.
// </synopsis> 

class TaQLRangeNodeRep: public TaQLNodeRep
{
public:
  TaQLRangeNodeRep (Bool leftClosed, const TaQLNode& start,
                    const TaQLNode& end, Bool rightClosed,
                    Bool asMidWidth=False);
  TaQLRangeNodeRep (Bool leftClosed, const TaQLNode& start);
  TaQLRangeNodeRep (const TaQLNode& end, Bool rightClosed);
  TaQLRangeNodeRep (const TaQLNode& mid, const TaQLNode& width);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLNode itsStart;
  TaQLNode itsEnd;
  Bool     itsLeftClosed;
  Bool     itsRightClosed;
  Bool     itsAsMidWidth;
};


// <summary>
// Raw TaQL parse tree node defining an index in a array.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the optional start, end, and incr
// values of an index in an array.
// </synopsis> 

class TaQLIndexNodeRep: public TaQLNodeRep
{
public:
  TaQLIndexNodeRep (const TaQLNode& start, const TaQLNode& end,
                    const TaQLNode& incr);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLNode itsStart;
  TaQLNode itsEnd;
  TaQLNode itsIncr;
};


// <summary>
// Raw TaQL parse tree node defining a join operation.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the expressions of a join operation.
// This is, however, a placeholder and not implemented yet.
// </synopsis> 

class TaQLJoinNodeRep: public TaQLNodeRep
{
public:
  TaQLJoinNodeRep (const TaQLMultiNode& tables, const TaQLNode& condition);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLMultiNode itsTables;
  TaQLNode      itsCondition;
};


// <summary>
// Raw TaQL parse tree node defining a keyword or column name.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the name of a keyword or column.
// The name can contain . and :: delimiters for scoping.
// </synopsis> 

class TaQLKeyColNodeRep: public TaQLNodeRep
{
public:
  TaQLKeyColNodeRep (const String& name, const String& nameMask = String());
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  String itsName;
  String itsNameMask;
};


// <summary>
// Raw TaQL parse tree node defining a table.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the info defining a table.
// It can be a constant value holding a name or it can be a subquery.
// Furthermore the alias of the table is defined (which can be empty).
// </synopsis> 

class TaQLTableNodeRep: public TaQLNodeRep
{
public:
  TaQLTableNodeRep (const TaQLNode& table, const String& alias);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLNode itsTable;
  String   itsAlias;
};


// <summary>
// Raw TaQL parse tree node defining a select column expression.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding a column expression in the
// column list of the select clause.
// A new column name and data type can be defined for the column (expression).
// The expression can be a wildcarded column name (a regex) preceeded by
// ~ or !~ (meaning include or exclude).
// </synopsis> 

class TaQLColNodeRep: public TaQLNodeRep
{
public:
  TaQLColNodeRep (const TaQLNode& expr, const String& name,
                  const String& nameMask, const String& dtype);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLNode itsExpr;
  String   itsName;
  String   itsNameMask;
  String   itsDtype;
};


// <summary>
// Raw TaQL parse tree node defining a select column list.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding a select column list.
// It also defines if the result must be distinct (unique)
// </synopsis> 

class TaQLColumnsNodeRep: public TaQLNodeRep
{
public:
  TaQLColumnsNodeRep (Bool distinct, const TaQLMultiNode& nodes);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  Bool          itsDistinct;
  TaQLMultiNode itsNodes;
};


// <summary>
// Raw TaQL parse tree node defining a groupby list.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding a groupby list with the optional
// ROLLUP qualifier.
// </synopsis> 

class TaQLGroupNodeRep: public TaQLNodeRep
{
public:
  // Do not change the values of this enum, as objects might be persistent.
  enum Type {Normal=0,
             Rollup=1};  //# in the future type Cube could be added
  TaQLGroupNodeRep (Type type, const TaQLMultiNode& nodes);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  Type          itsType;
  TaQLMultiNode itsNodes;
};


// <summary>
// Raw TaQL parse tree node defining a sort key.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding a sort key and the optional order
// in which this key must be sorted.
// </synopsis> 

class TaQLSortKeyNodeRep: public TaQLNodeRep
{
public:
  // Do not change the values of this enum, as objects might be persistent.
  enum Type {Ascending =0,
             Descending=1,
             None      =2};
  TaQLSortKeyNodeRep (Type type, const TaQLNode& child);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  Type     itsType;
  TaQLNode itsChild;
};


// <summary>
// Raw TaQL parse tree node defining a sort list.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding a sort list and the default order
// for each individual sort key.
// </synopsis> 

class TaQLSortNodeRep: public TaQLNodeRep
{
public:
  // Do not change the values of this enum, as objects might be persistent.
  enum Type {Ascending =0,
             Descending=1};
  TaQLSortNodeRep (Bool unique, Type type, const TaQLMultiNode& keys);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  Bool          itsUnique;
  Type          itsType;
  TaQLMultiNode itsKeys;
};


// <summary>
// Raw TaQL parse tree node defining a limit/offset expression.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the optional expressions for the
// LIMIT and OFFSET clause.
// </synopsis> 

class TaQLLimitOffNodeRep: public TaQLNodeRep
{
public:
  TaQLLimitOffNodeRep (const TaQLNode& limit, const TaQLNode& offset);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLNode itsLimit;
  TaQLNode itsOffset;
};


// <summary>
// Raw TaQL parse tree node defining a giving expression list.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the values for a GIVING clause.
// The value can be a table name or a list of expressions.
// </synopsis> 

class TaQLGivingNodeRep: public TaQLNodeRep
{
public:
  explicit TaQLGivingNodeRep (const String& name, const TaQLMultiNode& type);
  explicit TaQLGivingNodeRep (const TaQLMultiNode& exprlist);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  String        itsName;
  TaQLMultiNode itsType;
  TaQLMultiNode itsExprList;
};


// <summary>
// Raw TaQL parse tree node defining a column update expression.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the values for an update expression.
// It defines the column name and the expression for the new value.
// Optionally an index can be defined in case the column contains array
// values for which only some values need to be updated.
// </synopsis> 

class TaQLUpdExprNodeRep: public TaQLNodeRep
{
public:
  TaQLUpdExprNodeRep (const String& name, const String& nameMask,
                      const TaQLNode& expr);
  TaQLUpdExprNodeRep (const String& name, const String& nameMask,
                      const TaQLMultiNode& indices,
                      const TaQLNode& expr);
  TaQLUpdExprNodeRep (const String& name, const String& nameMask,
                      const TaQLMultiNode& indices1,
                      const TaQLMultiNode& indices2,
                      const TaQLNode& expr);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  String        itsName;
  String        itsNameMask;
  TaQLMultiNode itsIndices1;     //# indices or mask
  TaQLMultiNode itsIndices2;     //# mask or indices
  TaQLNode      itsExpr;
};


// <summary>
// Raw TaQL parse tree node defining a selection command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is an abstract TaQLNodeRep for a selection command that can
// also be used as a subquery.
// It holds flags telling if and how the select command must be
// executed when the node is visited for TaQLNodeHandler.
// </synopsis> 

class TaQLQueryNodeRep: public TaQLNodeRep
{
public:
  TaQLQueryNodeRep (int nodeType);
  void setBrackets()
    { itsBrackets = True; }
  void setNoExecute()
    { itsNoExecute = True; }
  void setFromExecute()
    { itsFromExecute = True; }
  Bool getBrackets() const
    { return itsBrackets; }
  Bool getNoExecute() const
    { return itsNoExecute; }
  Bool getFromExecute() const
    { return itsFromExecute; }
  virtual void show (std::ostream& os) const override;
protected:
  void saveSuper (AipsIO& aio) const;
  void restoreSuper (AipsIO& aio);
private:
  virtual void showDerived (std::ostream& os) const = 0;
  Bool itsBrackets;
  Bool itsNoExecute;    //# no execute in EXISTS operator
  Bool itsFromExecute;  //# special execute in FROM
};


// <summary>
// Raw TaQL parse tree node defining a select command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the different parts of a
// select expression.
// It also holds flags telling if and how the select command must be
// executed when the node is visited for TaQLNodeHandler.
// </synopsis> 

class TaQLSelectNodeRep: public TaQLQueryNodeRep
{
public:
  TaQLSelectNodeRep (const TaQLNode& columns,
                     const TaQLMultiNode& withTables, const TaQLNode& where,
                     const TaQLNode& groupby, const TaQLNode& having,
                     const TaQLNode& sort, const TaQLNode& limitoff,
                     const TaQLNode& giving, const TaQLMultiNode& dminfo);
  TaQLSelectNodeRep (const TaQLNode& columns,
                     const TaQLMultiNode& withTables, const TaQLMultiNode& fromTables,
                     const TaQLMultiNode& joins, const TaQLNode& where,
                     const TaQLNode& groupby, const TaQLNode& having,
                     const TaQLNode& sort, const TaQLNode& limitoff,
                     const TaQLNode& giving, const TaQLMultiNode& dminfo);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void showDerived (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLNode      itsColumns;
  TaQLMultiNode itsWith;
  TaQLMultiNode itsTables;
  TaQLMultiNode itsJoins;
  TaQLNode      itsWhere;
  TaQLNode      itsGroupby;
  TaQLNode      itsHaving;
  TaQLNode      itsSort;
  TaQLNode      itsLimitOff;
  TaQLNode      itsGiving;
  TaQLMultiNode itsDMInfo;
};


// <summary>
// Raw TaQL parse tree node defining a count command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts for a count command.
// </synopsis> 

class TaQLCountNodeRep: public TaQLQueryNodeRep
{
public:
  TaQLCountNodeRep (const TaQLMultiNode& with, const TaQLNode& columns,
                    const TaQLMultiNode& tables, const TaQLNode& where);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void showDerived (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLMultiNode itsWith;
  TaQLNode      itsColumns;
  TaQLMultiNode itsTables;
  TaQLNode      itsWhere;
};


// <summary>
// Raw TaQL parse tree node defining an update command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts for an update command.
// The tables to be used can be defined in two parts: the main one in
// the UPDATE clause, possible other ones in the FROM command.
// </synopsis> 

class TaQLUpdateNodeRep: public TaQLNodeRep
{
public:
  TaQLUpdateNodeRep (const TaQLMultiNode& with,
                     const TaQLMultiNode& tables, const TaQLMultiNode& update,
                     const TaQLMultiNode& from, const TaQLNode& where,
                     const TaQLNode& sort, const TaQLNode& limitoff);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLMultiNode itsWith;
  TaQLMultiNode itsTables;
  TaQLMultiNode itsUpdate;
  TaQLMultiNode itsFrom;
  TaQLNode      itsWhere;
  TaQLNode      itsSort;
  TaQLNode      itsLimitOff;
};


// <summary>
// Raw TaQL parse tree node defining an insert command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts for an insert command.
// The values cvan be a list of expressions or a subquery.
// </synopsis> 

class TaQLInsertNodeRep: public TaQLNodeRep
{
public:
  TaQLInsertNodeRep (const TaQLMultiNode& with, const TaQLMultiNode& tables,
                     const TaQLMultiNode& columns,
                     const TaQLNode& values, const TaQLNode& limit);
  TaQLInsertNodeRep (const TaQLMultiNode& with, const TaQLMultiNode& tables,
                     const TaQLMultiNode& insert);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLMultiNode itsWith;
  TaQLMultiNode itsTables;
  TaQLMultiNode itsColumns;
  TaQLNode      itsValues;
  TaQLNode      itsLimit;
};


// <summary>
// Raw TaQL parse tree node defining a delete command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts for a delete command.
// </synopsis> 

class TaQLDeleteNodeRep: public TaQLNodeRep
{
public:
  TaQLDeleteNodeRep (const TaQLMultiNode& with, const TaQLMultiNode& tables,
                     const TaQLNode& where,
                     const TaQLNode& sort, const TaQLNode& limitoff);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLMultiNode itsWith;
  TaQLMultiNode itsTables;
  TaQLNode      itsWhere;
  TaQLNode      itsSort;
  TaQLNode      itsLimitOff;
};


// <summary>
// Raw TaQL parse tree node defining a calc command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts of the calc command.
// </synopsis> 

class TaQLCalcNodeRep: public TaQLNodeRep
{
public:
  TaQLCalcNodeRep (const TaQLMultiNode& withTables, const TaQLMultiNode& fromTables,
                   const TaQLNode& expr, const TaQLNode& where,
                   const TaQLNode& sort, const TaQLNode& limitoff);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLMultiNode itsWith;
  TaQLMultiNode itsTables;
  TaQLNode      itsExpr;
  TaQLNode      itsWhere;
  TaQLNode      itsSort;
  TaQLNode      itsLimitOff;
};


// <summary>
// Raw TaQL parse tree node defining a create table command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts of the create table command.
// </synopsis> 

class TaQLCreTabNodeRep: public TaQLQueryNodeRep
{
public:
  TaQLCreTabNodeRep (const TaQLMultiNode& with,
                     const TaQLNode& giving, const TaQLMultiNode& likeDrop,
                     const TaQLMultiNode& cols,
                     const TaQLNode& limit, const TaQLMultiNode& dminfo);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void showDerived (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLMultiNode itsWith;
  TaQLNode      itsGiving;
  TaQLMultiNode itsLikeDrop;
  TaQLMultiNode itsColumns;
  TaQLNode      itsLimit;
  TaQLMultiNode itsDMInfo;
};


// <summary>
// Raw TaQL parse tree node defining a create column specification.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts of a column specification
// in the create table command.
// </synopsis> 

class TaQLColSpecNodeRep: public TaQLNodeRep
{
public:
  TaQLColSpecNodeRep (const String& name, const String& likeCol,
                      const String& dtype, const TaQLMultiNode& spec);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  String        itsName;
  String        itsLikeCol;
  String        itsDtype;
  TaQLMultiNode itsSpec;
};


// <summary>
// Raw TaQL parse tree node defining a record field.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts of a record field.
// </synopsis> 

class TaQLRecFldNodeRep: public TaQLNodeRep
{
public:
  TaQLRecFldNodeRep (const String& name,
                     const TaQLNode& values, const String& dtype);
  TaQLRecFldNodeRep (const String& name, const TaQLRecFldNodeRep&);
  TaQLRecFldNodeRep (const String& name, const String& fromName,
                     const String& dtype);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  String   itsName;
  String   itsFromName;
  String   itsDtype;
  TaQLNode itsValues;
};


// <summary>
// Raw TaQL parse tree node defining a unit.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts of a record field.
// </synopsis> 

class TaQLUnitNodeRep: public TaQLNodeRep
{
public:
  TaQLUnitNodeRep (const String& unit, const TaQLNode& child);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  String   itsUnit;
  TaQLNode itsChild;
};


// <summary>
// Raw TaQL parse tree node defining an alter table command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts of the alter table command.
// </synopsis> 

class TaQLAltTabNodeRep: public TaQLQueryNodeRep
{
public:
  TaQLAltTabNodeRep (const TaQLMultiNode& with, const TaQLNode& table,
                     const TaQLMultiNode& from, const TaQLMultiNode& commands);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void showDerived (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLMultiNode itsWith;
  TaQLNode      itsTable;
  TaQLMultiNode itsFrom;
  TaQLMultiNode itsCommands;
};


// <summary>
// Raw TaQL parse tree node defining an alter table add column command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts of the add column subcommand.
// </synopsis> 

class TaQLAddColNodeRep: public TaQLNodeRep
{
public:
  TaQLAddColNodeRep (const TaQLMultiNode& cols, const TaQLMultiNode& dminfo);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLMultiNode itsColumns;
  TaQLMultiNode itsDMInfo;
};


// <summary>
// Raw TaQL parse tree node defining an alter table rename or drop command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts of the rename or drop subcommand.
// </synopsis> 

class TaQLRenDropNodeRep: public TaQLNodeRep
{
public:
  TaQLRenDropNodeRep (Int type, const TaQLMultiNode& cols);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  Int           itsType;
  TaQLMultiNode itsNames;
};


// <summary>
// Raw TaQL parse tree node defining an alter table set keyword command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts of the set keyword subcommand.
// </synopsis> 

class TaQLSetKeyNodeRep: public TaQLNodeRep
{
public:
  TaQLSetKeyNodeRep (const TaQLMultiNode& keyvals);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLMultiNode itsKeyVals;
};


// <summary>
// Raw TaQL parse tree node defining an alter table add rows command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts of the add rows subcommand.
// </synopsis> 

class TaQLAddRowNodeRep: public TaQLNodeRep
{
public:
  TaQLAddRowNodeRep (const TaQLNode& nrow);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLNode itsNRow;
};


// <summary>
// Raw TaQL parse tree node defining an alter table command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts of the alter table command.
// </synopsis> 

class TaQLConcTabNodeRep: public TaQLQueryNodeRep
{
public:
  TaQLConcTabNodeRep (const String& tableName,
                      const TaQLMultiNode& tables,
                      const TaQLMultiNode& subtableNames);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void showDerived (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  String        itsTableName;
  TaQLMultiNode itsTables;
  TaQLMultiNode itsSubTables;
};


// <summary>
// Raw TaQL parse tree node defining a show command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts of the show command.
// </synopsis> 

class TaQLShowNodeRep: public TaQLNodeRep
{
public:
  TaQLShowNodeRep (const TaQLMultiNode& names);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLMultiNode itsNames;
};


// <summary>
// Raw TaQL parse tree node defining an alter table copy column command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the parts of the copy column subcommand.
// </synopsis> 

class TaQLCopyColNodeRep: public TaQLNodeRep
{
public:
  TaQLCopyColNodeRep (const TaQLMultiNode& names, const TaQLMultiNode& dminfo);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLMultiNode itsNames;
  TaQLMultiNode itsDMInfo;
};


// <summary>
// Raw TaQL parse tree node defining a DROP TABLE command.
// </summary>
// <use visibility=local>
// <reviewed reviewer="" date="" tests="tTaQLNode">
// </reviewed>
// <prerequisite>
//# Classes you should understand before using this one.
//   <li> <linkto class=TaQLNodeRep>TaQLNodeRep</linkto>
// </prerequisite>
// <synopsis> 
// This class is a TaQLNodeRep holding the tables of a drop table command.
// </synopsis> 

class TaQLDropTabNodeRep: public TaQLNodeRep
{
public:
  TaQLDropTabNodeRep (const TaQLMultiNode& with, const TaQLMultiNode& tables);
  virtual TaQLNodeResult visit (TaQLNodeVisitor&) const override;
  virtual void show (std::ostream& os) const override;
  virtual void save (AipsIO& aio) const override;
  static TaQLNode restore (AipsIO& aio);

  TaQLMultiNode itsWith;
  TaQLMultiNode itsTables;
};


} //# NAMESPACE CASACORE - END

#endif