libdap Updated for version 3.21.1
libdap4 is an implementation of OPeNDAP's DAP protocol.
UInt64.h
Go to the documentation of this file.
1
2// -*- mode: c++; c-basic-offset:4 -*-
3
4// This file is part of libdap, A C++ implementation of the OPeNDAP Data
5// Access Protocol.
6
7// Copyright (c) 2012 OPeNDAP, Inc.
8// Author: James Gallagher <jgallagher@opendap.org>
9//
10// This library is free software; you can redistribute it and/or
11// modify it under the terms of the GNU Lesser General Public
12// License as published by the Free Software Foundation; either
13// version 2.1 of the License, or (at your option) any later version.
14//
15// This library is distributed in the hope that it will be useful,
16// but WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18// Lesser General Public License for more details.
19//
20// You should have received a copy of the GNU Lesser General Public
21// License along with this library; if not, write to the Free Software
22// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23//
24// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
25
26#ifndef _uint64_h
27#define _uint64_h 1
28
29#ifndef _dods_datatypes_h
30#include "dods-datatypes.h"
31#endif
32
33#ifndef _basetype_h
34#include "BaseType.h"
35#endif
36
37#ifndef constraint_evaluator_h
38#include "ConstraintEvaluator.h"
39#endif
40
41namespace libdap {
42
46
47class UInt64 : public BaseType {
48 unsigned int val2buf(void *val, bool) override {
49 set_value(*reinterpret_cast<dods_uint64 *>(val));
50 return sizeof(dods_uint64);
51 }
52 // virtual unsigned int buf2val(void **) { throw InternalErr(__FILE__, __LINE__, "Not implemented for UInt64"); }
53 unsigned int buf2val(void **) override;
54 void print_val(FILE *, string, bool) override {
55 throw InternalErr(__FILE__, __LINE__, "Not implemented for UInt64");
56 }
57
58protected:
60
61public:
62 UInt64(const string &n);
63 UInt64(const string &n, const string &d);
64 virtual ~UInt64() {}
65
66 UInt64(const UInt64 &copy_from);
67
68 UInt64 &operator=(const UInt64 &rhs);
69
70 BaseType *ptr_duplicate() override;
71
72 unsigned int width(bool = false) const override { return sizeof(dods_uint64); }
73
74 int64_t width_ll(bool = false) const override { return sizeof(dods_uint64); }
75
76 // DAP4
77 void compute_checksum(Crc32 &checksum) override;
78 void serialize(D4StreamMarshaller &m, DMR &dmr, /*ConstraintEvaluator &eval,*/ bool filter = false) override;
79 void deserialize(D4StreamUnMarshaller &um, DMR &dmr) override;
80
81 virtual dods_uint64 value() const;
82 virtual bool set_value(dods_uint64 val);
83
84 void print_val(ostream &out, string space = "", bool print_decl_p = true) override;
85
86 bool ops(BaseType *b, int op) override;
87 bool d4_ops(BaseType *b, int op) override;
88 std::vector<BaseType *> *transform_to_dap2(AttrTable *parent_attr_table) override;
89
90 bool is_dap4_projected(std::vector<string> &inventory) override;
91
92 void dump(ostream &strm) const override;
93};
94
95} // namespace libdap
96
97#endif // _uint64_h
Definition crc.h:43
Contains the attributes for a dataset.
Definition AttrTable.h:150
The basic data type for the DODS DAP types.
Definition BaseType.h:118
BaseType(const string &n, const Type &t, bool is_dap4=false)
The BaseType constructor.
Definition BaseType.cc:124
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 software fault reporting.
Definition InternalErr.h:61
Holds a 64-bit unsigned integer.
Definition UInt64.h:47
bool ops(BaseType *b, int op) override
Evaluate relational operators.
Definition UInt64.cc:144
UInt64 & operator=(const UInt64 &rhs)
Definition UInt64.cc:86
virtual dods_uint64 value() const
Definition UInt64.cc:113
int64_t width_ll(bool=false) const override
Definition UInt64.h:74
void serialize(D4StreamMarshaller &m, DMR &dmr, bool filter=false) override
Serialize an Int8.
Definition UInt64.cc:104
unsigned int width(bool=false) const override
How many bytes does this variable use Return the number of bytes of storage this variable uses....
Definition UInt64.h:72
BaseType * ptr_duplicate() override
Definition UInt64.cc:84
bool d4_ops(BaseType *b, int op) override
Evaluator a relop for DAP4.
Definition UInt64.cc:179
void deserialize(D4StreamUnMarshaller &um, DMR &dmr) override
Definition UInt64.cc:111
void dump(ostream &strm) const override
dumps information about this object
Definition UInt64.cc:259
std::vector< BaseType * > * transform_to_dap2(AttrTable *parent_attr_table) override
DAP4 to DAP2 transform.
Definition UInt64.cc:221
dods_uint64 d_buf
Definition UInt64.h:59
UInt64(const string &n)
Definition UInt64.cc:68
void compute_checksum(Crc32 &checksum) override
include the data for this variable in the checksum DAP4 includes a checksum with every data response....
Definition UInt64.cc:94
virtual bool set_value(dods_uint64 val)
Definition UInt64.cc:115
virtual ~UInt64()
Definition UInt64.h:64
bool is_dap4_projected(std::vector< string > &inventory) override
Definition UInt64.cc:241
top level DAP object to house generic methods
Definition AISConnect.cc:30
uint64_t dods_uint64