44#include "D4StreamMarshaller.h"
45#include "D4StreamUnMarshaller.h"
49#include "InternalErr.h"
52#include "dods-limits.h"
88Int8 &Int8::operator=(
const Int8 &rhs) {
91 BaseType::operator=(rhs);
115dods_int8 Int8::value()
const {
return d_buf; }
117bool Int8::set_value(dods_int8 i) {
124void Int8::print_val(ostream &out,
string space,
bool print_decl_p) {
127 out <<
" = " << (int)d_buf <<
";\n";
135 throw InternalErr(__FILE__, __LINE__,
"This value not read!");
139 throw InternalErr(__FILE__, __LINE__,
"This value not read!");
171 throw Error(malformed_expr,
"Relational operators can only compare compatible types (number, string).");
173 throw Error(malformed_expr,
"Relational operators only work with scalar types.");
192 if (vec->size() != 1) {
194 oss << __func__ <<
"() - Something Bad Happened. This transform should produce only ";
195 oss <<
" a single BaseType yet it produced " << vec->size();
196 throw Error(internal_error, oss.str());
198 (*vec)[0]->set_type(dods_byte_c);
226 strm << DapIndent::LMarg <<
"Int8::dump - (" << (
void *)
this <<
")" << endl;
229 strm << DapIndent::LMarg <<
"value: " << d_buf << endl;
230 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 string type_name() const
Returns the type of the class instance as a string.
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 D4Attributes * attributes()
virtual std::string FQN() const
virtual bool send_p()
Should this variable be sent?
BaseType(const string &n, const Type &t, bool is_dap4=false)
The BaseType constructor.
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.
bool has_dap4_types(const std::string &path, std::vector< std::string > &inventory) const
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.
void dump(ostream &strm) const override
dumps information about this object
void serialize(D4StreamMarshaller &m, DMR &dmr, bool filter=false) override
Serialize an Int8.
void deserialize(D4StreamUnMarshaller &um, DMR &dmr) override
BaseType * ptr_duplicate() override
bool ops(BaseType *b, int op) override
Evaluate relational operators.
void compute_checksum(Crc32 &checksum) override
include the data for this variable in the checksum DAP4 includes a checksum with every data response....
bool is_dap4_projected(std::vector< std::string > &inventory) override
bool d4_ops(BaseType *b, int op) override
std::vector< BaseType * > * transform_to_dap2(AttrTable *parent_attr_table) override
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
bool Cmp(int op, T1 v1, T2 v2)