bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
Dimension.cc
1
2// This file is part of the "NcML Module" project, a BES module designed
3// to allow NcML files to be used to be used as a wrapper to add
4// AIS to existing datasets of any format.
5//
6// Copyright (c) 2009 OPeNDAP, Inc.
7// Author: Michael Johnson <m.johnson@opendap.org>
8//
9// For more information, please also see the main website: http://opendap.org/
10//
11// This library is free software; you can redistribute it and/or
12// modify it under the terms of the GNU Lesser General Public
13// License as published by the Free Software Foundation; either
14// version 2.1 of the License, or (at your option) any later version.
15//
16// This library is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19// Lesser General Public License for more details.
20//
21// You should have received a copy of the GNU Lesser General Public
22// License along with this library; if not, write to the Free Software
23// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24//
25// Please see the files COPYING and COPYRIGHT for more information on the GLPL.
26//
27// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
29
30#include "Dimension.h"
31
32#include <sstream>
33
34using std::string;
35using std::ostringstream;
36using std::vector;
37using std::ws;
38
39namespace agg_util {
40Dimension::Dimension(string nameArg, unsigned int sizeArg, bool isSharedArg, bool isSizeConstantArg) :
41 name(std::move(nameArg)), size(sizeArg), isShared(isSharedArg), isSizeConstant(isSizeConstantArg)
42{
43}
44
45std::string Dimension::toString() const
46{
47 ostringstream oss;
48 oss << *this;
49 return oss.str();
50}
51
52std::ostream& operator<<(std::ostream& os, const Dimension& dim)
53{
54 os << dim.name << '\n';
55 os << dim.size << '\n';
56 return os;
57}
58
59std::istream& operator>>(std::istream& is, Dimension& dim)
60{
61 dim.isShared = false;
62 dim.isSizeConstant = true;
63
64 getline(is, dim.name);
65 is >> ws >> dim.size >> ws;
66 return is;
67}
68
69}
Helper class for temporarily hijacking an existing dhi to load a DDX response for one particular file...
std::ostream & operator<<(std::ostream &os, const Dimension &dim)
Definition Dimension.cc:52
std::string toString() const
Definition Dimension.cc:45