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
|
/*
TCString.h - TCString class
Copyright (c) 2005-2008 Chervov Dmitry
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 2 of the License, or
(at your option) 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, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#pragma once
#include <windows.h>
#include <tchar.h>
#include <crtdbg.h>
#ifdef CHARARRAY_CONVERT
#include "TMyArray.h"
#endif
#include "newpluginapi.h"
#include "m_system.h"
#include "m_database.h"
__inline int My_lstrlen(LPCSTR lpString) {return lstrlenA(lpString);}
__inline int My_lstrlen(LPCWSTR lpString) {return lstrlenW(lpString);}
__inline int My_lstrcmp(LPCSTR lpString1, LPCSTR lpString2) {return lstrcmpA(lpString1, lpString2);}
__inline int My_lstrcmp(LPCWSTR lpString1, LPCWSTR lpString2) {return lstrcmpW(lpString1, lpString2);}
__inline LPCSTR My_strstr(LPCSTR lpString1, LPCSTR lpString2) {return strstr(lpString1, lpString2);}
__inline LPWSTR My_strstr(LPCWSTR lpString1, LPCWSTR lpString2) {return (LPWSTR)wcsstr(lpString1, lpString2);}
__inline LPSTR My_lstrcpy(LPSTR lpString1, LPCSTR lpString2) {return lstrcpyA(lpString1, lpString2);}
__inline LPWSTR My_lstrcpy(LPWSTR lpString1, LPCWSTR lpString2) {return lstrcpyW(lpString1, lpString2);}
__inline LPSTR My_strncpy(LPSTR lpString1, LPCSTR lpString2, int Len) {return strncpy(lpString1, lpString2, Len);}
__inline LPWSTR My_strncpy(LPWSTR lpString1, LPCWSTR lpString2, int Len) {return wcsncpy(lpString1, lpString2, Len);}
__inline LPSTR My_strlwr(LPSTR lpString) {return _strlwr(lpString);}
__inline LPWSTR My_strlwr(LPWSTR lpString) {return _wcslwr(lpString);}
template <class T>
class TString
{
public:
TString(): pBuf(NULL), nBufSize(0), nAllocSize(0) {}
TString(const T *pStr): pBuf(NULL), nBufSize(0), nAllocSize(0) {*this = pStr;}
TString(const TString<T> &Str): pBuf(NULL), nBufSize(0), nAllocSize(0) {*this = Str.pBuf;}
~TString() {Free();}
int GetLen() const {return (nBufSize) ? (nBufSize - 1) : 0;};
int IsEmpty() const {return (!GetLen());};
T *GetBuffer(int nNewLen = -1);
void ReleaseBuffer(int nNewLen = -1);
TString<T>& Cat(const T *pStr);
TString<T>& Cat(const T c);
TString<T>& DiffCat(const T *pStart, const T *pEnd);
TString<T>& Replace(const T *szFind, const T *szReplaceBy);
TString<T>& Replace(int nIndex, int nCount, const T *szReplaceBy);
TString<T> Left(int nCount) const;
TString<T> Right(int nCount) const;
TString<T> SubStr(int nIndex, int nCount) const;
TString<T> ToLower() const;
void Empty();
void Free();
T& operator [] (int nIndex) {_ASSERT(nIndex >= 0 && nIndex <= GetLen()); return pBuf[nIndex];}
operator const T*() const {return pBuf;}
operator T*() {return pBuf;}
TString<T>& operator = (const T *pStr);
TString<T>& operator = (const TString<T> &Str) {return *this = Str.pBuf;}
// TCString& operator + (const char *pStr)
// {_ASSERT(pBuf && pStr); TCString Result(*this); return Result.Cat(pStr);}
friend TString<T> operator + (const TString<T> &Str1, const T *Str2)
{_ASSERT(Str1.pBuf && Str2); TString<T> Result(Str1); return Result.Cat(Str2);}
/* friend TCString operator + (const char *Str1, const TCString &Str2)
{_ASSERT(Str1 && Str2.pBuf); TCString Result(Str1); return Result.Cat(Str2);}*/
TString<T>& operator += (const T *pStr) {_ASSERT(pBuf && pStr); return this->Cat(pStr);}
TString<T>& operator += (const T c) {_ASSERT(pBuf); return this->Cat(c);}
int operator == (const T *pStr) const {return (!pBuf || !pStr) ? (pBuf == pStr) : !My_lstrcmp(pBuf, pStr);}
int operator != (const T *pStr) const {return (!pBuf || !pStr) ? (pBuf != pStr) : My_lstrcmp(pBuf, pStr);}
int operator < (const T *pStr) const {_ASSERT(pBuf && pStr); return My_lstrcmp(pBuf, pStr) > 0;}
int operator > (const T *pStr) const {_ASSERT(pBuf && pStr); return My_lstrcmp(pBuf, pStr) < 0;}
int operator <= (const T *pStr) const {_ASSERT(pBuf && pStr); return My_lstrcmp(pBuf, pStr) >= 0;}
int operator >= (const T *pStr) const {_ASSERT(pBuf && pStr); return My_lstrcmp(pBuf, pStr) <= 0;}
// TCString& Format(char *pszFormat, ...);
private:
void SetBufSize(int nNewBufSize);
void SetAllocSize(int nNewAllocSize);
T *pBuf;
int nBufSize; // current string length + 1 (including 0 at the end)
int nAllocSize; // allocated memory size
};
typedef TString<TCHAR> TCString;
typedef TString<char> CString;
typedef TString<WCHAR> WCString;
/*#define TCString TString<TCHAR>
#define CString TString<char>
#define WCString TString<WCHAR>*/
__inline CString TCHAR2ANSI(TCString Str)
{
if (Str == NULL)
{
return CString();
}
CString AStr;
if (!WideCharToMultiByte(CP_ACP, 0, Str, -1, AStr.GetBuffer(Str.GetLen() + 1), Str.GetLen() + 1, NULL, NULL))
{
AStr.ReleaseBuffer(0);
} else
{
AStr.ReleaseBuffer(Str.GetLen());
}
return AStr;
}
__inline TCString ANSI2TCHAR(CString Str)
{
if (Str == NULL)
{
return TCString();
}
TCString TStr;
int Len = MultiByteToWideChar(CP_ACP, 0, Str, -1, NULL, 0);
if (!MultiByteToWideChar(CP_ACP, 0, Str, -1, TStr.GetBuffer(Len), Len))
{
TStr.ReleaseBuffer(0);
} else
{
TStr.ReleaseBuffer(Len - 1);
}
return TStr;
}
__inline WCString TCHAR2WCHAR(TCString Str)
{
return Str;
}
__inline TCString WCHAR2TCHAR(WCString Str)
{
return Str;
}
#define WCHAR2ANSI TCHAR2ANSI
#define ANSI2WCHAR ANSI2TCHAR
#ifdef CHARARRAY_CONVERT
__inline CHARARRAY WCHAR2ANSI_ARRAY(CHARARRAY &c)
{
CHARARRAY Result;
int Len = WideCharToMultiByte(CP_ACP, 0, (WCHAR*)c.GetData(), c.GetSize() / sizeof(WCHAR), NULL, 0, NULL, NULL);
if (Len)
{
Result.SetAtGrow(Len - 1);
if (!WideCharToMultiByte(CP_ACP, 0, (WCHAR*)c.GetData(), c.GetSize() / sizeof(WCHAR), Result.GetData(), Len, NULL, NULL))
{
Result.RemoveAll();
}
if (Result.GetSize())
{
Result.RemoveElem(Result.GetSize() - 1); // remove the null terminator
}
}
return Result;
}
__inline CHARARRAY ANSI2WCHAR_ARRAY(CHARARRAY &c)
{
CHARARRAY Result;
int Len = MultiByteToWideChar(CP_ACP, 0, c.GetData(), c.GetSize(), NULL, 0);
if (Len)
{
Result.SetAtGrow(Len * sizeof(WCHAR) - 1);
if (!MultiByteToWideChar(CP_ACP, 0, c.GetData(), c.GetSize(), (WCHAR*)Result.GetData(), Len))
{
Result.RemoveAll();
}
if (Result.GetSize())
{
Result.RemoveElem(Result.GetSize() - 1);
Result.RemoveElem(Result.GetSize() - 1); // remove the null terminator
}
}
return Result;
}
__inline CHARARRAY WCHAR2UTF8(WCString Str)
{
CHARARRAY Result;
int Len = WideCharToMultiByte(CP_UTF8, 0, Str, -1, NULL, 0, NULL, NULL);
if (Len)
{
Result.SetAtGrow(Len - 1);
if (!WideCharToMultiByte(CP_UTF8, 0, Str, -1, Result.GetData(), Len, NULL, NULL))
{
Result.RemoveAll();
}
}
return Result;
}
#endif // CHARARRAY_CONVERT
#undef DBGetContactSettingString
CString DBGetContactSettingString(HANDLE hContact, const char *szModule, const char *szSetting, const char *szDefaultValue);
TCString DBGetContactSettingString(HANDLE hContact, const char *szModule, const char *szSetting, const TCHAR *szDefaultValue);
int DBGetContactSettingString(HANDLE hContact, const char *szModule, const char *szSetting, DBVARIANT *dbv);
TCString DBGetContactSettingAsString(HANDLE hContact, const char *szModule, const char *szSetting, const TCHAR *szDefaultValue); // also converts numeric values to a string
// various string helpers. their return values are valid only while the class is visible
class UTF8Encode
{
public:
UTF8Encode(const char *str) { p = mir_utf8encode(str); }
UTF8Encode(const wchar_t *str) { p = mir_utf8encodeW(str); }
~UTF8Encode() { mir_free(p); }
operator char*() { return p; }
private:
char *p;
};
class UTF8DecodeA
{
public:
UTF8DecodeA(const char *str) { p = mir_strdup(str); mir_utf8decode(p, NULL); }
~UTF8DecodeA() { mir_free(p); }
operator char*() { return p; }
private:
char *p;
};
class UTF8DecodeW
{
public:
UTF8DecodeW(const char *str) { p = mir_utf8decodeW(str); }
~UTF8DecodeW() { mir_free(p); }
operator wchar_t*() { return p; }
private:
wchar_t *p;
};
#define UTF8Decode UTF8DecodeW
/*class mallocStrA
{
public:
mallocStrA(int n) { p = (char*)malloc((n + 1) * sizeof(char)); }
mallocStrA(const char *str) { p = str ? strdup(str) : NULL; }
~mallocStrA() { if (p) free(p); }
operator char*() { return p; }
private:
char *p;
};
class mallocStrW
{
public:
mallocStrW(int n) { p = (wchar_t*)malloc((n + 1) * sizeof(wchar_t)); }
mallocStrW(const wchar_t *str) { p = str ? _wcsdup(str) : NULL; }
~mallocStrW() { if (p) free(p); }
operator wchar_t*() { return p; }
private:
wchar_t *p;
};
#define mallocStr mallocStrW
*/
|