44#include "D4StreamMarshaller.h"
45#include "D4StreamUnMarshaller.h"
51#include "dods-limits.h"
53#include "InternalErr.h"
88 d_buf = copy_from.d_buf;
94 return new Int8(*
this);
98Int8::operator=(
const Int8 &rhs)
102 BaseType::operator=(rhs);
110 return sizeof(dods_int8);
116 checksum.
AddData(
reinterpret_cast<uint8_t*
>(&d_buf),
sizeof(d_buf));
133 m.put_int8( d_buf ) ;
139 um.get_int8( d_buf ) ;
149Int8::set_value(dods_int8 i)
157void Int8::print_val(ostream &out,
string space,
bool print_decl_p)
161 out <<
" = " << (int)d_buf <<
";\n";
172 throw InternalErr(__FILE__, __LINE__,
"This value not read!");
176 throw InternalErr(__FILE__, __LINE__,
"This value not read!");
188 return Cmp<dods_int8, dods_int8>(op, d_buf,
static_cast<Int8*
>(b)->value());
190 return Cmp<dods_int8, dods_byte>(op, d_buf,
static_cast<Byte*
>(b)->value());
192 return Cmp<dods_int8, dods_int16>(op, d_buf,
static_cast<Int16*
>(b)->value());
194 return Cmp<dods_int8, dods_uint16>(op, d_buf,
static_cast<UInt16*
>(b)->value());
196 return Cmp<dods_int8, dods_int32>(op, d_buf,
static_cast<Int32*
>(b)->value());
198 return Cmp<dods_int8, dods_uint32>(op, d_buf,
static_cast<UInt32*
>(b)->value());
200 return Cmp<dods_int8, dods_int64>(op, d_buf,
static_cast<Int64*
>(b)->value());
202 return Cmp<dods_int8, dods_uint64>(op, d_buf,
static_cast<UInt64*
>(b)->value());
204 return Cmp<dods_int8, dods_float32>(op, d_buf,
static_cast<Float32*
>(b)->value());
206 return Cmp<dods_int8, dods_float64>(op, d_buf,
static_cast<Float64*
>(b)->value());
209 throw Error(malformed_expr,
"Relational operators can only compare compatible types (number, string).");
211 throw Error(malformed_expr,
"Relational operators only work with scalar types.");
228std::vector<BaseType *> *
234 oss << __func__ <<
"() - Something Bad Happened. This transform should produce only ";
235 oss <<
" a single BaseType yet it produced " << vec->size();
236 throw Error(internal_error,oss.str());
238 (*vec)[0]->set_type(dods_byte_c);
253 strm << DapIndent::LMarg <<
"Int8::dump - ("
254 << (
void *)
this <<
")" << endl ;
255 DapIndent::Indent() ;
257 strm << DapIndent::LMarg <<
"value: " << d_buf << endl ;
258 DapIndent::UnIndent() ;
void AddData(const uint8_t *pData, const uint32_t length)
Contains the attributes for a dataset.
The basic data type for the DODS DAP types.
virtual bool read()
Read data into a local buffer.
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 Type type() const
Returns the type of the class instance.
virtual std::vector< BaseType * > * transform_to_dap2(AttrTable *parent_attr_table)
DAP4 to DAP2 transform.
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.
Holds an 8-bit signed integer value.
virtual void dump(ostream &strm) const
dumps information about this object
virtual bool ops(BaseType *b, int op)
Evaluate relational operators.
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....
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)
virtual BaseType * ptr_duplicate()
virtual void serialize(D4StreamMarshaller &m, DMR &dmr, bool filter=false)
Serialize an Int8.
virtual bool d4_ops(BaseType *b, int op)
virtual std::vector< BaseType * > * transform_to_dap2(AttrTable *parent_attr_table)
DAP4 to DAP2 transform.
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