forked from davidbouchard/arduino-osc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOSCData.h
123 lines (98 loc) · 3.18 KB
/
OSCData.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
Written by Yotam Mann, The Center for New Music and Audio Technologies,
University of California, Berkeley. Copyright (c) 2013, The Regents of
the University of California (Regents).
Permission to use, copy, modify, distribute, and distribute modified versions
of this software and its documentation without fee and without a signed
licensing agreement, is hereby granted, provided that the above copyright
notice, this paragraph and the following two paragraphs appear in all copies,
modifications, and distributions.
IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING
OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
For bug reports and feature requests please email me at [email protected]
*/
#ifndef OSCDATA_h
#define OSCDATA_h
#include <Arduino.h>
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
#include <string.h>
//ERRORS/////////////////////////////////////////////////
typedef enum { OSC_OK = 0,
BUFFER_FULL, INVALID_OSC, ALLOCFAILED, INDEX_OUT_OF_BOUNDS
} OSCErrorCode;
class OSCData
{
private:
//friends
friend class OscMessage;
//should only be used while decoding
//leaves an invalid OSCMessage with a type, but no data
OSCData(char t);
public:
//an error flag
OSCErrorCode error;
//the size (in bytes) of the data
int bytes;
//the type of the data
int type;
//the data
union {
char * s; //string
int32_t i; //int
float f; //float
double d; //double
uint64_t l; //long
uint8_t * b; //blob
} data;
//overload the constructor to account for all the types and sizes
OSCData(const char * s);
OSCData (int);
OSCData (int32_t);
OSCData (float);
OSCData (double);
OSCData (uint8_t *, int);
//accepts another OSCData objects and clones it
OSCData (OSCData *);
//destructor
~OSCData();
//GETTERS
int32_t getInt();
float getFloat();
double getDouble();
int getString(char *, int);
int getBlob(uint8_t *, int);
//constructor from byte array with type and length
OSCData(char, uint8_t *, int);
//fill the passed in buffer with the data
//uint8_t * asByteArray();
};
/*
based on http://stackoverflow.com/questions/809902/64-bit-ntohl-in-c
if the system is little endian, it will flip the bits
if the system is big endian, it'll do nothing
*/
template<typename T>
static inline T BigEndian(const T& x)
{
const int one = 1;
const char sig = *(char*)&one;
if (sig == 0) return x; // for big endian machine just return the input
T ret;
int size = sizeof(T);
char* src = (char*)&x + sizeof(T) - 1;
char* dst = (char*)&ret;
while (size-- > 0){
*dst++ = *src--;
}
return ret;
}
#endif