forked from mhssamadani/Autolykos2_AMD_Miner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
definitions.cc
executable file
·77 lines (59 loc) · 1.87 KB
/
definitions.cc
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
// definitions.cc
/*******************************************************************************
DEFINITIONS -- Constants, Structs and Macros
*******************************************************************************/
#include "definitions.h"
#include "jsmn.h"
#include <stddef.h>
////////////////////////////////////////////////////////////////////////////////
// Initialize JSON string
////////////////////////////////////////////////////////////////////////////////
json_t::json_t(
const int strlen,
const int toklen
)
{
cap = strlen? strlen + 1: JSON_CAPACITY + 1;
len = strlen;
FUNCTION_CALL(ptr, (char *)malloc(cap), ERROR_ALLOC);
ptr[len] = '\0';
FUNCTION_CALL(
toks, (jsmntok_t *)malloc(toklen * sizeof(jsmntok_t)), ERROR_ALLOC
);
return;
}
////////////////////////////////////////////////////////////////////////////////
// Initialize JSON string with other JSON string
////////////////////////////////////////////////////////////////////////////////
json_t::json_t(const json_t & newjson)
{
cap = newjson.cap;
len = newjson.len;
FREE(ptr);
ptr = newjson.ptr;
FREE(toks);
toks = newjson.toks;
return;
}
////////////////////////////////////////////////////////////////////////////////
// Delete JSON string
////////////////////////////////////////////////////////////////////////////////
json_t::~json_t(void)
{
FREE(ptr);
FREE(toks);
return;
}
////////////////////////////////////////////////////////////////////////////////
// Token name check
////////////////////////////////////////////////////////////////////////////////
int json_t::jsoneq(const int pos, const char * str)
{
if (
toks[pos].type == JSMN_STRING
&& (int)strlen(str) == GetTokenLen(pos)
&& !strncmp(GetTokenStart(pos), str, GetTokenLen(pos))
) { return 1; }
return 0;
}
// definitions.cc