61#include "D4StreamMarshaller.h"
62#include "D4StreamUnMarshaller.h"
66#include "InternalErr.h"
69#include "dods-limits.h"
106Int64::~Int64() { DBG(cerr <<
"~Int64" << endl); }
111 BaseType::operator=(rhs);
116void Int64::compute_checksum(Crc32 &checksum) { checksum.
AddData(
reinterpret_cast<uint8_t *
>(&d_buf),
sizeof(d_buf)); }
135dods_int64 Int64::value()
const {
return d_buf; }
137bool Int64::set_value(dods_int64 i) {
144unsigned int Int64::buf2val(
void **val) {
146 throw InternalErr(__FILE__, __LINE__,
"NULL pointer.");
149 *val =
new dods_int64;
151 *(dods_int64 *)*val = d_buf;
155void Int64::print_val(ostream &out,
string space,
bool print_decl_p) {
157 print_decl(out, space,
false);
158 out <<
" = " << d_buf <<
";\n";
163bool Int64::ops(BaseType *b,
int op) {
166 throw InternalErr(__FILE__, __LINE__,
"This value not read!");
169 if (!b || !(b->read_p() || b->read()))
170 throw InternalErr(__FILE__, __LINE__,
"This value not read!");
202 throw Error(malformed_expr,
"Relational operators can only compare compatible types (number, string).");
204 throw Error(malformed_expr,
"Relational operators only work with scalar types.");
218 AttrTable *attrs = this->attributes()->get_AttrTable();
220 dest->set_attr_table(*attrs);
221 dest->set_is_dap4(
false);
235 bool has_projected_dap4 =
false;
237 has_projected_dap4 =
true;
238 attributes()->has_dap4_types(FQN(), inventory);
239 inventory.emplace_back(
type_name() +
" " + FQN());
241 return has_projected_dap4;
253 strm << DapIndent::LMarg <<
"Int64::dump - (" << (
void *)
this <<
")" << endl;
255 BaseType::dump(strm);
256 strm << DapIndent::LMarg <<
"value: " << d_buf << endl;
257 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.
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.
bool d4_ops(BaseType *b, int op) override
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.
Holds an 8-bit signed integer value.
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
virtual BaseType * ptr_duplicate()=0
virtual bool read_p()
Has this variable been read?
virtual string type_name() const
Returns the type of the class instance as a string.
bool Cmp(int op, T1 v1, T2 v2)
virtual bool send_p()
Should this variable be sent?
virtual D4SeqValues value() const
Get the values for this D4Sequence This method returns a reference to the values held by the instance...