63#include "D4StreamMarshaller.h"
64#include "D4StreamUnMarshaller.h"
69#include "dods-limits.h"
71#include "InternalErr.h"
107 d_buf = copy_from.d_buf;
113 return new Int64(*
this);
118 DBG(cerr <<
"~Int64" << endl);
122Int64::operator=(
const Int64 &rhs)
126 BaseType::operator=(rhs);
134 checksum.
AddData(
reinterpret_cast<uint8_t*
>(&d_buf),
sizeof(d_buf));
151 m.put_int64( d_buf ) ;
157 um.get_int64( d_buf ) ;
167Int64::set_value(dods_int64 i)
176Int64::buf2val(
void **val)
179 throw InternalErr(__FILE__, __LINE__,
"NULL pointer.");
182 *val =
new dods_int64;
184 *(dods_int64 *)*val = d_buf;
188void Int64::print_val(ostream &out,
string space,
bool print_decl_p)
192 out <<
" = " << d_buf <<
";\n";
203 throw InternalErr(__FILE__, __LINE__,
"This value not read!");
206 if (!b || !(b->read_p() || b->read()))
207 throw InternalErr(__FILE__, __LINE__,
"This value not read!");
219 return Cmp<dods_int64, dods_int8>(op, d_buf,
static_cast<Int8*
>(b)->value());
221 return Cmp<dods_int64, dods_byte>(op, d_buf,
static_cast<Byte*
>(b)->value());
223 return Cmp<dods_int64, dods_int16>(op, d_buf,
static_cast<Int16*
>(b)->value());
225 return Cmp<dods_int64, dods_uint16>(op, d_buf,
static_cast<UInt16*
>(b)->value());
227 return Cmp<dods_int64, dods_int32>(op, d_buf,
static_cast<Int32*
>(b)->value());
229 return Cmp<dods_int64, dods_uint32>(op, d_buf,
static_cast<UInt32*
>(b)->value());
231 return Cmp<dods_int64, dods_int64>(op, d_buf,
static_cast<Int64*
>(b)->value());
233 return Cmp<dods_int64, dods_uint64>(op, d_buf,
static_cast<UInt64*
>(b)->value());
235 return Cmp<dods_int64, dods_float32>(op, d_buf,
static_cast<Float32*
>(b)->value());
237 return Cmp<dods_int64, dods_float64>(op, d_buf,
static_cast<Float64*
>(b)->value());
240 throw Error(malformed_expr,
"Relational operators can only compare compatible types (number, string).");
242 throw Error(malformed_expr,
"Relational operators only work with scalar types.");
260 dest->set_attr_table(*attrs);
261 dest->set_is_dap4(
false);
276 bool has_projected_dap4 =
false;
278 has_projected_dap4 =
true;
282 return has_projected_dap4;
297 strm << DapIndent::LMarg <<
"Int64::dump - ("
298 << (
void *)
this <<
")" << endl ;
299 DapIndent::Indent() ;
301 strm << DapIndent::LMarg <<
"value: " << d_buf << endl ;
302 DapIndent::UnIndent() ;
void AddData(const uint8_t *pData, const uint32_t length)
Contains the attributes for a dataset.
virtual void set_name(const string &n)
Set the name of this attribute table.
The basic data type for the DODS DAP types.
virtual string type_name() const
Returns the type of the class instance as a string.
virtual bool read()
Read data into a local buffer.
virtual string name() const
Returns the name of the class instance.
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.
virtual bool read_p()
Has this variable been read?
virtual void set_read_p(bool state)
Sets the value of the read_p property.
void dump(ostream &strm) const override
dumps information about this object
virtual D4Attributes * attributes()
virtual std::string FQN() const
virtual bool send_p()
Should this variable be sent?
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.
Holds a 32-bit floating point value.
Holds a 64-bit (double precision) floating point value.
Holds a 16-bit signed integer value.
Holds a 32-bit signed integer.
Holds a64-bit signed integer.
BaseType * ptr_duplicate() override
unsigned int width(bool=false) const override
How many bytes does this variable use Return the number of bytes of storage this variable uses....
bool d4_ops(BaseType *b, int op) override
void deserialize(D4StreamUnMarshaller &um, DMR &dmr) override
bool ops(BaseType *b, int op) override
Evaluate relational operators.
void serialize(D4StreamMarshaller &m, DMR &dmr, bool filter=false) override
Serialize an Int8.
bool is_dap4_projected(std::vector< string > &inventory) override
void dump(ostream &strm) const override
dumps information about this object
std::vector< BaseType * > * transform_to_dap2(AttrTable *parent_attr_table) override
DAP4 to DAP2 transform.
void compute_checksum(Crc32 &checksum) override
include the data for this variable in the checksum DAP4 includes a checksum with every data response....
Holds an 8-bit signed integer value.
A class for software fault reporting.
Holds an unsigned 16-bit integer.
Holds a 32-bit unsigned integer.
Holds a 64-bit unsigned integer.
top level DAP object to house generic methods