-
Notifications
You must be signed in to change notification settings - Fork 9
/
util.h
139 lines (95 loc) · 3.34 KB
/
util.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
struct YAAMP_CLIENT;
struct COMMONLISTITEM
{
void *data;
struct COMMONLISTITEM *next;
struct COMMONLISTITEM *prev;
};
typedef COMMONLISTITEM *CLI;
typedef void (*LISTFREEPARAM)(void *);
class CommonList
{
public:
CommonList();
~CommonList();
CLI AddHead(void *data);
CLI AddTail(void *data);
void Delete(CLI item);
void Delete(void *data);
void DeleteAll(LISTFREEPARAM freeparam);
CLI Find(void *data);
void Swap(CLI i1, CLI i2);
void Enter();
void Leave();
pthread_mutex_t mutex;
int count;
CLI first;
CLI last;
};
void CommonLock(pthread_mutex_t *mutex);
void CommonUnlock(pthread_mutex_t *mutex);
//////////////////////////////////////////////////////////////////////////
bool json_get_bool(json_value *json, const char *name);
json_int_t json_get_int(json_value *json, const char *name);
double json_get_double(json_value *json, const char *name);
const char *json_get_string(json_value *json, const char *name);
json_value *json_get_array(json_value *json, const char *name);
json_value *json_get_object(json_value *json, const char *name);
void yaamp_create_mutex(pthread_mutex_t *mutex);
bool yaamp_error(char const *message);
const char *header_value(const char *data, const char *search, char *value);
void initlog(const char *algo);
void closelogs();
void debuglog(const char *format, ...);
void stratumlog(const char *format, ...);
void stratumlogdate(const char *format, ...);
void clientlog(YAAMP_CLIENT *client, const char *format, ...);
void rejectlog(const char *format, ...);
//////////////////////////////////////////////////////////////////////////
vector<string> merkle_steps(vector<string> input);
string merkle_with_first(vector<string> steps, string f);
//////////////////////////////////////////////////////////////////////////
bool base58_decode(const char *input, char *output);
bool is_base58(char *input);
void base64_encode(char *base64, const char *normal);
void base64_decode(char *normal, const char *base64);
void ser_number(int n, char *s);
void ser_string_be(const char *input, char *output, int len);
void ser_string_be2(const char *input, char *output, int len);
void string_be(const char *input, char *output);
void string_be1(char *s);
bool ishexa(char *hex, int len);
void hexlify(char *hex, const unsigned char *bin, int len);
void binlify(unsigned char *bin, const char *hex);
unsigned int htoi(const char *s);
uint64_t htoi64(const char *s);
uint64_t decode_compact(const char *input);
uint64_t diff_to_target(double difficulty);
double target_to_diff(uint64_t target);
uint64_t get_hash_difficulty(unsigned char *input);
long long current_timestamp();
long long current_timestamp_dms();
int opened_files();
int resident_size();
void string_lower(char *s);
void string_upper(char *s);
int getblocheight(const char *coinb1);
//////////////////////////////////////////////////////////////////////////
#ifndef max
#define max(a,b) (((a) > (b)) ? (a) : (b))
#endif
#ifndef min
#define min(a,b) (((a) < (b)) ? (a) : (b))
#endif
//////////////////////////////////////////////////////////////////////////
#if !HAVE_DECL_LE16DEC
static inline uint16_t le16dec(const void *pp)
{
const uint8_t *p = (uint8_t const *)pp;
return ((uint16_t)(p[0]) + ((uint16_t)(p[1]) << 8));
}
#endif
static inline uint32_t bswap32(uint32_t x) {
__asm__ __volatile__ ("bswapl %0" : "=r" (x) : "0" (x));
return x;
}