libdap Updated for version 3.21.0
libdap4 is an implementation of OPeNDAP's DAP protocol.
Float32.cc
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 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// Implementation for Float32.
33//
34// 3/22/99 jhrg
35
36#include "config.h"
37
38//#define DODS_DEBUG
39
40#include <sstream>
41#include <iomanip>
42
43#include "Byte.h" // synonymous with UInt8 and Char
44#include "Int8.h"
45#include "Int16.h"
46#include "UInt16.h"
47#include "Int32.h"
48#include "UInt32.h"
49#include "Int64.h"
50#include "UInt64.h"
51#include "Float32.h"
52#include "Float64.h"
53#include "Str.h"
54#include "Url.h"
55
56#include "DDS.h"
57#include "Marshaller.h"
58#include "UnMarshaller.h"
59
60#include "DMR.h"
61#include "D4StreamMarshaller.h"
62#include "D4StreamUnMarshaller.h"
63
64#include "parser.h"
65#include "Operators.h"
66#include "dods-limits.h"
67#include "InternalErr.h"
68
69#include "util.h"
70#include "debug.h"
71#include "DapIndent.h"
72
73using std::cerr;
74using std::endl;
75
76namespace libdap {
77
85Float32::Float32(const string &n) : BaseType(n, dods_float32_c), d_buf(0)
86{}
87
95Float32::Float32(const string &n, const string &d) : BaseType(n, d, dods_float32_c), d_buf(0)
96{}
97
98Float32::Float32(const Float32 &copy_from) : BaseType(copy_from)
99{
100 d_buf = copy_from.d_buf;
101}
102
103BaseType *
105{
106 return new Float32(*this);
107}
108
109Float32 &
110Float32::operator=(const Float32 &rhs)
111{
112 if (this == &rhs)
113 return *this;
114 BaseType::operator=(rhs);
115 d_buf = rhs.d_buf;
116 return *this;
117}
118
119bool
121{
122#if USE_LOCAL_TIMEOUT_SCHEME
123 dds.timeout_on();
124#endif
125 if (!read_p())
126 read(); // read() throws Error and InternalErr
127
128 if (ce_eval && !eval.eval_selection(dds, dataset()))
129 return true;
130#if USE_LOCAL_TIMEOUT_SCHEME
131 dds.timeout_off();
132#endif
133 m.put_float32( d_buf ) ;
134
135 return true;
136}
137
138bool
140{
141 um.get_float32( d_buf ) ;
142
143 return false;
144}
145
146void
148{
149 checksum.AddData(reinterpret_cast<uint8_t*>(&d_buf), sizeof(d_buf));
150}
151
160void
161Float32::serialize(D4StreamMarshaller &m, DMR &, /*ConstraintEvaluator &,*/ bool)
162{
163 if (!read_p())
164 read(); // read() throws Error
165
166 m.put_float32( d_buf ) ;
167}
168
169void
171{
172 um.get_float32( d_buf ) ;
173}
174
175unsigned int
176Float32::val2buf(void *val, bool)
177{
178 // Jose Garcia This method is public I believe it has been
179 // designed to be used by read which must be implemented in a
180 // subclass, thus if the pointer val is NULL, is an Internal
181 // Error.
182 // Changed to InternalErr. jhrg
183 if (!val)
184 throw InternalErr(__FILE__, __LINE__,
185 "The incoming pointer does not contain any data.");
186
187 d_buf = *(dods_float32 *)val;
188
189 return width();
190}
191
192unsigned int
194{
195 // Jose Garcia
196 // The same comment justifying throwing an Error in val2buf applies here.
197 if (!val)
198 throw InternalErr(__FILE__, __LINE__, "NULL pointer.");
199
200 if (!*val)
201 *val = new dods_float32;
202
203 *(dods_float32 *)*val = d_buf;
204
205 return width();
206}
207
208bool
209Float32::set_value(dods_float32 f)
210{
211 d_buf = f;
212 set_read_p(true);
213
214 return true;
215}
216
222dods_float32
224{
225 return d_buf;
226}
227
228void
229Float32::print_val(FILE *out, string space, bool print_decl_p)
230{
231 ostringstream oss;
232 print_val(oss, space, print_decl_p);
233 fwrite(oss.str().data(), sizeof(char), oss.str().length(), out);
234}
235
236void
237Float32::print_val(ostream &out, string space, bool print_decl_p)
238{
239 // FIX: need to set precision in the printing somehow.
240 // os.precision(DODS_FLT_DIG);
241
242 if (print_decl_p) {
243 print_decl(out, space, false);
244 out << " = " << std::setprecision( 6 ) << d_buf << ";\n" ;
245 }
246 else
247 out << std::setprecision( 6 ) << d_buf ;
248}
249
250bool
252{
253 // Get this instance's value
254 if (!read_p() && !read()) {
255 // Jose Garcia Since the read method is virtual and
256 // implemented outside libdap++ if we cannot read the data
257 // that is the problem of whomever wrote the implementation of
258 // read and therefore it is an internal error.
259 throw InternalErr(__FILE__, __LINE__, "This value not read!");
260 }
261
262 // Extract the second arg's value.
263 if (!b || !(b->read_p() || b->read())) {
264 throw InternalErr(__FILE__, __LINE__, "This value not read!");
265 }
266
267 return d4_ops(b, op);
268}
269
273bool Float32::d4_ops(BaseType *b, int op)
274{
275 DBG(cerr << "b->typename(): " << b->type_name() << endl);
276
277 switch (b->type()) {
278 case dods_int8_c:
279 return Cmp<dods_float32, dods_int8>(op, d_buf, static_cast<Int8*>(b)->value());
280 case dods_byte_c:
281 return Cmp<dods_float32, dods_byte>(op, d_buf, static_cast<Byte*>(b)->value());
282 case dods_int16_c:
283 return Cmp<dods_float32, dods_int16>(op, d_buf, static_cast<Int16*>(b)->value());
284 case dods_uint16_c:
285 return Cmp<dods_float32, dods_uint16>(op, d_buf, static_cast<UInt16*>(b)->value());
286 case dods_int32_c:
287 return Cmp<dods_float32, dods_int32>(op, d_buf, static_cast<Int32*>(b)->value());
288 case dods_uint32_c:
289 return Cmp<dods_float32, dods_uint32>(op, d_buf, static_cast<UInt32*>(b)->value());
290 case dods_int64_c:
291 return Cmp<dods_float32, dods_int64>(op, d_buf, static_cast<Int64*>(b)->value());
292 case dods_uint64_c:
293 return Cmp<dods_float32, dods_uint64>(op, d_buf, static_cast<UInt64*>(b)->value());
294 case dods_float32_c:
295 return Cmp<dods_float32, dods_float32>(op, d_buf, static_cast<Float32*>(b)->value());
296 case dods_float64_c:
297 DBG(cerr << "arg1: " << d_buf << " " << op << " arg2: " << static_cast<Float64*>(b)->value() << endl);
298 // See the code in Float64::d4_ops() for an explanation of this odd-looking cast.
299 return Cmp<dods_float32, dods_float32>(op, d_buf, (float)static_cast<Float64*>(b)->value());
300 case dods_str_c:
301 case dods_url_c:
302 throw Error(malformed_expr, "Relational operators can only compare compatible types (number, string).");
303 default:
304 throw Error(malformed_expr, "Relational operators only work with scalar types.");
305 }
306}
307
316void
317Float32::dump(ostream &strm) const
318{
319 strm << DapIndent::LMarg << "Float32::dump - (" << (void *)this << ")"
320 << endl ;
321 DapIndent::Indent() ;
322 BaseType::dump(strm) ;
323 strm << DapIndent::LMarg << "value: " << d_buf << endl ;
324 DapIndent::UnIndent() ;
325}
326
327} // namespace libdap
328
Definition crc.h:77
void AddData(const uint8_t *pData, const uint32_t length)
Definition crc.h:98
The basic data type for the DODS DAP types.
Definition BaseType.h:120
virtual string type_name() const
Returns the type of the class instance as a string.
Definition BaseType.cc:376
virtual bool read()
Read data into a local buffer.
Definition BaseType.cc:905
virtual void print_decl(FILE *out, string space=" ", bool print_semi=true, bool constraint_info=false, bool constrained=false)
Print an ASCII representation of the variable structure.
Definition BaseType.cc:1009
virtual bool read_p()
Has this variable been read?
Definition BaseType.cc:477
virtual void set_read_p(bool state)
Sets the value of the read_p property.
Definition BaseType.cc:513
virtual string dataset() const
Returns the name of the dataset used to create this instance.
Definition BaseType.cc:355
void dump(ostream &strm) const override
dumps information about this object
Definition BaseType.cc:287
virtual Type type() const
Returns the type of the class instance.
Definition BaseType.cc:362
Holds a single byte.
Definition Byte.h:61
Evaluate a constraint expression.
bool eval_selection(DDS &dds, const std::string &dataset)
Evaluate a boolean-valued constraint expression. This is main method for the evaluator and is called ...
Marshaller that knows how to marshal/serialize dap data objects to a C++ iostream using DAP4's receiv...
Read data from the stream made by D4StreamMarshaller.
A class for error processing.
Definition Error.h:94
Holds a 32-bit floating point value.
Definition Float32.h:62
BaseType * ptr_duplicate() override
Definition Float32.cc:104
bool d4_ops(BaseType *b, int op) override
Definition Float32.cc:273
void dump(ostream &strm) const override
dumps information about this object
Definition Float32.cc:317
Float32(const string &n)
Definition Float32.cc:85
virtual dods_float32 value() const
Definition Float32.cc:223
void compute_checksum(Crc32 &checksum) override
include the data for this variable in the checksum DAP4 includes a checksum with every data response....
Definition Float32.cc:147
unsigned int buf2val(void **val) override
Reads the class data.
Definition Float32.cc:193
bool deserialize(UnMarshaller &um, DDS *dds, bool reuse=false) override
Receive data from the net.
Definition Float32.cc:139
unsigned int width(bool=false) const override
How many bytes does this variable use Return the number of bytes of storage this variable uses....
Definition Float32.h:79
bool serialize(ConstraintEvaluator &eval, DDS &dds, Marshaller &m, bool ce_eval=true) override
Move data to the net, then remove them from the object.
Definition Float32.cc:120
bool ops(BaseType *b, int op) override
Evaluate relational operators.
Definition Float32.cc:251
unsigned int val2buf(void *val, bool reuse=false) override
Loads class data.
Definition Float32.cc:176
void print_val(FILE *out, string space="", bool print_decl_p=true) override
Prints the value of the variable.
Definition Float32.cc:229
Holds a 64-bit (double precision) floating point value.
Definition Float64.h:61
Holds a 16-bit signed integer value.
Definition Int16.h:60
Holds a 32-bit signed integer.
Definition Int32.h:66
Holds a64-bit signed integer.
Definition Int64.h:50
Holds an 8-bit signed integer value.
Definition Int8.h:43
A class for software fault reporting.
Definition InternalErr.h:65
abstract base class used to marshal/serialize dap data objects
Definition Marshaller.h:50
Holds an unsigned 16-bit integer.
Definition UInt16.h:58
Holds a 32-bit unsigned integer.
Definition UInt32.h:60
Holds a 64-bit unsigned integer.
Definition UInt64.h:50
abstract base class used to unmarshall/deserialize dap data objects
top level DAP object to house generic methods
Definition AISConnect.cc:30