forked from cloudflarearchive/kyotocabinet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kcutil.cc
417 lines (366 loc) · 13.4 KB
/
kcutil.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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
/*************************************************************************************************
* Utility functions
* Copyright (C) 2009-2012 FAL Labs
* Copyright (C) 2013-2017 Cloudflare Inc.
* Copyright (C) 2018-2019 TrustYou GmbH
* This file is part of Kyoto Cabinet.
* This program is free software: you can redistribute it and/or modify it under the terms of
* the GNU General Public License as published by the Free Software Foundation, either version
* 3 of the License, or any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public License along with this program.
* If not, see <http://www.gnu.org/licenses/>.
*************************************************************************************************/
#include "kcutil.h"
#include "myconf.h"
#include "modp_b64.h"
namespace kyotocabinet { // common namespace
/** The package version. */
const char* const VERSION = _KC_VERSION;
/** The library version. */
const int32_t LIBVER = _KC_LIBVER;
/** The library revision. */
const int32_t LIBREV = _KC_LIBREV;
/** The database format version. */
const int32_t FMTVER = _KC_FMTVER;
/** The system name. */
const char* const OSNAME = _KC_OSNAME;
/** The flag for big endian environments. */
const bool BIGEND = _KC_BIGEND ? true : false;
/** The clock tick of interruption. */
#if defined(_SYS_MSVC_) || defined(_SYS_MINGW_)
const int32_t CLOCKTICK = 100;
#else
const int32_t CLOCKTICK = sysconf(_SC_CLK_TCK);
#endif
/** The size of a page. */
#if defined(_SYS_MSVC_) || defined(_SYS_MINGW_)
static int32_t win_getpagesize() {
::SYSTEM_INFO ibuf;
::GetSystemInfo(&ibuf);
return ibuf.dwPageSize;
}
const int32_t PAGESIZ = win_getpagesize();
#else
const int32_t PAGESIZ = sysconf(_SC_PAGESIZE);
#endif
/** The extra feature list. */
const char* const FEATURES = ""
#if _KC_GCCATOMIC
"(atomic)"
#endif
#if _KC_ZLIB
"(zlib)"
#endif
#if _KC_LZO
"(lzo)"
#endif
#if _KC_LZMA
"(lzma)"
#endif
;
// get the levenshtein distance of two arrays
template<class CHARTYPE, class CNTTYPE>
static size_t levdist(const CHARTYPE* abuf, size_t asiz, const CHARTYPE* bbuf, size_t bsiz) {
size_t dsiz = bsiz + 1;
size_t tsiz = (asiz + 1) * dsiz;
CNTTYPE tblstack[2048/sizeof(CNTTYPE)];
CNTTYPE* tbl = tsiz > sizeof(tblstack) / sizeof(*tblstack) ? new CNTTYPE[tsiz] : tblstack;
tbl[0] = 0;
for (size_t i = 1; i <= asiz; i++) {
tbl[i*dsiz] = i;
}
for (size_t i = 1; i <= bsiz; i++) {
tbl[i] = i;
}
abuf--;
bbuf--;
for (size_t i = 1; i <= asiz; i++) {
for (size_t j = 1; j <= bsiz; j++) {
uint32_t ac = tbl[(i-1)*dsiz+j] + 1;
uint32_t bc = tbl[i*dsiz+j-1] + 1;
uint32_t cc = tbl[(i-1)*dsiz+j-1] + (abuf[i] != bbuf[j]);
ac = ac < bc ? ac : bc;
tbl[i*dsiz+j] = ac < cc ? ac : cc;
}
}
size_t ed = tbl[asiz*dsiz+bsiz];
if (tbl != tblstack) delete[] tbl;
return ed;
}
/**
* Calculate the levenshtein distance of two regions in bytes.
*/
size_t memdist(const void* abuf, size_t asiz, const void* bbuf, size_t bsiz) {
_assert_(abuf && asiz <= MEMMAXSIZ && bbuf && bsiz <= MEMMAXSIZ);
return asiz > UINT8MAX || bsiz > UINT8MAX ?
levdist<const char, uint32_t>((const char*)abuf, asiz, (const char*)bbuf, bsiz) :
levdist<const char, uint8_t>((const char*)abuf, asiz, (const char*)bbuf, bsiz);
}
/**
* Calculate the levenshtein distance of two UTF-8 strings.
*/
size_t strutfdist(const char* astr, const char* bstr) {
_assert_(astr && bstr);
size_t anum = strutflen(astr);
uint32_t astack[128];
uint32_t* aary = anum > sizeof(astack) / sizeof(*astack) ? new uint32_t[anum] : astack;
strutftoucs(astr, aary, &anum);
size_t bnum = strutflen(bstr);
uint32_t bstack[128];
uint32_t* bary = bnum > sizeof(bstack) / sizeof(*bstack) ? new uint32_t[bnum] : bstack;
strutftoucs(bstr, bary, &bnum);
size_t dist = strucsdist(aary, anum, bary, bnum);
if (bary != bstack) delete[] bary;
if (aary != astack) delete[] aary;
return dist;
}
/**
* Calculate the levenshtein distance of two UCS-4 arrays.
*/
size_t strucsdist(const uint32_t* aary, size_t anum, const uint32_t* bary, size_t bnum) {
_assert_(aary && anum <= MEMMAXSIZ && bary && bnum <= MEMMAXSIZ);
return anum > UINT8MAX || bnum > UINT8MAX ?
levdist<const uint32_t, uint32_t>(aary, anum, bary, bnum) :
levdist<const uint32_t, uint8_t>(aary, anum, bary, bnum);
}
/**
* Allocate a nullified region on memory.
*/
void* mapalloc(size_t size) {
#if defined(_SYS_LINUX_)
_assert_(size > 0 && size <= MEMMAXSIZ);
void* ptr = ::mmap(0, sizeof(size) + size,
PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
if (ptr == MAP_FAILED) throw std::bad_alloc();
*(size_t*)ptr = size;
return (char*)ptr + sizeof(size);
#else
_assert_(size > 0 && size <= MEMMAXSIZ);
void* ptr = std::calloc(size, 1);
if (!ptr) throw std::bad_alloc();
return ptr;
#endif
}
/**
* Free a region on memory.
*/
void mapfree(void* ptr) {
#if defined(_SYS_LINUX_)
_assert_(ptr);
size_t size = *((size_t*)ptr - 1);
::munmap((char*)ptr - sizeof(size), sizeof(size) + size);
#else
_assert_(ptr);
std::free(ptr);
#endif
}
/**
* Get the time of day in seconds.
* @return the time of day in seconds. The accuracy is in microseconds.
*/
double time() {
#if defined(_SYS_MSVC_) || defined(_SYS_MINGW_)
_assert_(true);
::FILETIME ft;
::GetSystemTimeAsFileTime(&ft);
::LARGE_INTEGER li;
li.LowPart = ft.dwLowDateTime;
li.HighPart = ft.dwHighDateTime;
return li.QuadPart / 10000000.0;
#else
_assert_(true);
struct ::timeval tv;
if (::gettimeofday(&tv, NULL) != 0) return 0.0;
return tv.tv_sec + tv.tv_usec / 1000000.0;
#endif
}
/**
* Get the process ID.
*/
int64_t getpid() {
#if defined(_SYS_MSVC_) || defined(_SYS_MINGW_)
_assert_(true);
return ::GetCurrentProcessId();
#else
_assert_(true);
return ::getpid();
#endif
}
/**
* Get the value of an environment variable.
*/
const char* getenv(const char* name) {
_assert_(name);
return ::getenv(name);
}
/**
* Get system information of the environment.
*/
void getsysinfo(std::map<std::string, std::string>* strmap) {
#if defined(_SYS_LINUX_)
_assert_(strmap);
struct ::rusage rbuf;
std::memset(&rbuf, 0, sizeof(rbuf));
if (::getrusage(RUSAGE_SELF, &rbuf) == 0) {
(*strmap)["ru_utime"] = strprintf("%0.6f",
rbuf.ru_utime.tv_sec + rbuf.ru_utime.tv_usec / 1000000.0);
(*strmap)["ru_stime"] = strprintf("%0.6f",
rbuf.ru_stime.tv_sec + rbuf.ru_stime.tv_usec / 1000000.0);
if (rbuf.ru_maxrss > 0) {
int64_t size = rbuf.ru_maxrss * 1024LL;
(*strmap)["mem_peak"] = strprintf("%lld", (long long)size);
(*strmap)["mem_size"] = strprintf("%lld", (long long)size);
(*strmap)["mem_rss"] = strprintf("%lld", (long long)size);
}
}
std::ifstream ifs;
ifs.open("/proc/self/status", std::ios_base::in | std::ios_base::binary);
if (ifs) {
std::string line;
while (getline(ifs, line)) {
size_t idx = line.find(':');
if (idx != std::string::npos) {
const std::string& name = line.substr(0, idx);
idx++;
while (idx < line.size() && line[idx] >= '\0' && line[idx] <= ' ') {
idx++;
}
const std::string& value = line.substr(idx);
if (name == "VmPeak") {
int64_t size = atoix(value.c_str());
if (size > 0) (*strmap)["mem_peak"] = strprintf("%lld", (long long)size);
} else if (name == "VmSize") {
int64_t size = atoix(value.c_str());
if (size > 0) (*strmap)["mem_size"] = strprintf("%lld", (long long)size);
} else if (name == "VmRSS") {
int64_t size = atoix(value.c_str());
if (size > 0) (*strmap)["mem_rss"] = strprintf("%lld", (long long)size);
}
}
}
ifs.close();
}
ifs.open("/proc/meminfo", std::ios_base::in | std::ios_base::binary);
if (ifs) {
std::string line;
while (getline(ifs, line)) {
size_t idx = line.find(':');
if (idx != std::string::npos) {
const std::string& name = line.substr(0, idx);
idx++;
while (idx < line.size() && line[idx] >= '\0' && line[idx] <= ' ') {
idx++;
}
const std::string& value = line.substr(idx);
if (name == "MemTotal") {
int64_t size = atoix(value.c_str());
if (size > 0) (*strmap)["mem_total"] = strprintf("%lld", (long long)size);
} else if (name == "MemFree") {
int64_t size = atoix(value.c_str());
if (size > 0) (*strmap)["mem_free"] = strprintf("%lld", (long long)size);
} else if (name == "Cached") {
int64_t size = atoix(value.c_str());
if (size > 0) (*strmap)["mem_cached"] = strprintf("%lld", (long long)size);
}
}
}
ifs.close();
}
#elif defined(_SYS_MACOSX_)
_assert_(strmap);
struct ::rusage rbuf;
std::memset(&rbuf, 0, sizeof(rbuf));
if (::getrusage(RUSAGE_SELF, &rbuf) == 0) {
(*strmap)["ru_utime"] = strprintf("%0.6f",
rbuf.ru_utime.tv_sec + rbuf.ru_utime.tv_usec / 1000000.0);
(*strmap)["ru_stime"] = strprintf("%0.6f",
rbuf.ru_stime.tv_sec + rbuf.ru_stime.tv_usec / 1000000.0);
if (rbuf.ru_maxrss > 0) {
int64_t size = rbuf.ru_maxrss;
(*strmap)["mem_peak"] = strprintf("%lld", (long long)size);
(*strmap)["mem_size"] = strprintf("%lld", (long long)size);
(*strmap)["mem_rss"] = strprintf("%lld", (long long)size);
}
}
#elif defined(_SYS_FREEBSD_) || defined(_SYS_SUNOS_)
_assert_(strmap);
struct ::rusage rbuf;
std::memset(&rbuf, 0, sizeof(rbuf));
if (::getrusage(RUSAGE_SELF, &rbuf) == 0) {
(*strmap)["ru_utime"] = strprintf("%0.6f",
rbuf.ru_utime.tv_sec + rbuf.ru_utime.tv_usec / 1000000.0);
(*strmap)["ru_stime"] = strprintf("%0.6f",
rbuf.ru_stime.tv_sec + rbuf.ru_stime.tv_usec / 1000000.0);
if (rbuf.ru_maxrss > 0) {
int64_t size = rbuf.ru_maxrss * 1024LL;
(*strmap)["mem_peak"] = strprintf("%lld", (long long)size);
(*strmap)["mem_size"] = strprintf("%lld", (long long)size);
(*strmap)["mem_rss"] = strprintf("%lld", (long long)size);
}
}
#elif defined(_SYS_MSVC_) || defined(_SYS_MINGW_)
_assert_(strmap);
::DWORD pid = ::GetCurrentProcessId();
::HANDLE ph = ::OpenProcess(PROCESS_QUERY_INFORMATION, false, pid);
if (ph) {
::FILETIME ct, et, kt, ut;
if (::GetProcessTimes(ph, &ct, &et, &kt, &ut)) {
::LARGE_INTEGER li;
li.LowPart = ut.dwLowDateTime;
li.HighPart = ut.dwHighDateTime;
(*strmap)["ru_utime"] = strprintf("%0.6f", li.QuadPart / 10000000.0);
li.LowPart = kt.dwLowDateTime;
li.HighPart = kt.dwHighDateTime;
(*strmap)["ru_stime"] = strprintf("%0.6f", li.QuadPart / 10000000.0);
}
::CloseHandle(ph);
}
::MEMORYSTATUSEX msbuf;
msbuf.dwLength = sizeof(msbuf);
::GlobalMemoryStatusEx(&msbuf);
(*strmap)["mem_total"] = strprintf("%lld", (long long)msbuf.ullTotalPhys);
(*strmap)["mem_free"] = strprintf("%lld", (long long)msbuf.ullAvailPhys);
int64_t cached = msbuf.ullTotalPhys - msbuf.ullAvailPhys;
(*strmap)["mem_cached"] = strprintf("%lld", (long long)cached);
#else
_assert_(strmap);
#endif
}
/**
* Set the standard streams into the binary mode.
*/
void setstdiobin() {
#if defined(_SYS_MSVC_) || defined(_SYS_MINGW_)
_assert_(true);
_setmode(_fileno(stdin), O_BINARY);
_setmode(_fileno(stdout), O_BINARY);
_setmode(_fileno(stderr), O_BINARY);
#else
_assert_(true);
#endif
}
/**
* Encode a serial object by Base64 encoding.
*/
char* baseencode(const void* buf, size_t size) {
_assert_(buf && size <= MEMMAXSIZ);
const char* rp = (const char*)buf;
char* zbuf = new char[size*4/3+5];
modp_b64_encode(zbuf, rp, size);
return zbuf;
}
/**
* Decode a string encoded by Base64 encoding.
*/
char* basedecode(const char* str, size_t* sp) {
_assert_(str && sp);
size_t len = std::strlen(str);
char* zbuf = new char[len+4];
*sp = modp_b64_decode(zbuf, str, len);
return (char*)zbuf;
}
} // common namespace
// END OF FILE