libdap  Updated for version 3.20.6
libdap4 is an implementation of OPeNDAP's DAP protocol.
Int32.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 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 
37 #include "config.h"
38 
39 //#define DODS_DEBUG
40 
41 #include <sstream>
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 "util.h"
65 #include "parser.h"
66 #include "Operators.h"
67 #include "dods-limits.h"
68 #include "debug.h"
69 #include "InternalErr.h"
70 #include "DapIndent.h"
71 
72 using std::cerr;
73 using std::endl;
74 
75 namespace libdap {
76 
84 Int32::Int32(const string &n) : BaseType(n, dods_int32_c), d_buf(0)
85 {}
86 
94 Int32::Int32(const string &n, const string &d) : BaseType(n, d, dods_int32_c), d_buf(0)
95 {}
96 
97 Int32::Int32(const Int32 &copy_from) : BaseType(copy_from)
98 {
99  d_buf = copy_from.d_buf;
100 }
101 
102 BaseType *
104 {
105  return new Int32(*this);
106 }
107 
108 Int32::~Int32()
109 {
110  DBG(cerr << "~Int32" << endl);
111 }
112 
113 Int32 &
114 Int32::operator=(const Int32 &rhs)
115 {
116  if (this == &rhs)
117  return *this;
118 
119  dynamic_cast<BaseType &>(*this) = rhs;
120 
121  d_buf = rhs.d_buf;
122 
123  return *this;
124 }
125 
126 unsigned int
127 Int32::width(bool) const
128 {
129  return sizeof(dods_int32);
130 }
131 
132 bool
134  Marshaller &m, bool ce_eval)
135 {
136 #if USE_LOCAL_TIMEOUT_SCHEME
137  dds.timeout_on();
138 #endif
139  if (!read_p())
140  read(); // read() throws Error and InternalErr
141 
142  if (ce_eval && !eval.eval_selection(dds, dataset()))
143  return true;
144 #if USE_LOCAL_TIMEOUT_SCHEME
145  dds.timeout_off();
146 #endif
147  m.put_int32( d_buf ) ;
148 
149  return true;
150 }
151 
152 bool
154 {
155  um.get_int32( d_buf ) ;
156 
157  return false;
158 }
159 
160 void
162 {
163  checksum.AddData(reinterpret_cast<uint8_t*>(&d_buf), sizeof(d_buf));
164 }
165 
174 void
175 Int32::serialize(D4StreamMarshaller &m, DMR &, /*ConstraintEvaluator &,*/ bool)
176 {
177  if (!read_p())
178  read(); // read() throws Error
179 
180  m.put_int32( d_buf ) ;
181 }
182 
183 void
185 {
186  um.get_int32( d_buf ) ;
187 }
188 
189 unsigned int
190 Int32::val2buf(void *val, bool)
191 {
192  // Jose Garcia
193  // This method is public therefore and I believe it has being designed
194  // to be use by read which must be implemented on the surrogated library,
195  // thus if the pointer val is NULL, is an Internal Error.
196  if (!val)
197  throw InternalErr(__FILE__, __LINE__,
198  "The incoming pointer does not contain any data.");
199 
200  d_buf = *(dods_int32 *)val;
201 
202  return width();
203 }
204 
205 unsigned int
206 Int32::buf2val(void **val)
207 {
208  // Jose Garcia
209  // The same comment justifying throwing an Error in val2buf applies here.
210  if (!val)
211  throw InternalErr(__FILE__, __LINE__, "NULL pointer.");
212 
213  if (!*val)
214  *val = new dods_int32;
215 
216  *(dods_int32 *)*val = d_buf;
217 
218  return width();
219 }
220 
221 dods_int32
222 Int32::value() const
223 {
224  return d_buf;
225 }
226 
227 bool
228 Int32::set_value(dods_int32 i)
229 {
230  d_buf = i;
231  set_read_p(true);
232 
233  return true;
234 }
235 
236 void
237 Int32::print_val(FILE *out, string space, bool print_decl_p)
238 {
239  ostringstream oss;
240  print_val(oss, space, print_decl_p);
241  fwrite(oss.str().data(), sizeof(char), oss.str().length(), out);
242 }
243 
244 void Int32::print_val(ostream &out, string space, bool print_decl_p)
245 {
246  if (print_decl_p) {
247  print_decl(out, space, false);
248  out << " = " << (int) d_buf << ";\n";
249  }
250  else
251  out << (int) d_buf;
252 }
253 
254 bool
255 Int32::ops(BaseType *b, int op)
256 {
257  if (!read_p() && !read()) {
258  // Jose Garcia
259  // Since the read method is virtual and implemented outside
260  // libdap++ if we cannot read the data that is the problem
261  // of the user or of whoever wrote the surrogate library
262  // implemeting read therefore it is an internal error.
263  throw InternalErr(__FILE__, __LINE__, "This value not read!");
264  }
265 
266  // Extract the second arg's value.
267  if (!b || !(b->read_p() || b->read())) {
268  // Jose Garcia
269  // Since the read method is virtual and implemented outside
270  // libdap++ if we cannot read the data that is the problem
271  // of the user or of whoever wrote the surrogate library
272  // implemeting read therefore it is an internal error.
273  throw InternalErr(__FILE__, __LINE__, "This value not read!");
274  }
275 
276  return d4_ops(b, op);
277 }
278 
282 bool Int32::d4_ops(BaseType *b, int op)
283 {
284  DBG(cerr << "b->typename(): " << b->type_name() << endl);
285  switch (b->type()) {
286  case dods_int8_c:
287  return Cmp<dods_int32, dods_int8>(op, d_buf, static_cast<Int8*>(b)->value());
288  case dods_byte_c:
289  return Cmp<dods_int32, dods_byte>(op, d_buf, static_cast<Byte*>(b)->value());
290  case dods_int16_c:
291  return Cmp<dods_int32, dods_int16>(op, d_buf, static_cast<Int16*>(b)->value());
292  case dods_uint16_c:
293  return Cmp<dods_int32, dods_uint16>(op, d_buf, static_cast<UInt16*>(b)->value());
294  case dods_int32_c:
295  return Cmp<dods_int32, dods_int32>(op, d_buf, static_cast<Int32*>(b)->value());
296  case dods_uint32_c:
297  return Cmp<dods_int32, dods_uint32>(op, d_buf, static_cast<UInt32*>(b)->value());
298  case dods_int64_c:
299  return Cmp<dods_int32, dods_int64>(op, d_buf, static_cast<Int64*>(b)->value());
300  case dods_uint64_c:
301  return Cmp<dods_int32, dods_uint64>(op, d_buf, static_cast<UInt64*>(b)->value());
302  case dods_float32_c:
303  return Cmp<dods_int32, dods_float32>(op, d_buf, static_cast<Float32*>(b)->value());
304  case dods_float64_c:
305  return Cmp<dods_int32, dods_float64>(op, d_buf, static_cast<Float64*>(b)->value());
306  case dods_str_c:
307  case dods_url_c:
308  throw Error(malformed_expr, "Relational operators can only compare compatible types (number, string).");
309  default:
310  throw Error(malformed_expr, "Relational operators only work with scalar types.");
311  }
312 }
313 
322 void
323 Int32::dump(ostream &strm) const
324 {
325  strm << DapIndent::LMarg << "Int32::dump - ("
326  << (void *)this << ")" << endl ;
327  DapIndent::Indent() ;
328  BaseType::dump(strm) ;
329  strm << DapIndent::LMarg << "value: " << d_buf << endl ;
330  DapIndent::UnIndent() ;
331 }
332 
333 } // namespace libdap
334 
virtual bool read()
Read data into a local buffer.
Definition: BaseType.cc:899
Holds an 8-bit signed integer value.
Definition: Int8.h:42
Holds a64-bit signed integer.
Definition: Int64.h:49
virtual bool d4_ops(BaseType *b, int op)
Definition: Int32.cc:282
virtual bool read_p()
Has this variable been read?
Definition: BaseType.cc:480
abstract base class used to unmarshall/deserialize dap data objects
Definition: UnMarshaller.h:54
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:1003
virtual void dump(ostream &strm) const
dumps information about this object
Definition: BaseType.cc:291
virtual void dump(ostream &strm) const
dumps information about this object
Definition: Int32.cc:323
virtual bool ops(BaseType *b, int op)
Evaluate relational operators.
Definition: Int32.cc:255
Int32(const string &n)
Definition: Int32.cc:84
Read data from the stream made by D4StreamMarshaller.
virtual void compute_checksum(Crc32 &checksum)
include the data for this variable in the checksum DAP4 includes a checksum with every data response...
Definition: Int32.cc:161
Holds an unsigned 16-bit integer.
Definition: UInt16.h:57
Definition: crc.h:76
BaseType(const string &n, const Type &t, bool is_dap4=false)
The BaseType constructor.
Definition: BaseType.cc:126
Holds a 32-bit floating point value.
Definition: Float32.h:61
top level DAP object to house generic methods
Definition: AISConnect.cc:30
A class for software fault reporting.
Definition: InternalErr.h:64
virtual bool deserialize(UnMarshaller &um, DDS *dds, bool reuse=false)
Receive data from the net.
Definition: Int32.cc:153
Marshaller that knows how to marshal/serialize dap data objects to a C++ iostream using DAP4&#39;s receiv...
Holds a 16-bit signed integer value.
Definition: Int16.h:59
virtual Type type() const
Returns the type of the class instance.
Definition: BaseType.cc:365
virtual void set_read_p(bool state)
Sets the value of the read_p property.
Definition: BaseType.cc:516
virtual BaseType * ptr_duplicate()
Definition: Int32.cc:103
Holds a 64-bit unsigned integer.
Definition: UInt64.h:49
void AddData(const uint8_t *pData, const uint32_t length)
Definition: crc.h:98
Evaluate a constraint expression.
virtual void print_val(FILE *out, string space="", bool print_decl_p=true)
Prints the value of the variable.
Definition: Int32.cc:237
The basic data type for the DODS DAP types.
Definition: BaseType.h:117
abstract base class used to marshal/serialize dap data objects
Definition: Marshaller.h:50
virtual string type_name() const
Returns the type of the class instance as a string.
Definition: BaseType.cc:379
Holds a 64-bit (double precision) floating point value.
Definition: Float64.h:60
Holds a single byte.
Definition: Byte.h:60
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 ...
A class for error processing.
Definition: Error.h:92
virtual unsigned int buf2val(void **val)
Reads the class data.
Definition: Int32.cc:206
Holds a 32-bit unsigned integer.
Definition: UInt32.h:59
virtual unsigned int width(bool constrained=false) const
How many bytes does this variable use Return the number of bytes of storage this variable uses...
Definition: Int32.cc:127
virtual bool serialize(ConstraintEvaluator &eval, DDS &dds, Marshaller &m, bool ce_eval=true)
Move data to the net, then remove them from the object.
Definition: Int32.cc:133
Holds a 32-bit signed integer.
Definition: Int32.h:65
virtual unsigned int val2buf(void *val, bool reuse=false)
Loads class data.
Definition: Int32.cc:190
virtual string dataset() const
Returns the name of the dataset used to create this instance.
Definition: BaseType.cc:358