libdap Updated for version 3.21.1
libdap4 is an implementation of OPeNDAP's DAP protocol.
Int32.cc
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 1994-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 Int32.
33//
34// jhrg 9/7/94
35
36#include "config.h"
37
38// #define DODS_DEBUG
39
40#include <sstream>
41
42#include "Byte.h" // synonymous with UInt8 and Char
43#include "Float32.h"
44#include "Float64.h"
45#include "Int16.h"
46#include "Int32.h"
47#include "Int64.h"
48#include "Int8.h"
49#include "Str.h"
50#include "UInt16.h"
51#include "UInt32.h"
52#include "UInt64.h"
53#include "Url.h"
54
55#include "DDS.h"
56#include "Marshaller.h"
57#include "UnMarshaller.h"
58
59#include "D4StreamMarshaller.h"
61#include "DMR.h"
62
63#include "DapIndent.h"
64#include "InternalErr.h"
65#include "Operators.h"
66#include "debug.h"
67#include "dods-limits.h"
68#include "parser.h"
69#include "util.h"
70
71using std::cerr;
72using std::endl;
73
74namespace libdap {
75
83Int32::Int32(const string &n) : BaseType(n, dods_int32_c), d_buf(0) {}
84
92Int32::Int32(const string &n, const string &d) : BaseType(n, d, dods_int32_c), d_buf(0) {}
93
94Int32::Int32(const Int32 &copy_from) : BaseType(copy_from) { d_buf = copy_from.d_buf; }
95
96BaseType *Int32::ptr_duplicate() { return new Int32(*this); }
97
98Int32::~Int32() { DBG(cerr << "~Int32" << endl); }
99
101 if (this == &rhs)
102 return *this;
104 d_buf = rhs.d_buf;
105 return *this;
106}
107
108bool Int32::serialize(ConstraintEvaluator &eval, DDS &dds, Marshaller &m, bool ce_eval) {
109#if USE_LOCAL_TIMEOUT_SCHEME
110 dds.timeout_on();
111#endif
112 if (!read_p())
113 read(); // read() throws Error and InternalErr
114
115 if (ce_eval && !eval.eval_selection(dds, dataset()))
116 return true;
117#if USE_LOCAL_TIMEOUT_SCHEME
118 dds.timeout_off();
119#endif
120 m.put_int32(d_buf);
121
122 return true;
123}
124
126 um.get_int32(d_buf);
127
128 return false;
129}
130
131void Int32::compute_checksum(Crc32 &checksum) { checksum.AddData(reinterpret_cast<uint8_t *>(&d_buf), sizeof(d_buf)); }
132
141void Int32::serialize(D4StreamMarshaller &m, DMR &, /*ConstraintEvaluator &,*/ bool) {
142 if (!read_p())
143 read(); // read() throws Error
144
145 m.put_int32(d_buf);
146}
147
149
150unsigned int Int32::val2buf(void *val, bool) {
151 // Jose Garcia
152 // This method is public therefore and I believe it has being designed
153 // to be use by read which must be implemented on the surrogated library,
154 // thus if the pointer val is NULL, is an Internal Error.
155 if (!val)
156 throw InternalErr(__FILE__, __LINE__, "The incoming pointer does not contain any data.");
157
158 d_buf = *(dods_int32 *)val;
159
160 return width();
161}
162
163unsigned int Int32::buf2val(void **val) {
164 // Jose Garcia
165 // The same comment justifying throwing an Error in val2buf applies here.
166 if (!val)
167 throw InternalErr(__FILE__, __LINE__, "NULL pointer.");
168
169 if (!*val)
170 *val = new dods_int32;
171
172 *(dods_int32 *)*val = d_buf;
173
174 return width();
175}
176
177dods_int32 Int32::value() const { return d_buf; }
178
180 d_buf = i;
181 set_read_p(true);
182
183 return true;
184}
185
186void Int32::print_val(FILE *out, string space, bool print_decl_p) {
187 ostringstream oss;
188 print_val(oss, space, print_decl_p);
189 fwrite(oss.str().data(), sizeof(char), oss.str().length(), out);
190}
191
192void Int32::print_val(ostream &out, string space, bool print_decl_p) {
193 if (print_decl_p) {
194 print_decl(out, space, false);
195 out << " = " << (int)d_buf << ";\n";
196 } else
197 out << (int)d_buf;
198}
199
200bool Int32::ops(BaseType *b, int op) {
201 if (!read_p() && !read()) {
202 // Jose Garcia
203 // Since the read method is virtual and implemented outside
204 // libdap++ if we cannot read the data that is the problem
205 // of the user or of whoever wrote the surrogate library
206 // implemeting read therefore it is an internal error.
207 throw InternalErr(__FILE__, __LINE__, "This value not read!");
208 }
209
210 // Extract the second arg's value.
211 if (!b || !(b->read_p() || b->read())) {
212 // Jose Garcia
213 // Since the read method is virtual and implemented outside
214 // libdap++ if we cannot read the data that is the problem
215 // of the user or of whoever wrote the surrogate library
216 // implemeting read therefore it is an internal error.
217 throw InternalErr(__FILE__, __LINE__, "This value not read!");
218 }
219
220 return d4_ops(b, op);
221}
222
226bool Int32::d4_ops(BaseType *b, int op) {
227 DBG(cerr << "b->typename(): " << b->type_name() << endl);
228 switch (b->type()) {
229 case dods_int8_c:
230 return Cmp<dods_int32, dods_int8>(op, d_buf, static_cast<Int8 *>(b)->value());
231 case dods_byte_c:
232 return Cmp<dods_int32, dods_byte>(op, d_buf, static_cast<Byte *>(b)->value());
233 case dods_int16_c:
234 return Cmp<dods_int32, dods_int16>(op, d_buf, static_cast<Int16 *>(b)->value());
235 case dods_uint16_c:
236 return Cmp<dods_int32, dods_uint16>(op, d_buf, static_cast<UInt16 *>(b)->value());
237 case dods_int32_c:
238 return Cmp<dods_int32, dods_int32>(op, d_buf, static_cast<Int32 *>(b)->value());
239 case dods_uint32_c:
240 return Cmp<dods_int32, dods_uint32>(op, d_buf, static_cast<UInt32 *>(b)->value());
241 case dods_int64_c:
242 return Cmp<dods_int32, dods_int64>(op, d_buf, static_cast<Int64 *>(b)->value());
243 case dods_uint64_c:
244 return Cmp<dods_int32, dods_uint64>(op, d_buf, static_cast<UInt64 *>(b)->value());
245 case dods_float32_c:
246 return Cmp<dods_int32, dods_float32>(op, d_buf, static_cast<Float32 *>(b)->value());
247 case dods_float64_c:
248 return Cmp<dods_int32, dods_float64>(op, d_buf, static_cast<Float64 *>(b)->value());
249 case dods_str_c:
250 case dods_url_c:
251 throw Error(malformed_expr, "Relational operators can only compare compatible types (number, string).");
252 default:
253 throw Error(malformed_expr, "Relational operators only work with scalar types.");
254 }
255}
256
265void Int32::dump(ostream &strm) const {
266 strm << DapIndent::LMarg << "Int32::dump - (" << (void *)this << ")" << endl;
268 BaseType::dump(strm);
269 strm << DapIndent::LMarg << "value: " << d_buf << endl;
271}
272
273} // namespace libdap
#define malformed_expr
(400)
Definition Error.h:66
Definition crc.h:43
void AddData(const uint8_t *pData, const uint32_t length)
Definition crc.h:64
BaseType & operator=(const BaseType &rhs)
Definition BaseType.cc:159
virtual string type_name() const
Returns the type of the class instance as a string.
Definition BaseType.cc:335
virtual bool read()
Read data into a local buffer.
Definition BaseType.cc:775
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:868
virtual bool read_p()
Has this variable been read?
Definition BaseType.cc:410
virtual void set_read_p(bool state)
Sets the value of the read_p property.
Definition BaseType.cc:442
virtual string dataset() const
Returns the name of the dataset used to create this instance.
Definition BaseType.cc:326
void dump(ostream &strm) const override
dumps information about this object
Definition BaseType.cc:269
BaseType(const string &n, const Type &t, bool is_dap4=false)
The BaseType constructor.
Definition BaseType.cc:124
virtual Type type() const
Returns the type of the class instance.
Definition BaseType.cc:329
Holds a single byte.
Definition Byte.h:59
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...
virtual void put_int32(dods_int32 val)
Read data from the stream made by D4StreamMarshaller.
virtual void get_int32(dods_int32 &val)
void timeout_off()
Definition DDS.cc:695
void timeout_on()
Definition DDS.cc:687
static ostream & LMarg(ostream &strm)
Definition DapIndent.cc:61
static void Indent()
Definition DapIndent.cc:44
static void UnIndent()
Definition DapIndent.cc:46
A class for error processing.
Definition Error.h:92
Holds a 32-bit floating point value.
Definition Float32.h:59
Holds a 64-bit (double precision) floating point value.
Definition Float64.h:58
Holds a 16-bit signed integer value.
Definition Int16.h:57
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 Int32.h:79
bool deserialize(UnMarshaller &um, DDS *dds, bool reuse=false) override
Receive data from the net.
Definition Int32.cc:125
unsigned int val2buf(void *val, bool reuse=false) override
Loads class data.
Definition Int32.cc:150
virtual dods_int32 value() const
Definition Int32.cc:177
void compute_checksum(Crc32 &checksum) override
include the data for this variable in the checksum DAP4 includes a checksum with every data response....
Definition Int32.cc:131
virtual bool set_value(dods_int32 i)
Definition Int32.cc:179
unsigned int buf2val(void **val) override
Reads the class data.
Definition Int32.cc:163
void dump(ostream &strm) const override
dumps information about this object
Definition Int32.cc:265
virtual ~Int32()
Definition Int32.cc:98
dods_int32 d_buf
Definition Int32.h:65
Int32 & operator=(const Int32 &rhs)
Definition Int32.cc:100
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 Int32.cc:108
BaseType * ptr_duplicate() override
Definition Int32.cc:96
bool ops(BaseType *b, int op) override
Evaluate relational operators.
Definition Int32.cc:200
bool d4_ops(BaseType *b, int op) override
Definition Int32.cc:226
void print_val(FILE *out, string space="", bool print_decl_p=true) override
Prints the value of the variable.
Definition Int32.cc:186
Int32(const string &n)
Definition Int32.cc:83
Holds a64-bit signed integer.
Definition Int64.h:48
Holds an 8-bit signed integer value.
Definition Int8.h:41
A class for software fault reporting.
Definition InternalErr.h:61
abstract base class used to marshal/serialize dap data objects
Definition Marshaller.h:50
virtual void put_int32(dods_int32 val)=0
Holds an unsigned 16-bit integer.
Definition UInt16.h:55
Holds a 32-bit unsigned integer.
Definition UInt32.h:57
Holds a 64-bit unsigned integer.
Definition UInt64.h:47
abstract base class used to unmarshall/deserialize dap data objects
virtual void get_int32(dods_int32 &val)=0
#define DBG(x)
Definition debug.h:58
top level DAP object to house generic methods
Definition AISConnect.cc:30
@ dods_uint32_c
Definition Type.h:100
@ dods_int16_c
Definition Type.h:97
@ dods_byte_c
Definition Type.h:96
@ dods_int32_c
Definition Type.h:99
@ dods_url_c
Definition Type.h:104
@ dods_int8_c
Definition Type.h:115
@ dods_float32_c
Definition Type.h:101
@ dods_int64_c
Definition Type.h:118
@ dods_uint64_c
Definition Type.h:119
@ dods_uint16_c
Definition Type.h:98
@ dods_float64_c
Definition Type.h:102
@ dods_str_c
Definition Type.h:103
bool Cmp(int op, T1 v1, T2 v2)
Definition Operators.h:52