-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnode_literal.c
50 lines (43 loc) · 1.25 KB
/
node_literal.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
#include<assert.h>
#include<stdlib.h>
#include<memory.h>
#include "node.h"
#include "data.h"
#include "util.h"
#include "hashmap.h"
#include "re.h"
/* evaluate, allocate and return a data struct. */
Data *node_literal_evaluate(Node *node, map_t context) {
LURE_ASSERT(node != NULL, "cannot evaluate against an empty node");
if (node->data == NULL) {
return NewBoolData(false);
}
return node->data->copy(node->data);
}
/* create a node without creating new data object. */
Node *new_node_literal_nocopy(Data *data) {
Node *node = (Node *)calloc(1, sizeof(Node));
node->type = NodeType_Literal;
node->data = data;
node->left = NULL;
node->right = NULL;
node->list = NULL;
node->evaluate = node_literal_evaluate;
return node;
}
/*Make a copy of data object*/
Node *NewNodeLiteral(Data *data) {
return new_node_literal_nocopy(data->copy(data));
}
Node *NewBooleanLiteral(bool val) {
return new_node_literal_nocopy(NewBoolData(val));
}
Node *NewIntLiteral(int val) {
return new_node_literal_nocopy(NewIntData(val));
}
Node *NewDoubleLiteral(double val) {
return new_node_literal_nocopy(NewDoubleData(val));
}
Node *NewStringLiteral(const char * val) {
return new_node_literal_nocopy(NewStringData(val));
}