summaryrefslogtreecommitdiff
path: root/plugins/Ping/src/log.cpp
blob: cc9a166947fa838782502d74200d324e06b71d28 (plain)
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
#include "common.h"

INT_PTR Log(WPARAM wParam, LPARAM) {

	TCHAR buf[1024], tbuf[512], dbuf[512];
	CallService(PLUG "/GetLogFilename", (WPARAM)1024, (LPARAM)buf);

	//char TBcapt[255];
	SYSTEMTIME systime;

	GetLocalTime(&systime);

	GetTimeFormat(LOCALE_USER_DEFAULT, 0, &systime, 0, tbuf, 512);
	GetDateFormat(LOCALE_USER_DEFAULT, 0, &systime, 0, dbuf, 512);

	TCHAR *line = (TCHAR *)wParam;

	FILE *f = _tfopen(buf, _T("a+"));
	if (f) {
		if (options.log_csv) {
			_ftprintf(f, _T("%s, %s, %s\n"), dbuf, tbuf, line);
		}
		else {
			_ftprintf(f, _T("%s, %s: %s\n"), dbuf, tbuf, line);
		}
		fclose(f);
	}

	return 0;
}

INT_PTR GetLogFilename(WPARAM wParam, LPARAM lParam) {
	DBVARIANT dbv;
	TCHAR *filename = (TCHAR *)lParam;
	if (db_get_ts(0, PLUG, "LogFilename", &dbv)) {
		CallService(MS_DB_GETPROFILEPATHT, wParam, (LPARAM)filename);
		mir_tstrncat(filename, _T("\\ping_log.txt"), _TRUNCATE);
	}
	else {
		mir_tstrncpy(filename, dbv.ptszVal, wParam);
		db_free(&dbv);
	}

	((TCHAR *)lParam)[wParam - 1] = 0;

	return 0;
}

INT_PTR SetLogFilename(WPARAM, LPARAM lParam) {
	db_set_ts(0, PLUG, "LogFilename", (TCHAR *)lParam);
	return 0;
}

INT_PTR ViewLogData(WPARAM wParam, LPARAM) {
	TCHAR buf[MAX_PATH];
	CallService(PLUG "/GetLogFilename", (WPARAM)MAX_PATH, (LPARAM)buf);
	return (INT_PTR)ShellExecute((HWND)wParam, _T("edit"), buf, _T(""), _T(""), SW_SHOW);
}