-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata_int.c
80 lines (69 loc) · 2.1 KB
/
data_int.c
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
#include <stdlib.h>
#include <assert.h>
#include <stdio.h>
#include <strings.h>
#include "data.h"
/* Release objects created in `NewIntData`*/
void CleanIntData(Data *self) {
free(self->intKey);
self->intKey = NULL;
}
int IntDataCompareTo(Data *self, Data *rhs) {
LURE_ASSERT(self != NULL, "self must not be NULL");
LURE_ASSERT(rhs != NULL, "right hand side must not be NULL");
if (rhs->rawType == RawDataDouble) {
double left = self->toDouble(self);
double right = rhs->toDouble(rhs);
if (right < left) {
return -1;
} else if (right > left) {
return 1;
} else {
return 0;
}
}
return self->toInt(self) - rhs->toInt(rhs);
}
bool IntDataToBool(Data *self) {
LURE_ASSERT(self != NULL, "self must not be NULL");
return (bool)self->raw.intVal;
}
int IntDataToInt(Data *self) {
LURE_ASSERT(self != NULL, "self must not be NULL");
return self->raw.intVal;
}
double IntDataToDouble(Data *self) {
LURE_ASSERT(self != NULL, "self must not be NULL");
return (double)self->raw.intVal;
}
char *IntDataToString(Data *self) {
LURE_ASSERT(self != NULL, "self must not be NULL");
char * num = (char *)calloc(64, sizeof(char));
snprintf(num, 63, "%d", self->raw.intVal);
num[63] = '\0';
return num;
}
char *IntDataGetCStr(Data *self) {
LURE_ASSERT(self != NULL, "self must not be NULL");
return self->intKey;
}
Data *IntDataCopy(Data *self) {
LURE_ASSERT(self != NULL, "self must not be NULL");
return NewIntData(self->toInt(self));
}
/* Create a new Data that manages integer and setup function ptrs accordingly. */
Data *NewIntData(int val) {
Data *ptr = (Data *)calloc(1, sizeof(Data));
ptr->raw.intVal = val;
ptr->rawType = RawDataInt;
ptr->clean = CleanIntData;
ptr->compareTo = IntDataCompareTo;
ptr->toBoolean = IntDataToBool;
ptr->toDouble = IntDataToDouble;
ptr->toInt = IntDataToInt;
ptr->toString = IntDataToString;
ptr->getCStr = IntDataGetCStr;
ptr->copy = IntDataCopy;
ptr->intKey = IntDataToString(ptr);
return ptr;
}