forked from notsecure/uTox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
util.c
124 lines (101 loc) · 2.22 KB
/
util.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
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
#include "main.h"
void* file_raw(char *path, uint32_t *size)
{
FILE *file;
char *data;
int len;
file = fopen(path, "rb");
if(!file) {
debug("File not found (%s)\n", path);
return NULL;
}
fseek(file, 0, SEEK_END);
len = ftell(file);
data = malloc(len);
if(!data) {
fclose(file);
return NULL;
}
fseek(file, 0, SEEK_SET);
if(fread(data, len, 1, file) != 1) {
debug("Read error (%s)\n", path);
fclose(file);
free(data);
return NULL;
}
fclose(file);
debug("Read %u bytes (%s)\n", len, path);
if(size) {
*size = len;
}
return data;
}
static void to_hex(uint8_t *a, uint8_t *p, int size)
{
uint8_t b, c, *end = p + size;
while(p != end) {
b = *p++;
c = (b & 0xF);
b = (b >> 4);
if(b < 10) {
*a++ = b + '0';
} else {
*a++ = b - 10 + 'A';
}
if(c < 10) {
*a++ = c + '0';
} else {
*a++ = c - 10 + 'A';
}
}
}
void id_to_string(uint8_t *dest, uint8_t *src)
{
to_hex(dest, src, TOX_FRIEND_ADDRESS_SIZE);
}
void cid_to_string(uint8_t *dest, uint8_t *src)
{
to_hex(dest, src, TOX_CLIENT_ID_SIZE);
}
_Bool string_to_id(uint8_t *w, uint8_t *a)
{
uint8_t *end = w + TOX_FRIEND_ADDRESS_SIZE;
while(w != end) {
uint8_t c, v;
c = *a++;
if(c >= '0' && c <= '9') {
v = (c - '0') << 4;
} else if(c >= 'A' && c <= 'F') {
v = (c - 'A' + 10) << 4;
} else {
return 0;
}
c = *a++;
if(c >= '0' && c <= '9') {
v |= (c - '0');
} else if(c >= 'A' && c <= 'F') {
v |= (c - 'A' + 10);
} else {
return 0;
}
*w++ = v;
}
return 1;
}
int sprint_bytes(uint8_t *dest, uint64_t bytes)
{
char *str[] = {"B", "KiB", "MiB", "GiB"};
int i = 0;
double f = bytes;
while(bytes >= 1024)
{
bytes /= 1024;
f /= 1024.0;
i++;
}
int r;
r = sprintf((char*)dest, "%u", (uint32_t)bytes);
//missing decimals
r += sprintf((char*)dest + r, "%s", str[i]);
return r;
}