44 #include "D4StreamMarshaller.h" 45 #include "D4StreamUnMarshaller.h" 49 #include "Operators.h" 50 #include "dods-limits.h" 52 #include "InternalErr.h" 85 d_buf = copy_from.d_buf;
95 UInt64::operator=(
const UInt64 &rhs)
100 dynamic_cast<BaseType &
>(*this) = rhs;
110 return sizeof(dods_uint64);
116 checksum.
AddData(reinterpret_cast<uint8_t*>(&d_buf),
sizeof(d_buf));
133 m.put_uint64( d_buf ) ;
139 um.get_uint64( d_buf ) ;
143 UInt64::value()
const 149 UInt64::set_value(dods_uint64 i)
158 UInt64::print_val(ostream &out,
string space,
bool print_decl_p)
162 out <<
" = " << d_buf <<
";\n" ;
173 throw InternalErr(__FILE__, __LINE__,
"This value was not read!");
177 throw InternalErr(__FILE__, __LINE__,
"This value was not read!");
181 return USCmp<dods_uint64, dods_int8>(op, d_buf,
static_cast<Int8*
>(b)->value());
183 return Cmp<dods_uint64, dods_byte>(op, d_buf,
static_cast<Byte*
>(b)->value());
185 return USCmp<dods_uint64, dods_int16>(op, d_buf,
static_cast<Int16*
>(b)->value());
187 return Cmp<dods_uint64, dods_uint16>(op, d_buf,
static_cast<UInt16*
>(b)->value());
189 return USCmp<dods_uint64, dods_int32>(op, d_buf,
static_cast<Int32*
>(b)->value());
191 return Cmp<dods_uint64, dods_uint32>(op, d_buf,
static_cast<UInt32*
>(b)->value());
193 return USCmp<dods_uint64, dods_int64>(op, d_buf,
static_cast<Int64*
>(b)->value());
195 return Cmp<dods_uint64, dods_uint64>(op, d_buf,
static_cast<UInt64*
>(b)->value());
197 return USCmp<dods_uint64, dods_float32>(op, d_buf,
static_cast<Float32*
>(b)->value());
199 return USCmp<dods_uint64, dods_float64>(op, d_buf,
static_cast<Float64*
>(b)->value());
210 return USCmp<dods_uint64, dods_int8>(op, d_buf,
static_cast<Int8*
>(b)->value());
212 return Cmp<dods_uint64, dods_byte>(op, d_buf,
static_cast<Byte*
>(b)->value());
214 return USCmp<dods_uint64, dods_int16>(op, d_buf,
static_cast<Int16*
>(b)->value());
216 return Cmp<dods_uint64, dods_uint16>(op, d_buf,
static_cast<UInt16*
>(b)->value());
218 return USCmp<dods_uint64, dods_int32>(op, d_buf,
static_cast<Int32*
>(b)->value());
220 return Cmp<dods_uint64, dods_uint32>(op, d_buf,
static_cast<UInt32*
>(b)->value());
222 return USCmp<dods_uint64, dods_int64>(op, d_buf,
static_cast<Int64*
>(b)->value());
224 return Cmp<dods_uint64, dods_uint64>(op, d_buf,
static_cast<UInt64*
>(b)->value());
226 return USCmp<dods_uint64, dods_float32>(op, d_buf,
static_cast<Float32*
>(b)->value());
228 return USCmp<dods_uint64, dods_float64>(op, d_buf,
static_cast<Float64*
>(b)->value());
251 std::vector<BaseType *> *
260 dest->set_is_dap4(
false);
279 strm << DapIndent::LMarg <<
"UInt32::dump - (" 280 << (
void *)
this <<
")" << endl ;
281 DapIndent::Indent() ;
283 strm << DapIndent::LMarg <<
"value: " << d_buf << endl ;
284 DapIndent::UnIndent() ;
virtual bool read()
Read data into a local buffer.
Holds an 8-bit signed integer value.
Holds a64-bit signed integer.
virtual bool read_p()
Has this variable been read?
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.
AttrTable * get_AttrTable(const std::string name)
copy attributes from DAP4 to DAP2
virtual void dump(ostream &strm) const
dumps information about this object
Contains the attributes for a dataset.
virtual bool ops(BaseType *b, int op)
Evaluate relational operators.
Read data from the stream made by D4StreamMarshaller.
Holds an unsigned 16-bit integer.
virtual BaseType * ptr_duplicate()
BaseType(const string &n, const Type &t, bool is_dap4=false)
The BaseType constructor.
virtual bool d4_ops(BaseType *b, int op)
Evaluator a relop for DAP4.
Holds a 32-bit floating point value.
A class for software fault reporting.
Marshaller that knows how to marshal/serialize dap data objects to a C++ iostream using DAP4's receiv...
Holds a 16-bit signed integer value.
virtual Type type() const
Returns the type of the class instance.
virtual void serialize(D4StreamMarshaller &m, DMR &dmr, bool filter=false)
Serialize an Int8.
virtual void set_read_p(bool state)
Sets the value of the read_p property.
virtual D4Attributes * attributes()
virtual void compute_checksum(Crc32 &checksum)
include the data for this variable in the checksum DAP4 includes a checksum with every data response...
virtual void deserialize(D4StreamUnMarshaller &um, DMR &dmr)
Holds a 64-bit unsigned integer.
void AddData(const uint8_t *pData, const uint32_t length)
virtual void dump(ostream &strm) const
dumps information about this object
virtual unsigned int width(bool constrained=false) const
How many bytes does this use Return the number of bytes of storage this variable uses. For scalar types, this is pretty simple (an int32 uses 4 bytes, etc.). For arrays and Constructors, it is a bit more complex. Note that a scalar String variable uses sizeof(String*) bytes, not the length of the string. In other words, the value returned is independent of the type. Also note width() of a String array returns the number of elements in the array times sizeof(String*). That is, each different array size is a different data type.
The basic data type for the DODS DAP types.
virtual std::vector< BaseType * > * transform_to_dap2(AttrTable *parent_attr_table)
DAP4 to DAP2 transform.
Holds a 64-bit (double precision) floating point value.
virtual void set_attr_table(const AttrTable &at)
virtual void set_name(const string &n)
Set the name of this attribute table.
Holds a 32-bit unsigned integer.
Holds a 32-bit signed integer.