From 827572f362c68b0029826de85fa100c59023d874 Mon Sep 17 00:00:00 2001 From: Tobias Weimer Date: Tue, 27 Nov 2012 22:33:19 +0000 Subject: Adopted Ping Plugin git-svn-id: http://svn.miranda-ng.org/main/trunk@2531 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/ping/log.cpp | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 plugins/ping/log.cpp (limited to 'plugins/ping/log.cpp') diff --git a/plugins/ping/log.cpp b/plugins/ping/log.cpp new file mode 100644 index 0000000000..de2889fde1 --- /dev/null +++ b/plugins/ping/log.cpp @@ -0,0 +1,59 @@ +#include "common.h" +#include "log.h" + +INT_PTR Log(WPARAM wParam, LPARAM 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); + + char *line = (char *)wParam; + + FILE *f = _tfopen(buf, _T("a+")); + if(f) { + if(options.log_csv) { + fprintf(f, "%s, %s, %s\n", dbuf, tbuf, line); + } else { + fprintf(f, "%s, %s: %s\n", dbuf, tbuf, line); + } + fclose(f); + } + + return 0; +} + +INT_PTR GetLogFilename(WPARAM wParam, LPARAM lParam) { + DBVARIANT dbv; + char *filename = (char *)lParam; + if(DBGetContactSetting(0, PLUG, "LogFilename", &dbv)) { + CallService(MS_DB_GETPROFILEPATH, (WPARAM)wParam, (LPARAM)filename); + strcat(filename, "\\"); + strcat(filename, "ping_log.txt"); + } else { + strncpy(filename, dbv.pszVal, wParam); + DBFreeVariant(&dbv); + } + + ((char *)lParam)[wParam - 1] = 0; + + return 0; +} + +INT_PTR SetLogFilename(WPARAM wParam, LPARAM lParam) { + DBWriteContactSettingString(0, PLUG, "LogFilename", (char *)lParam); + return 0; +} + +INT_PTR ViewLogData(WPARAM wParam, LPARAM lParam) { + char buf[1024]; + CallService(PLUG "/GetLogFilename", (WPARAM)MAX_PATH, (LPARAM)buf); + return (INT_PTR)ShellExecute((HWND)wParam, _T("edit"), buf, _T(""), _T(""), SW_SHOW); +} + -- cgit v1.2.3