-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.cpp
378 lines (316 loc) · 6.81 KB
/
util.cpp
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
#include "gcin.h"
#if UNIX
#include <errno.h>
#endif
#if UNIX
#if !CLIENT_LIB || DEBUG
static FILE *out_fp;
#endif
void p_err(char *fmt,...)
{
va_list args;
char out[4096];
va_start(args, fmt);
vsprintf(out, fmt, args);
va_end(args);
#if CLIENT_LIB
fprintf(stderr, "%s\n", out);
#else
if (getenv("NO_GTK_INIT"))
fprintf(stderr, "%s\n", out);
else {
GtkWidget *dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_CLOSE,
"%s", out);
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
}
#endif
#if DEBUG && 1
abort();
#else
if (getenv("GCIN_ERR_COREDUMP"))
abort();
exit(-1);
#endif
}
void p_err_no_alert(char *fmt,...)
{
va_list args;
char out[4096];
va_start(args, fmt);
vsprintf(out, fmt, args);
va_end(args);
fprintf(stderr, "%s\n", out);
#if DEBUG && 1
abort();
#else
if (getenv("GCIN_ERR_COREDUMP"))
abort();
exit(-1);
#endif
}
#if !CLIENT_LIB || DEBUG
static void init_out_fp()
{
if (!out_fp) {
if (getenv("GCIN_DBG_TMP") || 0) {
char fname[64];
sprintf(fname, "/tmp/gcindbg-%d-%d", getuid(), getpid());
out_fp = fopen(fname, "w");
}
if (!out_fp)
out_fp = stdout;
}
}
#endif
#if !CLIENT_LIB
void dbg_time(char *fmt,...)
{
va_list args;
time_t t;
init_out_fp();
time(&t);
struct tm *ltime = localtime(&t);
dbg("%02d:%02d:%02d ", ltime->tm_hour, ltime->tm_min, ltime->tm_sec);
va_start(args, fmt);
vfprintf(out_fp, fmt, args);
fflush(out_fp);
va_end(args);
}
#endif
#if DEBUG
void __gcin_dbg_(char *fmt,...)
{
va_list args;
init_out_fp();
va_start(args, fmt);
vfprintf(out_fp, fmt, args);
fflush(out_fp);
va_end(args);
}
#endif
char *sys_err_strA()
{
return (char *)strerror(errno);
}
#else
#include <share.h>
#include <io.h>
#include <strsafe.h>
#if _DEBUG
#define _DBG 1
#define CONSOLE_OFF 0
#endif
#if _DBG
static FILE *dbgfp;
#endif
#if GCIN_SVR
void dbg_time(char *fmt,...)
{
}
#endif
static void init_dbgfp()
{
#if _DBG
if (!dbgfp) {
#if (!GCIN_IME || 1) && !CONSOLE_OFF
AllocConsole();
fclose(stdout);
fclose(stderr);
int fh = _open_osfhandle((long)GetStdHandle(STD_OUTPUT_HANDLE), 0);
_dup2(fh, 1);
_dup2(fh, 2);
_fdopen(1, "wt");
_fdopen(2, "wt");
fflush(stdout);
#endif
char tt[512];
#if GCIN_IME
sprintf(tt, "C:\\dbg\\ime%x", GetCurrentProcessId());
#elif GCIN_SVR
sprintf(tt, "C:\\dbg\\svr%x", GetCurrentProcessId());
#else
sprintf(tt, "C:\\dbg\\other%x", GetCurrentProcessId());
#endif
dbgfp=_fsopen(tt, "wt", _SH_DENYWR);
setbuf(dbgfp, NULL);
char exe[MAX_PATH];
GetModuleFileNameA(NULL, exe, sizeof(exe));
dbg("started %s\n", exe);
}
#endif
}
int utf8_to_big5(char *in, char *out, int outN);
#if DEBUG
void __gcin_dbg_(char *format, ...) {
#if _DBG
va_list ap;
va_start(ap, format);
init_dbgfp();
char buf[1024];
vsprintf_s(buf, sizeof(buf), format, ap);
char bufb5[1024];
#if 1
utf8_to_big5(buf, bufb5, sizeof(bufb5));
#else
strcpy(bufb5, buf);
#endif
fprintf(dbgfp, "%s", bufb5);
printf("%s", bufb5);
wchar_t wchstr[1024];
utf8_to_16(buf, wchstr, ARRAYSIZE(wchstr));
OutputDebugStringW(wchstr);
fflush(dbgfp);
va_end(ap);
#endif
}
#endif
char *err_strA(DWORD dw)
{
WCHAR msgstr[128];
static char msg8[256];
LPVOID lpMsgBuf;
FormatMessageW(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
dw,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPWSTR) &lpMsgBuf,
0, NULL );
// Display the error message and exit the process
StringCchPrintfW(msgstr, ARRAYSIZE(msgstr), L"%d: %s", dw, lpMsgBuf);
utf16_to_8(msgstr, msg8, sizeof(msg8));
return msg8;
}
char *sys_err_strA()
{
return err_strA(GetLastError());
}
void p_err(char *format, ...) {
va_list ap;
va_start(ap, format);
#if _DBG
init_dbgfp();
vfprintf_s(dbgfp, format, ap);
vprintf(format, ap);
fflush(dbgfp);
#endif
char tt[512];
vsprintf_s(tt, sizeof(tt), format, ap);
WCHAR exe[512];
GetModuleFileNameW(NULL, exe, ARRAYSIZE(exe));
WCHAR u16[512];
utf8_to_16(tt, u16, ARRAYSIZE(u16));
MessageBoxW(NULL, u16, exe, MB_OK);
exit(0);
va_end(ap);
}
#if GCIN_SVR
void ErrorExit(LPTSTR lpszFunction)
{
// Retrieve the system error message for the last-error code
LPVOID lpMsgBuf;
LPVOID lpDisplayBuf;
DWORD dw = GetLastError();
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
dw,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPTSTR) &lpMsgBuf,
0, NULL );
// Display the error message and exit the process
lpDisplayBuf = (LPVOID)LocalAlloc(LMEM_ZEROINIT,
(lstrlen((LPCTSTR)lpMsgBuf) + lstrlen((LPCTSTR)lpszFunction) + 40) * sizeof(TCHAR));
StringCchPrintf((LPTSTR)lpDisplayBuf,
LocalSize(lpDisplayBuf) / sizeof(TCHAR),
TEXT("%s failed with error %d: %s"),
lpszFunction, dw, lpMsgBuf);
MessageBox(NULL, (LPCTSTR)lpDisplayBuf, TEXT("Error"), MB_OK);
LocalFree(lpMsgBuf);
LocalFree(lpDisplayBuf);
ExitProcess(dw);
}
#endif
#endif
void *zmalloc(int n)
{
void *p = malloc(n);
bzero(p, n);
return p;
}
#if !GCIN_IME
void *memdup(void *p, int n)
{
if (!p || !n)
return NULL;
void *q;
q = malloc(n);
memcpy(q, p, n);
return q;
}
// can handle eol with \n \r \n\r \r\n
char *myfgets(char *buf, int bufN, FILE *fp)
{
char *out = buf;
// int rN = 0;
while (!feof(fp) && out - buf < bufN) {
char a, b;
a = 0;
if (fread(&a, 1, 1, fp) != 1)
break;
if (a =='\n') {
b = 0;
if (fread(&b, 1, 1, fp)==1)
if (b!='\r')
fseek(fp, -1, SEEK_CUR);
break;
} else
if (a =='\r') {
b = 0;
if (fread(&b, 1, 1, fp)==1)
if (b!='\n')
fseek(fp, -1, SEEK_CUR);
break;
}
*(out++) = a;
}
*out = 0;
return buf;
}
#endif
#if GCIN_SVR
#if WIN32
#include <gdk/gdkwin32.h>
void win32_init_win(GtkWidget *win)
{
HWND handle=(HWND)gdk_win32_drawable_get_handle(win->window);
ShowWindow(handle, SW_HIDE);
SetWindowLong(handle, GWL_EXSTYLE, WS_EX_NOACTIVATE|WS_EX_TOPMOST);
SetWindowPos(handle, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED);
// ShowWindow(handle, SW_SHOW);
}
#endif
#endif
#if !GCIN_IME && !CLIENT_LIB
void box_warn(char *fmt,...)
{
va_list args;
char out[4096];
va_start(args, fmt);
vsprintf(out, fmt, args);
va_end(args);
GtkWidget *dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_CLOSE,
"%s", out);
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
}
#endif