This repository has been archived by the owner on Mar 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
senml_double_pack.h
74 lines (52 loc) · 2.64 KB
/
senml_double_pack.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* _ __ ____ _ _
* | |/ / | _ \ | \ | |
* | ' / | |_) | | \| |
* | . \ | __/ | |\ |
* |_|\_\ |_| |_| \_|
*
* (c) 2018 KPN
* License: MIT License.
* Author: Jan Bogaerts
*
* pack (document) with double base values headers
*/
#ifndef SENMLDOUBLEPACK
#define SENMLDOUBLEPACK
#include <senml_pack_t.h>
/**
* An implimentation of the SenMLPack template that stores double base value and base-sum.
*/
class SenMLDoublePack: public SenMLPackTemplate<double>
{
public:
SenMLDoublePack(const char* baseName): SenMLPackTemplate(baseName, SENML_UNIT_NONE, NAN) {};
SenMLDoublePack(const char* baseName, SenMLUnit baseUnit): SenMLPackTemplate(baseName, baseUnit, NAN) {};
SenMLDoublePack(const char* baseName, SenMLUnit baseUnit, double baseTime): SenMLPackTemplate(baseName, baseUnit, baseTime) {};
SenMLDoublePack(PACK_ACTUATOR_SIGNATURE): SenMLPackTemplate("", SENML_UNIT_NONE, NAN, callback) {};
SenMLDoublePack(const char* baseName, PACK_ACTUATOR_SIGNATURE): SenMLPackTemplate(baseName, SENML_UNIT_NONE, NAN, callback) {};
SenMLDoublePack(const char* baseName, SenMLUnit baseUnit, PACK_ACTUATOR_SIGNATURE): SenMLPackTemplate(baseName, baseUnit, NAN, callback) {};
SenMLDoublePack(const char* baseName, SenMLUnit baseUnit, double baseTime, PACK_ACTUATOR_SIGNATURE): SenMLPackTemplate(baseName, baseUnit, baseTime, callback){};
~SenMLDoublePack(){};
/**
* renders all the fields to json, without the starting and ending brackets.
* Inheriters can extend this function if they want to add extra fields to the json output
* note: this is public so that custom implementations for the record object can use other objects
* internally and render to json using this function (ex: coordinatesRecord using 3 floatRecrods for lat, lon & alt.
* @returns: None
*/
virtual void fieldsToJson();
/**
* renders all the fields to cbor format. renders all the fields of the object without the length info
* at the beginning
* note: this is public so that custom implementations for the record object can use other objects
* internally and render to json using this function (ex: coordinatesRecord using 3 floatRecrods for
* lat, lon & alt.
* @returns: The number of bytes that were written.
*/
virtual int fieldsToCbor();
protected:
virtual void setupStreamCtx(Stream *dest, SenMLStreamMethod format);
virtual void setupStreamCtx(char *dest, int length, SenMLStreamMethod format);
private:
};
#endif // SENMLDOUBLEPACK