libdap Updated for version 3.21.1
libdap4 is an implementation of OPeNDAP's DAP protocol.
Structure.h
Go to the documentation of this file.
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
48class DDS;
50class D4Group;
51
81
82class Structure : public Constructor {
83private:
84protected:
85public:
86 Structure(const string &n);
87 Structure(const string &n, const string &d);
88
89 Structure(const Structure &rhs);
90 virtual ~Structure();
91
92 Structure &operator=(const Structure &rhs);
93 virtual BaseType *ptr_duplicate();
94
95 virtual void transform_to_dap4(D4Group *root, Constructor *container);
96 virtual vector<BaseType *> *transform_to_dap2(AttrTable *parent_attr_table);
97
98 virtual bool is_linear();
99
100 virtual void set_leaf_sequence(int level = 1);
101
102 virtual void dump(ostream &strm) const;
103};
104
105} // namespace libdap
106
107#endif // _structure_h
Contains the attributes for a dataset.
Definition AttrTable.h:150
The basic data type for the DODS DAP types.
Definition BaseType.h:118
Evaluate a constraint expression.
Constructor(const string &name, const Type &type, bool is_dap4=false)
Definition Constructor.h:52
Structure(const string &n)
Definition Structure.cc:110
virtual void dump(ostream &strm) const
dumps information about this object
Definition Structure.cc:656
virtual void set_leaf_sequence(int level=1)
Traverse Structure, set Sequence leaf nodes.
Definition Structure.cc:285
virtual ~Structure()
Definition Structure.cc:129
virtual vector< BaseType * > * transform_to_dap2(AttrTable *parent_attr_table)
DAP4 to DAP2 transform.
Definition Structure.cc:167
virtual bool is_linear()
Check to see whether this variable can be printed simply.
Definition Structure.cc:235
virtual BaseType * ptr_duplicate()
Definition Structure.cc:131
Structure & operator=(const Structure &rhs)
Definition Structure.cc:228
virtual void transform_to_dap4(D4Group *root, Constructor *container)
Definition Structure.cc:142
top level DAP object to house generic methods
Definition AISConnect.cc:30