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
|
#if !defined(WHATS_NG_UTILS_H)
#define WHATS_NG_UTILS_H
#include "WhatsAPI++/IMutex.h"
class ScopedLock
{
public:
ScopedLock(HANDLE h, int t = INFINITE) : handle_(h), timeout_(t)
{
WaitForSingleObject(handle_,timeout_);
}
~ScopedLock()
{
if(handle_)
ReleaseMutex(handle_);
}
void Unlock()
{
ReleaseMutex(handle_);
handle_ = 0;
}
private:
HANDLE handle_;
int timeout_;
};
class Mutex : public IMutex
{
private:
HANDLE handle;
public:
Mutex() : handle(NULL) {}
virtual ~Mutex()
{
if (this->handle != NULL)
{
ReleaseMutex(this->handle);
}
}
virtual void lock()
{
if (this->handle == NULL)
{
this->handle = CreateMutex(NULL, FALSE, NULL);
}
}
virtual void unlock()
{
ReleaseMutex(this->handle);
this->handle = NULL;
}
};
std::string getLastErrorMsg();
void UnixTimeToFileTime(time_t t, LPFILETIME pft);
namespace utils
{
namespace debug
{
int log(std::string file_name, std::string text);
};
namespace conversion
{
DWORD to_timestamp( std::string data );
};
namespace text
{
std::string source_get_value(std::string* data, unsigned int argument_count, ...);
};
BYTE* md5string(const BYTE*, int, BYTE* digest);
__forceinline BYTE* md5string(const std::string& str, BYTE* digest) {
return md5string((BYTE*)str.data(), (int)str.length(), digest);
}
};
#endif
|