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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
|
/*
Version information plugin for Miranda IM
Copyright © 2002-2006 Luca Santarelli, Cristian Libotean
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.
*/
#include "common.h"
BOOL (WINAPI *MyGetDiskFreeSpaceEx)(LPCTSTR, PULARGE_INTEGER, PULARGE_INTEGER, PULARGE_INTEGER);
BOOL (WINAPI *MyIsWow64Process)(HANDLE, PBOOL);
void (WINAPI *MyGetSystemInfo)(LPSYSTEM_INFO);
BOOL (WINAPI *MyGlobalMemoryStatusEx)(LPMEMORYSTATUSEX lpBuffer) = NULL;
LANGID (WINAPI *MyGetUserDefaultUILanguage)() = NULL;
LANGID (WINAPI *MyGetSystemDefaultUILanguage)() = NULL;
static int ValidExtension(TCHAR *fileName, TCHAR *extension)
{
TCHAR *dot = _tcschr(fileName, '.');
if ( dot != NULL && !lstrcmpi(dot + 1, extension))
if (dot[lstrlen(extension) + 1] == 0)
return 1;
return 0;
}
void FillLocalTime(std::tstring &output, FILETIME *fileTime)
{
TIME_ZONE_INFORMATION tzInfo = {0};
FILETIME local = {0};
SYSTEMTIME sysTime;
TCHAR date[1024];
TCHAR time[256];
FileTimeToLocalFileTime(fileTime, &local);
FileTimeToSystemTime(&local, &sysTime);
GetDateFormat(EnglishLocale, 0, &sysTime, _T("dd' 'MMM' 'yyyy"), date, SIZEOF(date));
GetTimeFormat(NULL, TIME_FORCE24HOURFORMAT, &sysTime, _T("HH':'mm':'ss"), time, SIZEOF(time)); //americans love 24hour format ;)
output = std::tstring(date) + _T(" at ") + std::tstring(time);
int res = GetTimeZoneInformation(&tzInfo);
char tzName[32] = {0};
TCHAR tzOffset[64] = {0};
int offset = 0;
switch (res) {
case TIME_ZONE_ID_DAYLIGHT:
offset = -(tzInfo.Bias + tzInfo.DaylightBias);
WideCharToMultiByte(CP_ACP, 0, tzInfo.DaylightName, -1, tzName, SIZEOF(tzName), NULL, NULL);
break;
case TIME_ZONE_ID_STANDARD:
WideCharToMultiByte(CP_ACP, 0, tzInfo.StandardName, -1, tzName, SIZEOF(tzName), NULL, NULL);
offset = -(tzInfo.Bias + tzInfo.StandardBias);
break;
case TIME_ZONE_ID_UNKNOWN:
WideCharToMultiByte(CP_ACP, 0, tzInfo.StandardName, -1, tzName, SIZEOF(tzName), NULL, NULL);
offset = -tzInfo.Bias;
break;
}
mir_sntprintf(tzOffset, SIZEOF(tzOffset), _T("UTC %+02d:%02d"), offset / 60, offset % 60);
output += _T(" (") + std::tstring(tzOffset) + _T(")");
}
CVersionInfo::CVersionInfo()
{
luiFreeDiskSpace = 0;
bDEPEnabled = 0;
}
CVersionInfo::~CVersionInfo()
{
listInactivePlugins.clear();
listActivePlugins.clear();
listUnloadablePlugins.clear();
lpzMirandaVersion.~basic_string();
lpzNightly.~basic_string();
lpzUnicodeBuild.~basic_string();
lpzBuildTime.~basic_string();
lpzMirandaPath.~basic_string();
lpzCPUName.~basic_string();
lpzCPUIdentifier.~basic_string();
};
void CVersionInfo::Initialize()
{
#ifdef _DEBUG
if (verbose) PUShowMessage("Before GetMirandaVersion().", SM_NOTIFY);
#endif
GetMirandaVersion();
#ifdef _DEBUG
if (verbose) PUShowMessage("Before GetProfileSettings().", SM_NOTIFY);
#endif
GetProfileSettings();
#ifdef _DEBUG
if (verbose) PUShowMessage("Before GetLangpackInfo().", SM_NOTIFY);
#endif
GetOSLanguages();
GetLangpackInfo();
#ifdef _DEBUG
if (verbose) PUShowMessage("Before GetPluginLists().", SM_NOTIFY);
#endif
GetPluginLists();
#ifdef _DEBUG
if (verbose) PUShowMessage("Before GetOSVersion().", SM_NOTIFY);
#endif
GetOSVersion();
#ifdef _DEBUG
if (verbose) PUShowMessage("Before GetHWSettings().", SM_NOTIFY);
#endif
GetHWSettings();
#ifdef _DEBUG
if (verbose) PUShowMessage("Done with GetHWSettings().", SM_NOTIFY);
#endif
}
bool CVersionInfo::GetMirandaVersion()
{
//Miranda version
const BYTE str_size = 64;
char str[str_size];
CallService(MS_SYSTEM_GETVERSIONTEXT, (WPARAM)str_size, (LPARAM)str);
this->lpzMirandaVersion = _A2T(str);
//Is it a nightly?
if (lpzMirandaVersion.find( _T("alpha"), 0) != std::string::npos)
lpzNightly = _T("Yes");
else
lpzNightly = _T("No");
lpzUnicodeBuild = _T("Yes");
TCHAR mirtime[128];
GetModuleTimeStamp(mirtime, 128);
lpzBuildTime = mirtime;
return TRUE;
}
bool CVersionInfo::GetOSVersion()
{
//Operating system informations
OSVERSIONINFO osvi = { 0 };
osvi.dwOSVersionInfoSize = sizeof(osvi);
GetVersionEx(&osvi);
//OSName
//Let's read the registry.
HKEY hKey;
TCHAR szKey[MAX_PATH], szValue[MAX_PATH];
switch (osvi.dwPlatformId) {
case VER_PLATFORM_WIN32_WINDOWS:
lstrcpyn(szKey, _T("Software\\Microsoft\\Windows\\CurrentVersion"), MAX_PATH);
lstrcpyn(szValue, _T("Version"), MAX_PATH);
break;
case VER_PLATFORM_WIN32_NT:
lstrcpyn(szKey, _T("Software\\Microsoft\\Windows NT\\CurrentVersion"), MAX_PATH);
lstrcpyn(szValue, _T("ProductName"), MAX_PATH);
break;
}
if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, szKey, 0, KEY_QUERY_VALUE, &hKey) == ERROR_SUCCESS) {
DWORD type, size, result;
//Get the size of the value we'll read.
result = RegQueryValueEx((HKEY)hKey, szValue, (LPDWORD)NULL, (LPDWORD)&type, (LPBYTE)NULL, (LPDWORD)&size);
if (result == ERROR_SUCCESS) {
//Read it.
TCHAR *aux = new TCHAR[size+1];
result = RegQueryValueEx((HKEY)hKey, szValue, (LPDWORD)NULL, (LPDWORD)&type, (LPBYTE)aux, (LPDWORD)&size);
lpzOSName.append(_T("Microsoft "));
lpzOSName.append(aux);
lpzOSName.append(_T(" Edition"));
delete[] aux;
}
else {
NotifyError(GetLastError(), _T("RegQueryValueEx()"), __LINE__);
lpzOSName = _T("<Error in RegQueryValueEx()>");
}
RegCloseKey(hKey);
}
else {
NotifyError(GetLastError(), _T("RegOpenKeyEx()"), __LINE__);
lpzOSName = _T("<Error in RegOpenKeyEx()>");
}
//Now we can improve it if we can.
switch (LOWORD(osvi.dwBuildNumber)) {
case 950: lpzOSName = _T("Microsoft Windows 95"); break;
case 1111: lpzOSName = _T("Microsoft Windows 95 OSR2"); break;
case 1998: lpzOSName = _T("Microsoft Windows 98"); break;
case 2222: lpzOSName = _T("Microsoft Windows 98 SE"); break;
case 3000: lpzOSName = _T("Microsoft Windows ME"); break; //Even if this is wrong, we have already read it in the registry.
case 1381: lpzOSName = _T("Microsoft Windows NT"); break; //What about service packs?
case 2195: lpzOSName = _T("Microsoft Windows 2000"); break; //What about service packs?
case 2600: lpzOSName = _T("Microsoft Windows XP"); break;
case 3790:
if (GetSystemMetrics(89)) //R2 ?
lpzOSName = _T("Microsoft Windows 2003 R2");
else
lpzOSName = _T("Microsoft Windows 2003");
break; //added windows 2003 info
}
HMODULE hKernel32 = LoadLibrary(_T("kernel32.dll"));
if (hKernel32) {
SYSTEM_INFO si = {0};
// Call GetNativeSystemInfo if supported or GetSystemInfo otherwise.
MyGetSystemInfo = (void (WINAPI *) (LPSYSTEM_INFO)) GetProcAddress(hKernel32, "GetNativeSystemInfo");
if (MyGetSystemInfo != NULL)
MyGetSystemInfo(&si);
else
GetSystemInfo(&si);
if (si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64)
lpzOSName.append(_T(", 64-bit "));
else if (si.wProcessorArchitecture==PROCESSOR_ARCHITECTURE_INTEL)
lpzOSName.append(_T(", 32-bit "));
lpzOSName.append(osvi.szCSDVersion);
lpzOSName.append(_T(" (build "));
TCHAR buildno[MAX_PATH];
_itot(osvi.dwBuildNumber, buildno, 10);
lpzOSName.append(buildno);
lpzOSName.append(_T(")"));
FreeLibrary(hKernel32);
}
else {
lpzOSName.append(_T(" "));
lpzOSName.append(osvi.szCSDVersion);
lpzOSName.append(_T(" (build "));
lpzOSName.append((TCHAR *)LOWORD(osvi.dwBuildNumber));
lpzOSName.append(_T(")"));
}
return TRUE;
}
bool CVersionInfo::GetHWSettings()
{
//CPU Info
HKEY hKey;
if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T("Hardware\\Description\\System\\CentralProcessor\\0"), 0, KEY_QUERY_VALUE, &hKey) == ERROR_SUCCESS)
{
TCHAR cpuIdent[512] = {0}, cpuName[512] = {0};
DWORD size;
if (RegQueryValueEx(hKey, _T("ProcessorNameString"), NULL, NULL, (LPBYTE)cpuName, &size) != ERROR_SUCCESS)
_tcscpy(cpuName, _T("Unknown"));
lpzCPUName = cpuName;
if (RegQueryValueEx(hKey, TEXT("Identifier"), NULL, NULL, (LPBYTE) cpuIdent, &size) != ERROR_SUCCESS)
if (RegQueryValueEx(hKey, TEXT("VendorIdentifier"), NULL, NULL, (LPBYTE) cpuIdent, &size) != ERROR_SUCCESS)
_tcscpy(cpuIdent, _T("Unknown"));
lpzCPUIdentifier = cpuIdent;
RegCloseKey(hKey);
}
while (true)
{
std::tstring::size_type pos = lpzCPUName.find(_T(" "));
if (pos != std::tstring::npos)
lpzCPUName.replace(lpzCPUName.begin() + pos, lpzCPUName.begin() + pos + 2, _T(" "));
else
break;
}
bDEPEnabled = IsProcessorFeaturePresent(PF_NX_ENABLED);
//Free space on Miranda Partition.
TCHAR szMirandaPath[MAX_PATH] = { 0 };
{
GetModuleFileName(GetModuleHandle(NULL), szMirandaPath, SIZEOF(szMirandaPath));
TCHAR* str2 = _tcsrchr(szMirandaPath,'\\');
if ( str2 != NULL) *str2=0;
}
HMODULE hKernel32;
hKernel32 = LoadLibraryA("kernel32.dll");
if (hKernel32) {
MyGetDiskFreeSpaceEx = (BOOL (WINAPI *)(LPCTSTR,PULARGE_INTEGER, PULARGE_INTEGER, PULARGE_INTEGER))GetProcAddress(hKernel32, "GetDiskFreeSpaceExW");
MyIsWow64Process = (BOOL (WINAPI *) (HANDLE, PBOOL)) GetProcAddress(hKernel32, "IsWow64Process");
MyGetSystemInfo = (void (WINAPI *) (LPSYSTEM_INFO)) GetProcAddress(hKernel32, "GetNativeSystemInfo");
MyGlobalMemoryStatusEx = (BOOL (WINAPI *) (LPMEMORYSTATUSEX)) GetProcAddress(hKernel32, "GlobalMemoryStatusEx");
if ( !MyGetSystemInfo )
MyGetSystemInfo = GetSystemInfo;
FreeLibrary(hKernel32);
}
if ( MyGetDiskFreeSpaceEx ) {
ULARGE_INTEGER FreeBytes, a, b;
MyGetDiskFreeSpaceEx(szMirandaPath, &FreeBytes, &a, &b);
//Now we need to convert it.
__int64 aux = FreeBytes.QuadPart;
aux /= (1024*1024);
luiFreeDiskSpace = (unsigned long int)aux;
}
else luiFreeDiskSpace = 0;
TCHAR szInfo[1024];
GetWindowsShell(szInfo, SIZEOF(szInfo));
lpzShell = szInfo;
GetInternetExplorerVersion(szInfo, SIZEOF(szInfo));
lpzIEVersion = szInfo;
lpzAdministratorPrivileges = (IsCurrentUserLocalAdministrator()) ? _T("Yes") : _T("No");
bIsWOW64 = 0;
if (MyIsWow64Process)
if (!MyIsWow64Process(GetCurrentProcess(), &bIsWOW64))
bIsWOW64 = 0;
SYSTEM_INFO sysInfo = {0};
GetSystemInfo(&sysInfo);
luiProcessors = sysInfo.dwNumberOfProcessors;
//Installed RAM
if (MyGlobalMemoryStatusEx) { //windows 2000+
MEMORYSTATUSEX ms = {0};
ms.dwLength = sizeof(ms);
MyGlobalMemoryStatusEx(&ms);
luiRAM = (unsigned int) ((ms.ullTotalPhys / (1024 * 1024)) + 1);
}
else {
MEMORYSTATUS ms = {0};
ms.dwLength = sizeof(ms);
GlobalMemoryStatus(&ms);
luiRAM = (ms.dwTotalPhys/(1024*1024))+1; //Ugly hack!!!!
}
return TRUE;
}
bool CVersionInfo::GetProfileSettings()
{
TCHAR* tszProfileName = Utils_ReplaceVarsT(_T("%miranda_userdata%\\%miranda_profilename%.dat"));
lpzProfilePath = tszProfileName;
WIN32_FIND_DATA fd;
if ( FindFirstFile(tszProfileName, &fd) != INVALID_HANDLE_VALUE ) {
TCHAR number[40];
mir_sntprintf( number, SIZEOF(number), _T("%.2f KBytes"), double(fd.nFileSizeLow) / 1024 );
lpzProfileSize = number;
FILETIME ftLocal;
SYSTEMTIME stLocal;
TCHAR lpszString[128];
FileTimeToLocalFileTime(&fd.ftCreationTime, &ftLocal);
FileTimeToSystemTime(&ftLocal, &stLocal);
GetISO8061Time(&stLocal, lpszString, 128);
lpzProfileCreationDate = lpszString;
}
else {
DWORD error = GetLastError();
TCHAR tmp[1024];
wsprintf(tmp, _T("%d"), error);
lpzProfileCreationDate = _T("<error ") + std::tstring(tmp) + _T(" at FileOpen>") + std::tstring(tszProfileName);
lpzProfileSize = _T("<error ") + std::tstring(tmp) + _T(" at FileOpen>") + std::tstring(tszProfileName);
}
mir_free( tszProfileName );
return true;
}
static TCHAR szSystemLocales[4096] = {0};
static WORD systemLangID;
#define US_LANG_ID 0x00000409
BOOL CALLBACK EnumSystemLocalesProc(TCHAR *szLocale)
{
DWORD locale = _ttoi(szLocale);
TCHAR *name = GetLanguageName(locale);
if ( !_tcsstr(szSystemLocales, name)) {
_tcscat(szSystemLocales, name);
_tcscat(szSystemLocales, _T(", "));
}
return TRUE;
}
BOOL CALLBACK EnumResLangProc(HMODULE hModule, LPCTSTR lpszType, LPCTSTR lpszName, WORD wIDLanguage, LONG_PTR lParam)
{
if (!lpszName)
return FALSE;
if (wIDLanguage != US_LANG_ID)
systemLangID = wIDLanguage;
return TRUE;
}
bool CVersionInfo::GetOSLanguages()
{
lpzOSLanguages = _T("(UI | Locale (User/System)) : ");
LANGID UILang;
OSVERSIONINFO os = {0};
os.dwOSVersionInfoSize = sizeof(os);
GetVersionEx(&os);
if (os.dwMajorVersion == 4) {
if (os.dwPlatformId == VER_PLATFORM_WIN32_NT) { //Win NT
HMODULE hLib = LoadLibraryA("ntdll.dll");
if (hLib) {
EnumResourceLanguages(hLib, RT_VERSION, MAKEINTRESOURCE(1), EnumResLangProc, NULL);
FreeLibrary(hLib);
if (systemLangID == US_LANG_ID) {
UINT uiACP;
uiACP = GetACP();
switch (uiACP)
{
case 874: // Thai code page activated, it's a Thai enabled system
systemLangID = MAKELANGID(LANG_THAI, SUBLANG_DEFAULT);
break;
case 1255: // Hebrew code page activated, it's a Hebrew enabled system
systemLangID = MAKELANGID(LANG_HEBREW, SUBLANG_DEFAULT);
break;
case 1256: // Arabic code page activated, it's a Arabic enabled system
systemLangID = MAKELANGID(LANG_ARABIC, SUBLANG_ARABIC_SAUDI_ARABIA);
break;
default:
break;
}
}
}
}
else { //Win 95-Me
HKEY hKey = NULL;
TCHAR szLangID[128] = _T("0x");
DWORD size = SIZEOF(szLangID) - 2;
TCHAR err[512];
if (RegOpenKeyEx(HKEY_CURRENT_USER, _T("Control Panel\\Desktop\\ResourceLocale"), 0, KEY_QUERY_VALUE, &hKey) == ERROR_SUCCESS) {
if (RegQueryValueEx(hKey, _T(""), 0, NULL, (LPBYTE) &szLangID + 2, &size) == ERROR_SUCCESS)
_tscanf(szLangID, _T("%lx"), &systemLangID);
else {
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, 0, GetLastError(), LANG_SYSTEM_DEFAULT, err, size, NULL);
MessageBox(0, err, _T("Error at RegQueryValueEx()"), MB_OK);
}
RegCloseKey(hKey);
}
else {
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, 0, GetLastError(), LANG_SYSTEM_DEFAULT, err, size, NULL);
MessageBox(0, err, _T("Error at RegOpenKeyEx()"), MB_OK);
}
}
lpzOSLanguages += GetLanguageName(systemLangID);
}
else {
HMODULE hKernel32 = LoadLibraryA("kernel32.dll");
if (hKernel32) {
MyGetUserDefaultUILanguage = (LANGID (WINAPI *)()) GetProcAddress(hKernel32, "GetUserDefaultUILanguage");
MyGetSystemDefaultUILanguage = (LANGID (WINAPI *)()) GetProcAddress(hKernel32, "GetSystemDefaultUILanguage");
FreeLibrary(hKernel32);
}
if ((MyGetUserDefaultUILanguage) && (MyGetSystemDefaultUILanguage)) {
UILang = MyGetUserDefaultUILanguage();
lpzOSLanguages += GetLanguageName(UILang);
lpzOSLanguages += _T("/");
UILang = MyGetSystemDefaultUILanguage();
lpzOSLanguages += GetLanguageName(UILang);
}
else lpzOSLanguages += _T("Missing functions in kernel32.dll (GetUserDefaultUILanguage, GetSystemDefaultUILanguage)");
}
lpzOSLanguages += _T(" | ");
lpzOSLanguages += GetLanguageName(LOCALE_USER_DEFAULT);
lpzOSLanguages += _T("/");
lpzOSLanguages += GetLanguageName(LOCALE_SYSTEM_DEFAULT);
if (db_get_b(NULL, ModuleName, "ShowInstalledLanguages", 0)) {
szSystemLocales[0] = '\0';
lpzOSLanguages += _T(" [");
EnumSystemLocales(EnumSystemLocalesProc, LCID_INSTALLED);
if (_tcslen(szSystemLocales) > 2)
szSystemLocales[ _tcslen(szSystemLocales) - 2] = '\0';
lpzOSLanguages += szSystemLocales;
lpzOSLanguages += _T("]");
}
return true;
}
int SaveInfo(const char *data, const char *lwrData, const char *search, TCHAR *dest, int size)
{
const char *pos = strstr(lwrData, search);
int res = 1;
if (pos == lwrData) {
_tcsncpy(dest, _A2T(&data[strlen(search)]), size);
res = 0;
}
return res;
}
bool CVersionInfo::GetLangpackInfo()
{
TCHAR langpackPath[MAX_PATH] = {0};
TCHAR search[MAX_PATH] = {0};
lpzLangpackModifiedDate = _T("");
GetModuleFileName(GetModuleHandle(NULL), langpackPath, SIZEOF(langpackPath));
TCHAR* p = _tcsrchr(langpackPath, '\\');
if (p) {
WIN32_FIND_DATA data = {0};
HANDLE hLangpack;
p[1] = '\0';
_tcscpy(search, langpackPath);
_tcscat(search, _T("langpack_*.txt"));
hLangpack = FindFirstFile(search, &data);
if (hLangpack != INVALID_HANDLE_VALUE) {
char buffer[1024];
char temp[1024];
FillLocalTime(lpzLangpackModifiedDate, &data.ftLastWriteTime);
TCHAR locale[128] = {0};
TCHAR language[128] = {0};
TCHAR version[128] = {0};
_tcscpy(version, _T("N/A"));
_tcsncpy(language, data.cFileName, SIZEOF(language));
p = _tcsrchr(language, '.');
p[0] = '\0';
_tcscat(langpackPath, data.cFileName);
FILE *fin = _tfopen(langpackPath, _T("rt"));
if (fin) {
size_t len;
while (!feof(fin)) {
fgets(buffer, SIZEOF(buffer), fin);
len = strlen(buffer);
if (buffer[len - 1] == '\n') buffer[len - 1] = '\0';
strncpy(temp, buffer, SIZEOF(temp));
_strlwr(temp);
if (SaveInfo(buffer, temp, "language: ", language, SIZEOF(language))) {
if (SaveInfo(buffer, temp, "locale: ", locale, SIZEOF(locale))) {
char* p = strstr(buffer, "; FLID: ");
if (p) {
int ok = 1;
int i;
for (i = 0; ((i < 3) && (ok)); i++) {
p = strrchr(temp, '.');
if (p)
p[0] = '\0';
else
ok = 0;
}
p = strrchr(temp, ' ');
if ((ok) && (p))
_tcsncpy(version, _A2T(&buffer[p - temp + 1]), SIZEOF(version));
else
_tcsncpy(version, _T("<unknown>"), SIZEOF(version));
} } } }
lpzLangpackInfo = std::tstring(language) + _T(" [") + std::tstring(locale) + _T("]");
if ( version[0] )
lpzLangpackInfo += _T(" v. ") + std::tstring(version);
fclose(fin);
}
else {
int err = GetLastError();
lpzLangpackInfo = _T("<error> Could not open file " + std::tstring(data.cFileName));
}
FindClose(hLangpack);
}
else lpzLangpackInfo = _T("No language pack installed");
}
return true;
}
/*bool CVersionInfo::GetWeatherInfo()
{
TCHAR path[MAX_PATH];
GetModuleFileName(NULL, path, MAX_PATH);
LPTSTR fname = _tcsrchr(path, TEXT('\\'));
if (fname == NULL)
fname = path;
_tcscat(fname, _T("\\plugins\\weather\\*.ini"));
WIN32_FIND_DATA FindFileData;
HANDLE hFind = FindFirstFile(path, &FindFileData);
if (hFind == INVALID_HANDLE_VALUE) return;
do
{
if (FindFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) continue;
crs_sntprintf(fname, MAX_PATH-(fname-path), TEXT("\\plugins\\weather\\%s"), FindFileData.cFileName);
HANDLE hDumpFile = CreateFile(path, GENERIC_READ, FILE_SHARE_READ, NULL,
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
if (hDumpFile != INVALID_HANDLE_VALUE)
{
char buf[8192];
DWORD bytes = 0;
ReadFile(hDumpFile, buf, 8190, &bytes, NULL);
buf[bytes] = 0;
char* ver = strstr(buf, "Version=");
if (ver != NULL)
{
char *endid = strchr(ver, '\r');
if (endid != NULL) *endid = 0;
else
{
endid = strchr(ver, '\n');
if (endid != NULL) *endid = 0;
}
ver += 8;
}
char *id = strstr(buf, "Name=");
if (id != NULL)
{
char *endid = strchr(id, '\r');
if (endid != NULL) *endid = 0;
else
{
endid = strchr(id, '\n');
if (endid != NULL) *endid = 0;
}
id += 5;
}
TCHAR timebuf[30] = TEXT("");
GetLastWriteTime(&FindFileData.ftLastWriteTime, timebuf, 30);
static const TCHAR format[] = TEXT(" %s v.%s%S%s [%s] - %S\r\n");
buffer.appendfmt(format, FindFileData.cFileName,
(flags & VI_FLAG_FORMAT) ? TEXT("[b]") : TEXT(""),
ver,
(flags & VI_FLAG_FORMAT) ? TEXT("[/b]") : TEXT(""),
timebuf, id);
CloseHandle(hDumpFile);
}
}
while (FindNextFile(hFind, &FindFileData));
FindClose(hFind);
}*/
std::tstring GetPluginTimestamp(FILETIME *fileTime)
{
SYSTEMTIME sysTime;
FILETIME ftLocal;
FileTimeToLocalFileTime(fileTime, &ftLocal);
FileTimeToSystemTime(&ftLocal, &sysTime); //convert the file tyme to system time
TCHAR date[256]; //lovely
GetISO8061Time(&sysTime, date, 256);
return date;
}
bool CVersionInfo::GetPluginLists()
{
HANDLE hFind;
TCHAR szMirandaPath[MAX_PATH] = { 0 }, szSearchPath[MAX_PATH] = { 0 }; //For search purpose
WIN32_FIND_DATA fd;
TCHAR szMirandaPluginsPath[MAX_PATH] = { 0 }, szPluginPath[MAX_PATH] = { 0 }; //For info reading purpose
BYTE PluginIsEnabled = 0;
HINSTANCE hInstPlugin = NULL;
PLUGININFOEX *(*MirandaPluginInfo)(DWORD); //These two are used to get informations from the plugin.
PLUGININFOEX *pluginInfo = NULL; //Read above.
DWORD mirandaVersion = 0;
BOOL asmCheckOK = FALSE;
DWORD loadError;
// SYSTEMTIME sysTime; //for timestamp
bWeatherPlugin = false;
mirandaVersion = (DWORD)CallService(MS_SYSTEM_GETVERSION, 0, 0);
{
GetModuleFileName(GetModuleHandle(NULL), szMirandaPath, SIZEOF(szMirandaPath));
TCHAR* str2 = _tcsrchr(szMirandaPath,'\\');
if(str2!=NULL) *str2=0;
}
lpzMirandaPath = szMirandaPath;
//We got Miranda path, now we'll use it for two different purposes.
//1) finding plugins.
//2) Reading plugin infos
lstrcpyn(szSearchPath,szMirandaPath, MAX_PATH); //We got the path, now we copy it into szSearchPath. We'll use szSearchPath as am auxiliary variable, while szMirandaPath will keep a "fixed" value.
lstrcat(szSearchPath, _T("\\Plugins\\*.dll"));
lstrcpyn(szMirandaPluginsPath, szMirandaPath, MAX_PATH);
lstrcat(szMirandaPluginsPath, _T("\\Plugins\\"));
hFind=FindFirstFile(szSearchPath,&fd);
if ( hFind != INVALID_HANDLE_VALUE) {
do {
if (verbose) PUShowMessageT(fd.cFileName, SM_NOTIFY);
if (!ValidExtension(fd.cFileName, _T("dll")))
continue; //do not report plugins that do not have extension .dll
if (_tcsicmp(fd.cFileName, _T("weather.dll")) == 0)
bWeatherPlugin = true;
hInstPlugin = GetModuleHandle(fd.cFileName); //try to get the handle of the module
if (hInstPlugin) //if we got it then the dll is loaded (enabled)
PluginIsEnabled = 1;
else {
PluginIsEnabled = 0;
lstrcpyn(szPluginPath, szMirandaPluginsPath, MAX_PATH); // szPluginPath becomes "drive:\path\Miranda\Plugins\"
lstrcat(szPluginPath, fd.cFileName); // szPluginPath becomes "drive:\path\Miranda\Plugins\popup.dll"
hInstPlugin = LoadLibrary(szPluginPath);
}
if (!hInstPlugin) { //It wasn't loaded.
loadError = GetLastError();
int bUnknownError = 1; //assume plugin didn't load because of unknown error
//Some error messages.
//get the dlls the plugin statically links to
if (db_get_b(NULL, ModuleName, "CheckForDependencies", TRUE))
{
std::tstring linkedModules;
lstrcpyn(szPluginPath, szMirandaPluginsPath, MAX_PATH); // szPluginPath becomes "drive:\path\Miranda\Plugins\"
lstrcat(szPluginPath, fd.cFileName); // szPluginPath becomes "drive:\path\Miranda\Plugins\popup.dll"
if (GetLinkedModulesInfo(szPluginPath, linkedModules)) {
std::tstring time = GetPluginTimestamp(&fd.ftLastWriteTime);
CPlugin thePlugin(fd.cFileName, _T("<unknown>"), UUID_NULL, _T(""), 0, time.c_str(), linkedModules.c_str());
AddPlugin(thePlugin, listUnloadablePlugins);
bUnknownError = 0; //we know why the plugin didn't load
}
}
if (bUnknownError) { //if cause is unknown then report it
std::tstring time = GetPluginTimestamp(&fd.ftLastWriteTime);
TCHAR buffer[4096];
TCHAR error[2048];
//DWORD_PTR arguments[2] = {loadError, 0};
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ARGUMENT_ARRAY, NULL, loadError, 0, error, SIZEOF(error), NULL);
wsprintf(buffer, _T(" Error %ld - %s"), loadError, error);
CPlugin thePlugin( fd.cFileName, _T("<unknown>"), UUID_NULL, _T(""), 0, time.c_str(), buffer);
AddPlugin(thePlugin, listUnloadablePlugins);
}
}
else { //It was successfully loaded.
MirandaPluginInfo = (PLUGININFOEX *(*)(DWORD))GetProcAddress(hInstPlugin, "MirandaPluginInfoEx");
if (!MirandaPluginInfo)
MirandaPluginInfo = (PLUGININFOEX *(*)(DWORD))GetProcAddress(hInstPlugin, "MirandaPluginInfo");
if (!MirandaPluginInfo) //There is no function: it's not a valid plugin. Let's move on to the next file.
continue;
//It's a valid plugin, since we could find MirandaPluginInfo
#if (!defined(WIN64) && !defined(_WIN64))
asmCheckOK = FALSE;
__asm {
push mirandaVersion
push mirandaVersion
call MirandaPluginInfo
pop eax
pop eax
cmp eax, mirandaVersion
jne a1
mov asmCheckOK, 0xffffffff
a1:
}
#else
asmCheckOK = TRUE;
#endif
if (asmCheckOK)
pluginInfo = CopyPluginInfo(MirandaPluginInfo(mirandaVersion));
else {
ZeroMemory(&pluginInfo, sizeof(pluginInfo));
MessageBox(NULL, fd.cFileName, _T("Invalid plugin"), MB_OK);
}
}
//Let's get the info.
if (MirandaPluginInfo != NULL) {//a valid miranda plugin
if (pluginInfo != NULL) {
//We have loaded the informations into pluginInfo.
std::tstring timedate = GetPluginTimestamp(&fd.ftLastWriteTime);
CPlugin thePlugin(fd.cFileName, _A2T(pluginInfo->shortName), pluginInfo->uuid, /*(pluginInfo->flags & 1) ? _T("Unicode aware") :*/ _T(""), (DWORD) pluginInfo->version, timedate.c_str(), _T(""));
if (PluginIsEnabled)
AddPlugin(thePlugin, listActivePlugins);
else {
if ((IsUUIDNull(pluginInfo->uuid)) && (mirandaVersion >= PLUGIN_MAKE_VERSION(0,8,0,9))) {
thePlugin.SetErrorMessage( _T(" Plugin does not have an UUID and will not work with Miranda 0.8.\r\n"));
AddPlugin(thePlugin, listUnloadablePlugins);
}
else AddPlugin(thePlugin, listInactivePlugins);
FreeLibrary(hInstPlugin); //We don't need it anymore.
}
FreePluginInfo(pluginInfo);
MirandaPluginInfo = NULL;
#ifdef _DEBUG
if (verbose) {
TCHAR szMsg[4096] = { 0 };
wsprintf(szMsg, _T("Done with: %s"), fd.cFileName);
PUShowMessageT(szMsg, SM_NOTIFY);
}
#endif
}
else { //pluginINFO == NULL
pluginInfo = CopyPluginInfo(MirandaPluginInfo(PLUGIN_MAKE_VERSION(9, 9, 9, 9))); //let's see if the plugin likes this miranda version
char *szShortName = "<unknown>";
std::tstring time = GetPluginTimestamp(&fd.ftLastWriteTime); //get the plugin timestamp;
DWORD version = 0;
if (pluginInfo) {
szShortName = pluginInfo->shortName;
version = pluginInfo->version;
}
CPlugin thePlugin(fd.cFileName, _A2T(szShortName), (pluginInfo) ? pluginInfo->uuid : UUID_NULL, (/*((pluginInfo) && (pluginInfo->flags & 1)) ? _T("Unicode aware") :*/ _T("")), version, time.c_str(), _T(" Plugin refuses to load. Miranda version too old."));
AddPlugin(thePlugin, listUnloadablePlugins);
if (pluginInfo)
FreePluginInfo(pluginInfo);
}
}
}
while (FindNextFile(hFind,&fd));
FindClose(hFind);
}
return TRUE;
}
bool CVersionInfo::AddPlugin(CPlugin &aPlugin, std::list<CPlugin> &aList)
{
std::list<CPlugin>::iterator pos = aList.begin();
bool inserted = FALSE;
if (aList.begin() == aList.end()) { //It's empty
aList.push_back(aPlugin);
return TRUE;
}
else { //It's not empty
while (pos != aList.end()) {
//It can be either < or >, not equal.
if (aPlugin < (*pos)) {
aList.insert(pos, aPlugin);
return TRUE;
}
//It's greater: we need to insert it.
pos++;
} }
if (inserted == FALSE) {
aList.push_back(aPlugin);
return TRUE;
}
return TRUE;
};
static char *GetStringFromRVA(DWORD RVA, const LOADED_IMAGE *image)
{
char *moduleName;
moduleName = (char *) ImageRvaToVa(image->FileHeader, image->MappedAddress, RVA, NULL);
return moduleName;
}
bool CVersionInfo::GetLinkedModulesInfo(TCHAR *moduleName, std::tstring &linkedModules)
{
LOADED_IMAGE image;
ULONG importTableSize;
IMAGE_IMPORT_DESCRIPTOR *importData;
//HMODULE dllModule;
linkedModules = _T("");
bool result = false;
TCHAR szError[20];
char* szModuleName = mir_t2a(moduleName);
if (MapAndLoad(szModuleName, NULL, &image, TRUE, TRUE) == FALSE) {
wsprintf(szError, _T("%d"), GetLastError());
mir_free( szModuleName );
linkedModules = _T("<error ") + std::tstring(szError) + _T(" at MapAndLoad()>\r\n");
return result;
}
mir_free( szModuleName );
importData = (IMAGE_IMPORT_DESCRIPTOR *) ImageDirectoryEntryToData(image.MappedAddress, FALSE, IMAGE_DIRECTORY_ENTRY_IMPORT, &importTableSize);
if (!importData) {
wsprintf(szError, _T("%d"), GetLastError());
linkedModules = _T("<error ") + std::tstring(szError) + _T(" at ImageDirectoryEntryToDataEx()>\r\n");
}
else {
while (importData->Name) {
char *moduleName;
moduleName = GetStringFromRVA(importData->Name, &image);
if (!DoesDllExist(moduleName)) {
linkedModules.append( _T(" Plugin statically links to missing dll file: ") + std::tstring(_A2T(moduleName)) + _T("\r\n"));
result = true;
}
importData++; //go to next record
} }
// FreeLibrary(dllModule);
UnMapAndLoad(&image); //unload the image
return result;
}
std::tstring CVersionInfo::GetListAsString(std::list<CPlugin> &aList, DWORD flags, int beautify) {
std::list<CPlugin>::iterator pos = aList.begin();
std::tstring out = _T("");
#ifdef _DEBUG
if (verbose) PUShowMessage("CVersionInfo::GetListAsString, begin.", SM_NOTIFY);
#endif
TCHAR szHeader[32] = {0};
TCHAR szFooter[32] = {0};
if ((((flags & VISF_FORUMSTYLE) == VISF_FORUMSTYLE) || beautify) && (db_get_b(NULL, ModuleName, "BoldVersionNumber", TRUE))) {
GetStringFromDatabase("BoldBegin", _T("[b]"), szHeader, SIZEOF(szHeader));
GetStringFromDatabase("BoldEnd", _T("[/b]"), szFooter, SIZEOF(szFooter));
}
while (pos != aList.end()) {
out.append(std::tstring((*pos).getInformations(flags, szHeader, szFooter)));
pos++;
}
#ifdef _DEBUG
if (verbose) PUShowMessage("CVersionInfo::GetListAsString, end.", SM_NOTIFY);
#endif
return out;
};
void CVersionInfo::BeautifyReport(int beautify, LPCTSTR szBeautifyText, LPCTSTR szNonBeautifyText, std::tstring &out)
{
if (beautify)
out.append(szBeautifyText);
else
out.append(szNonBeautifyText);
}
void CVersionInfo::AddInfoHeader(int suppressHeader, int forumStyle, int beautify, std::tstring &out)
{
if (forumStyle) { //forum style
TCHAR szSize[256], szQuote[256];
GetStringFromDatabase("SizeBegin", _T("[size=1]"), szSize, SIZEOF(szSize));
GetStringFromDatabase("QuoteBegin", _T("[quote]"), szQuote, SIZEOF(szQuote));
out.append(szQuote);
out.append(szSize);
}
else out = _T("");
if (!suppressHeader) {
out.append( _T("Miranda NG - VersionInformation plugin by Hrk, modified by Eblis\r\n"));
if (!forumStyle) {
out.append( _T("Miranda's homepage: http://miranda-ng.org/\r\n")); //changed homepage
out.append( _T("Miranda tools: http://miranda-ng.org/\r\n\r\n")); //was missing a / before download
} }
TCHAR buffer[1024]; //for beautification
GetStringFromDatabase("BeautifyHorizLine", _T("<hr />"), buffer, SIZEOF(buffer));
BeautifyReport(beautify, buffer, _T(""), out);
GetStringFromDatabase("BeautifyBlockStart", _T("<blockquote>"), buffer, SIZEOF(buffer));
BeautifyReport(beautify, buffer, _T(""), out);
if (!suppressHeader) {
//Time of report:
TCHAR lpzTime[12]; GetTimeFormat(LOCALE_USER_DEFAULT, 0, NULL, _T("HH':'mm':'ss"), lpzTime, SIZEOF(lpzTime));
TCHAR lpzDate[32]; GetDateFormat(EnglishLocale, 0, NULL, _T("dd' 'MMMM' 'yyyy"), lpzDate, SIZEOF(lpzDate));
out.append( _T("Report generated at: ") + std::tstring(lpzTime) + _T(" on ") + std::tstring(lpzDate) + _T("\r\n\r\n"));
}
//Operating system
out.append(_T("CPU: ") + lpzCPUName + _T(" [") + lpzCPUIdentifier + _T("]"));
if (bDEPEnabled)
out.append(_T(" [DEP enabled]"));
if (luiProcessors > 1) {
TCHAR noProcs[128];
wsprintf(noProcs, _T(" [%d CPUs]"), luiProcessors);
out.append(noProcs);
}
out.append( _T("\r\n"));
//RAM
TCHAR szRAM[64]; wsprintf(szRAM, _T("%d"), luiRAM);
out.append( _T("Installed RAM: ") + std::tstring(szRAM) + _T(" MBytes\r\n"));
//operating system
out.append( _T("Operating System: ") + lpzOSName + _T("\r\n"));
//shell, IE, administrator
out.append( _T("Shell: ") + lpzShell + _T("\r\n"));
out.append( _T("Internet Explorer: ") + lpzIEVersion + _T("\r\n"));
out.append( _T("Administrator privileges: ") + lpzAdministratorPrivileges + _T("\r\n"));
//languages
out.append( _T("OS Languages: ") + lpzOSLanguages + _T("\r\n"));
//FreeDiskSpace
if (luiFreeDiskSpace) {
TCHAR szDiskSpace[64]; wsprintf(szDiskSpace, _T("%d"), luiFreeDiskSpace);
out.append( _T("Free disk space on Miranda partition: ") + std::tstring(szDiskSpace) + _T(" MBytes\r\n\r\n"));
}
//Miranda
out.append( _T("Miranda path: ") + lpzMirandaPath + _T("\r\n"));
out.append( _T("Miranda NG version: ") + lpzMirandaVersion);
if (bIsWOW64)
out.append( _T(" [running inside WOW64]"));
out.append( _T("\r\nBuild time: ") + lpzBuildTime + _T("\r\n"));
out.append( _T("Profile path: ") + lpzProfilePath + _T("\r\n"));
out.append( _T("Profile size: ") + lpzProfileSize + _T("\r\n"));
out.append( _T("Profile creation date: ") + lpzProfileCreationDate + _T("\r\n"));
out.append( _T("Language pack: ") + lpzLangpackInfo);
out.append((lpzLangpackModifiedDate.size() > 0) ? _T(", modified: ") + lpzLangpackModifiedDate : _T(""));
out.append( _T("\r\n"));
out.append(_T("Service Mode: "));
if (bServiceMode)
out.append( _T("Yes"));
else
out.append( _T("No"));
// out.append( _T("Nightly: ") + lpzNightly + _T("\r\n"));
// out.append( _T("Unicode core: ") + lpzUnicodeBuild);
GetStringFromDatabase("BeautifyBlockEnd", _T("</blockquote>"), buffer, SIZEOF(buffer));
BeautifyReport(beautify, buffer, _T("\r\n"), out);
}
void CVersionInfo::AddInfoFooter(int suppressFooter, int forumStyle, int beautify, std::tstring &out)
{
//End of report
TCHAR buffer[1024]; //for beautification purposes
GetStringFromDatabase("BeautifyHorizLine", _T("<hr />"), buffer, SIZEOF(buffer));
if (!suppressFooter) {
BeautifyReport(beautify, buffer, _T("\r\n"), out);
out.append( _T("\r\nEnd of report.\r\n"));
}
if (!forumStyle) {
if (!suppressFooter)
out.append( TranslateT("If you are going to use this report to submit a bug, remember to check the website for questions or help the developers may need.\r\nIf you don't check your bug report and give feedback, it will not be fixed!"));
}
else {
TCHAR szSize[256], szQuote[256];
GetStringFromDatabase("SizeEnd", _T("[/size]"), szSize, SIZEOF(szSize));
GetStringFromDatabase("QuoteEnd", _T("[/quote]"), szQuote, SIZEOF(szQuote));
out.append(szSize);
out.append(szQuote);
}
}
static void AddSectionAndCount(std::list<CPlugin> list, LPCTSTR listText, std::tstring &out)
{
TCHAR tmp[64];
wsprintf(tmp, _T(" (%u)"), list.size());
out.append(listText);
out.append( tmp );
out.append( _T(":"));
}
std::tstring CVersionInfo::GetInformationsAsString(int bDisableForumStyle) {
//Begin of report
std::tstring out;
int forumStyle = (bDisableForumStyle) ? 0 : db_get_b(NULL, ModuleName, "ForumStyle", TRUE);
int showUUID = db_get_b(NULL, ModuleName, "ShowUUIDs", FALSE);
int beautify = db_get_b(NULL, ModuleName, "Beautify", 0) & (!forumStyle);
int suppressHeader = db_get_b(NULL, ModuleName, "SuppressHeader", TRUE);
DWORD flags = (forumStyle) | (showUUID << 1);
AddInfoHeader(suppressHeader, forumStyle, beautify, out);
TCHAR normalPluginsStart[1024]; //for beautification purposes, for normal plugins text (start)
TCHAR normalPluginsEnd[1024]; //for beautification purposes, for normal plugins text (end)
TCHAR horizLine[1024]; //for beautification purposes
TCHAR buffer[1024]; //for beautification purposes
TCHAR headerHighlightStart[10] = _T("");
TCHAR headerHighlightEnd[10] = _T("");
if (forumStyle) {
TCHAR start[128], end[128];
GetStringFromDatabase("BoldBegin", _T("[b]"), start, SIZEOF(start));
GetStringFromDatabase("BoldEnd", _T("[/b]"), end, SIZEOF(end));
_tcsncpy(headerHighlightStart, start, SIZEOF(headerHighlightStart));
_tcsncpy(headerHighlightEnd, end, SIZEOF(headerHighlightEnd));
}
//Plugins: list of active (enabled) plugins.
GetStringFromDatabase("BeautifyHorizLine", _T("<hr />"), horizLine, SIZEOF(horizLine));
BeautifyReport(beautify, horizLine, _T("\r\n"), out);
GetStringFromDatabase("BeautifyActiveHeaderBegin", _T("<b><font size=\"-1\" color=\"DarkGreen\">"), buffer, SIZEOF(buffer));
BeautifyReport(beautify, buffer, headerHighlightStart, out);
AddSectionAndCount(listActivePlugins, _T("Active Plugins"), out);
GetStringFromDatabase("BeautifyActiveHeaderEnd", _T("</font></b>"), buffer, SIZEOF(buffer));
BeautifyReport(beautify, buffer, headerHighlightEnd, out);
out.append( _T("\r\n"));
GetStringFromDatabase("BeautifyPluginsBegin", _T("<font size=\"-2\" color=\"black\">"), normalPluginsStart, SIZEOF(normalPluginsStart));
BeautifyReport(beautify, normalPluginsStart, _T(""), out);
out.append(GetListAsString(listActivePlugins, flags, beautify));
GetStringFromDatabase("BeautifyPluginsEnd", _T("</font>"), normalPluginsEnd, SIZEOF(normalPluginsEnd));
BeautifyReport(beautify, normalPluginsEnd, _T(""), out);
//Plugins: list of inactive (disabled) plugins.
if ((!forumStyle) && ((db_get_b(NULL, ModuleName, "ShowInactive", TRUE)) || (bServiceMode))) {
BeautifyReport(beautify, horizLine, _T("\r\n"), out);
GetStringFromDatabase("BeautifyInactiveHeaderBegin", _T("<b><font size=\"-1\" color=\"DarkRed\">"), buffer, SIZEOF(buffer));
BeautifyReport(beautify, buffer, headerHighlightStart, out);
AddSectionAndCount(listInactivePlugins, _T("Unloadable Plugins"), out);
GetStringFromDatabase("BeautifyInactiveHeaderEnd", _T("</font></b>"), buffer, SIZEOF(buffer));
BeautifyReport(beautify, buffer, headerHighlightEnd, out);
out.append( _T("\r\n"));
BeautifyReport(beautify, normalPluginsStart, _T(""), out);
out.append(GetListAsString(listInactivePlugins, flags, beautify));
BeautifyReport(beautify, normalPluginsEnd, _T(""), out);
}
if (listUnloadablePlugins.size() > 0) {
BeautifyReport(beautify, horizLine, _T("\r\n"), out);
GetStringFromDatabase("BeautifyUnloadableHeaderBegin", _T("<b><font size=\"-1\"><font color=\"Red\">"), buffer, SIZEOF(buffer));
BeautifyReport(beautify, buffer, headerHighlightStart, out);
AddSectionAndCount(listUnloadablePlugins, _T("Unloadable Plugins"), out);
GetStringFromDatabase("BeautifyUnloadableHeaderEnd", _T("</font></b>"), buffer, SIZEOF(buffer));
BeautifyReport(beautify, buffer, headerHighlightEnd, out);
out.append( _T("\r\n"));
BeautifyReport(beautify, normalPluginsStart, _T(""), out);
out.append(GetListAsString(listUnloadablePlugins, flags, beautify));
BeautifyReport(beautify, normalPluginsEnd, _T(""), out);
}
if (bWeatherPlugin) {
out.append(_T("\r\nWeather ini files:\r\n-------------------------------------------------------------------------------\r\n"));
}
AddInfoFooter(suppressHeader, forumStyle, beautify, out);
return out;
}
//========== Print functions =====
void CVersionInfo::PrintInformationsToFile(const TCHAR *info)
{
TCHAR buffer[MAX_PATH], outputFileName[MAX_PATH];
if (hOutputLocation) {
FoldersGetCustomPathT(hOutputLocation, buffer, SIZEOF(buffer), _T("%miranda_path%"));
_tcscat(buffer, _T("\\VersionInfo.txt"));
}
else GetStringFromDatabase("OutputFile", _T("VersionInfo.txt"), buffer, SIZEOF(buffer));
PathToAbsoluteT(buffer, outputFileName);
FILE *fp = _tfopen(outputFileName, _T("wb"));
if ( fp != NULL ) {
char* utf = mir_utf8encodeT( info );
fputs( "\xEF\xBB\xBF", fp);
fputs( utf, fp );
fclose(fp);
TCHAR mex[512];
mir_sntprintf(mex, SIZEOF(mex), TranslateT("Information successfully written to file: \"%s\"."), outputFileName);
Log(mex);
}
else {
TCHAR mex[512];
mir_sntprintf(mex, SIZEOF(mex), TranslateT("Error during the creation of file \"%s\". Disk may be full or write protected."), outputFileName);
Log(mex);
}
}
void CVersionInfo::PrintInformationsToFile()
{
PrintInformationsToFile( GetInformationsAsString().c_str());
}
void CVersionInfo::PrintInformationsToMessageBox()
{
MessageBox(NULL, GetInformationsAsString().c_str(), _T("VersionInfo"), MB_OK);
}
void CVersionInfo::PrintInformationsToOutputDebugString()
{
OutputDebugString( GetInformationsAsString().c_str());
}
void CVersionInfo::PrintInformationsToDialogBox()
{
HWND DialogBox = CreateDialogParam(hInst,
MAKEINTRESOURCE(IDD_DIALOGINFO),
NULL, DialogBoxProc, (LPARAM) this);
SetDlgItemText(DialogBox, IDC_TEXT, GetInformationsAsString().c_str());
}
void CVersionInfo::PrintInformationsToClipboard(bool showLog)
{
if (GetOpenClipboardWindow()) {
Log( TranslateT("The clipboard is not available, retry."));
return;
}
OpenClipboard(NULL);
//Ok, let's begin, then.
EmptyClipboard();
//Storage data we'll use.
LPTSTR lptstrCopy;
std::tstring aux = GetInformationsAsString();
size_t length = aux.length() + 1;
HANDLE hData = GlobalAlloc(GMEM_MOVEABLE, length*sizeof(TCHAR) + 5);
//Lock memory, copy it, release it.
lptstrCopy = (LPTSTR)GlobalLock(hData);
lstrcpy(lptstrCopy, aux.c_str());
lptstrCopy[length] = '\0';
GlobalUnlock(hData);
//Now set the clipboard data.
SetClipboardData(CF_UNICODETEXT, hData);
//Remove the lock on the clipboard.
CloseClipboard();
if (showLog)
Log( TranslateT("Information successfully copied into clipboard."));
}
|