libdap Updated for version 3.20.11
libdap4 is an implementation of OPeNDAP's DAP protocol.
Structure.h
1
2// -*- mode: c++; c-basic-offset:4 -*-
3
4// This file is part of libdap, A C++ implementation of the OPeNDAP Data
5// Access Protocol.
6
7// Copyright (c) 2002,2003 OPeNDAP, Inc.
8// Author: James Gallagher <jgallagher@opendap.org>
9//
10// This library is free software; you can redistribute it and/or
11// modify it under the terms of the GNU Lesser General Public
12// License as published by the Free Software Foundation; either
13// version 2.1 of the License, or (at your option) any later version.
14//
15// This library is distributed in the hope that it will be useful,
16// but WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18// Lesser General Public License for more details.
19//
20// You should have received a copy of the GNU Lesser General Public
21// License along with this library; if not, write to the Free Software
22// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23//
24// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
25
26// (c) COPYRIGHT URI/MIT 1995-1999
27// Please read the full copyright statement in the file COPYRIGHT_URI.
28//
29// Authors:
30// jhrg,jimg James Gallagher <jgallagher@gso.uri.edu>
31
32// Interface for the class Structure. A structure contains a single set of
33// variables, all at the same lexical level. Of course, a structure may
34// contain other structures... The variables contained in a structure are
35// stored by instances of this class in a SLList of BaseType pointers.
36//
37// jhrg 9/14/94
38
39#ifndef _structure_h
40#define _structure_h 1
41
42#include <vector>
43
44#include "Constructor.h"
45
46namespace libdap
47{
48
49class DDS;
50class ConstraintEvaluator;
51class D4Group;
52
84{
85private:
86protected:
87
88public:
89 Structure(const string &n);
90 Structure(const string &n, const string &d);
91
92 Structure(const Structure &rhs);
93 virtual ~Structure();
94
95 Structure &operator=(const Structure &rhs);
96 virtual BaseType *ptr_duplicate();
97
98 virtual void transform_to_dap4(D4Group *root, Constructor *container);
99 virtual vector<BaseType *> *transform_to_dap2(AttrTable *parent_attr_table);
100
101 virtual bool is_linear();
102
103 virtual void set_leaf_sequence(int level = 1);
104
105 virtual void dump(ostream &strm) const ;
106};
107
108} // namespace libdap
109
110#endif // _structure_h
Contains the attributes for a dataset.
Definition: AttrTable.h:143
The basic data type for the DODS DAP types.
Definition: BaseType.h:118
Holds a structure (aggregate) type.
Definition: Structure.h:84
Structure(const string &n)
Definition: Structure.cc:110
virtual void dump(ostream &strm) const
dumps information about this object
Definition: Structure.cc:682
virtual void set_leaf_sequence(int level=1)
Traverse Structure, set Sequence leaf nodes.
Definition: Structure.cc:309
virtual vector< BaseType * > * transform_to_dap2(AttrTable *parent_attr_table)
DAP4 to DAP2 transform.
Definition: Structure.cc:180
virtual bool is_linear()
Check to see whether this variable can be printed simply.
Definition: Structure.cc:257
virtual BaseType * ptr_duplicate()
Definition: Structure.cc:138
virtual void transform_to_dap4(D4Group *root, Constructor *container)
Definition: Structure.cc:153
top level DAP object to house generic methods
Definition: AlarmHandler.h:36