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 | //
// This file is part of the aMule Project.
//
// Copyright (c) 2003-2011 aMule Team ( admin@amule.org / http://www.amule.org )
// Copyright (c) 2002-2011 Merkur ( devs@emule-project.net / http://www.emule-project.net )
//
// Any parts of this program derived from the xMule, lMule or eMule project,
// or contributed by third-party developers are copyrighted by their
// respective authors.
//
// 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
//
// The backtrace functions contain modified code from libYaMa, (c) Venkatesha Murthy G.
// You can check libYaMa at http://personal.pavanashree.org/libyama/
#include <tags/FileTags.h>
#include <wx/filename.h> // Needed for wxFileName
#include <wx/log.h> // Needed for wxLogNull
#include "config.h" // Needed for a number of defines
#include <wx/stdpaths.h> // Do_not_auto_remove
#include <common/StringFunctions.h>
#include <common/ClientVersion.h>
#include <common/MD5Sum.h>
#include <common/Path.h>
#include "Logger.h"
#include "BitVector.h" // Needed for BitVector
#include "OtherFunctions.h" // Interface declarations
#include <map>
#ifdef __WXBASE__
#include <cerrno>
#else
#include <wx/utils.h>
#endif
// Formats a filesize in bytes to make it suitable for displaying
wxString CastItoXBytes( uint64 count )
{
if (count < 1024)
return CFormat(wxT("%u ")) % count + wxPLURAL("byte", "bytes", count) ;
else if (count < 1048576)
return CFormat(wxT("%u ")) % (count >> 10) + _("kB") ;
else if (count < 1073741824)
return CFormat(wxT("%.2f ")) % ((float)(uint32)count/1048576) + _("MB") ;
else if (count < 1099511627776LL)
return CFormat(wxT("%.3f ")) % ((float)((uint32)(count/1024))/1048576) + _("GB") ;
else
return CFormat(wxT("%.3f ")) % ((float)count/1099511627776LL) + _("TB") ;
}
wxString CastItoIShort(uint64 count)
{
if (count < 1000)
return CFormat(wxT("%u")) % count;
else if (count < 1000000)
return CFormat(wxT("%.0f")) % ((float)(uint32)count/1000) + _("k") ;
else if (count < 1000000000)
return CFormat(wxT("%.2f")) % ((float)(uint32)count/1000000) + _("M") ;
else if (count < 1000000000000LL)
return CFormat(wxT("%.2f")) % ((float)((uint32)(count/1000))/1000000) + _("G") ;
else
return CFormat(wxT("%.2f")) % ((float)count/1000000000000LL) + _("T");
}
wxString CastItoSpeed(uint32 bytes)
{
if (bytes < 1024)
return CFormat(wxT("%u ")) % bytes + wxPLURAL("byte/sec", "bytes/sec", bytes);
else if (bytes < 1048576)
return CFormat(wxT("%.2f ")) % (bytes / 1024.0) + _("kB/s");
else
return CFormat(wxT("%.2f ")) % (bytes / 1048576.0) + _("MB/s");
}
// Make a time value in seconds suitable for displaying
wxString CastSecondsToHM(uint32 count, uint16 msecs)
{
if (count < 60) {
if (!msecs) {
return CFormat(wxT("%02u %s")) % count % _("secs");
} else {
return CFormat(wxT("%.3f %s"))
% (count + ((float)msecs/1000)) % _("secs");
}
} else if (count < 3600) {
return CFormat(wxT("%u:%02u %s"))
% (count/60) % (count % 60) % _("mins");
} else if (count < 86400) {
return CFormat(wxT("%u:%02u %s"))
% (count/3600) % ((count % 3600)/60) % _("hours");
} else {
return CFormat(wxT("%u %s %02u:%02u %s"))
% (count/86400) % _("Days")
% ((count % 86400)/3600) % ((count % 3600)/60) % _("hours");
}
}
// Examines a filename and determines the filetype
FileType GetFiletype(const CPath& filename)
{
// FIXME: WTF do we have two such functions in the first place?
switch (GetED2KFileTypeID(filename)) {
case ED2KFT_AUDIO: return ftAudio;
case ED2KFT_VIDEO: return ftVideo;
case ED2KFT_IMAGE: return ftPicture;
case ED2KFT_PROGRAM: return ftProgram;
case ED2KFT_DOCUMENT: return ftText;
case ED2KFT_ARCHIVE: return ftArchive;
case ED2KFT_CDIMAGE: return ftCDImage;
default: return ftAny;
}
}
// Returns the (translated) description associated with a FileType
wxString GetFiletypeDesc(FileType type, bool translated)
{
switch ( type ) {
case ftVideo:
if (translated) {
return _("Videos");
} else {
return wxT("Videos");
}
break;
case ftAudio:
if (translated) {
return _("Audio");
} else {
return wxT("Audio");
}
break;
case ftArchive:
if (translated) {
return _("Archives");
} else {
return wxT("Archives");
}
break;
case ftCDImage:
if (translated) {
return _("CD-Images");
} else {
return wxT("CD-Images");
}
break;
case ftPicture:
if (translated) {
return _("Pictures");
} else {
return wxT("Pictures");
}
break;
case ftText:
if (translated) {
return _("Texts");
} else {
return wxT("Texts");
}
break;
case ftProgram:
if (translated) {
return _("Programs");
} else {
return wxT("Programs");
}
break;
default:
if (translated) {
return _("Any");
} else {
return wxT("Any");
}
break;
}
}
// Returns the Typename, examining the extension of the given filename
wxString GetFiletypeByName(const CPath& filename, bool translated)
{
return GetFiletypeDesc(GetFiletype(filename), translated);
}
// Return the text associated with a rating of a file
wxString GetRateString(uint16 rate)
{
switch ( rate ) {
case 0: return _("Not rated");
case 1: return _("Invalid / Corrupt / Fake");
case 2: return _("Poor");
case 3: return _("Fair");
case 4: return _("Good");
case 5: return _("Excellent");
default: return _("Not rated");
}
}
/**
* Return the size in bytes of the given size-type
*
* @param type The type (as an int) where: 0 = Byte, 1 = KB, 2 = MB, 3 = GB
*
* @return The amount of Bytes the provided size-type represents
*
* Values over GB aren't handled since the amount of Bytes 1TB represents
* is over the uint32 capacity
*/
uint32 GetTypeSize(uint8 type)
{
enum {Bytes, KB, MB, GB};
int size;
switch(type) {
case Bytes: size = 1; break;
case KB: size = 1024; break;
case MB: size = 1048576; break;
case GB: size = 1073741824; break;
default: size = -1; break;
}
return size;
}
// Base16 chars for encode an decode functions
static wxChar base16Chars[17] = wxT("0123456789ABCDEF");
static wxChar base32Chars[33] = wxT("ABCDEFGHIJKLMNOPQRSTUVWXYZ234567");
#define BASE16_LOOKUP_MAX 23
static wxChar base16Lookup[BASE16_LOOKUP_MAX][2] = {
{ wxT('0'), 0x0 },
{ wxT('1'), 0x1 },
{ wxT('2'), 0x2 },
{ wxT('3'), 0x3 },
{ wxT('4'), 0x4 },
{ wxT('5'), 0x5 },
{ wxT('6'), 0x6 },
{ wxT('7'), 0x7 },
{ wxT('8'), 0x8 },
{ wxT('9'), 0x9 },
{ wxT(':'), 0x9 },
{ wxT(';'), 0x9 },
{ wxT('<'), 0x9 },
{ wxT('='), 0x9 },
{ wxT('>'), 0x9 },
{ wxT('?'), 0x9 },
{ wxT('@'), 0x9 },
{ wxT('A'), 0xA },
{ wxT('B'), 0xB },
{ wxT('C'), 0xC },
{ wxT('D'), 0xD },
{ wxT('E'), 0xE },
{ wxT('F'), 0xF }
};
// Returns a BASE16 encoded byte array
//
// [In]
// buffer: Pointer to byte array
// bufLen: Length of buffer array
//
// [Return]
// wxString object with BASE16 encoded byte array
wxString EncodeBase16(const unsigned char* buffer, unsigned int bufLen)
{
wxString Base16Buff;
for(unsigned int i = 0; i < bufLen; ++i) {
Base16Buff += base16Chars[buffer[i] >> 4];
Base16Buff += base16Chars[buffer[i] & 0xf];
}
return Base16Buff;
}
// Decodes a BASE16 string into a byte array
//
// [In]
// base16Buffer: String containing BASE16
// base16BufLen: Length BASE16 coded string's length
//
// [Out]
// buffer: byte array containing decoded string
unsigned int DecodeBase16(const wxString &base16Buffer, unsigned int base16BufLen, uint8_t *buffer)
{
if (base16BufLen & 1) {
return 0;
}
unsigned int ret = base16BufLen >> 1;
memset( buffer, 0, ret);
for(unsigned int i = 0; i < base16BufLen; ++i) {
int lookup = toupper(base16Buffer[i]) - wxT('0');
// Check to make sure that the given word falls inside a valid range
uint8_t word = (lookup < 0 || lookup >= BASE16_LOOKUP_MAX) ?
0xFF : base16Lookup[lookup][1];
unsigned idx = i >> 1;
buffer[idx] = (i & 1) ? // odd or even?
(buffer[idx] | word) : (word << 4);
}
return ret;
}
// Returns a BASE32 encoded byte array
//
// [In]
// buffer: Pointer to byte array
// bufLen: Length of buffer array
//
// [Return]
// wxString object with BASE32 encoded byte array
wxString EncodeBase32(const unsigned char* buffer, unsigned int bufLen)
{
wxString Base32Buff;
unsigned int i, index;
unsigned char word;
for(i = 0, index = 0; i < bufLen;) {
// Is the current word going to span a byte boundary?
if (index > 3) {
word = (buffer[i] & (0xFF >> index));
index = (index + 5) % 8;
word <<= index;
if (i < bufLen - 1) {
word |= buffer[i + 1] >> (8 - index);
}
++i;
} else {
word = (buffer[i] >> (8 - (index + 5))) & 0x1F;
index = (index + 5) % 8;
if (index == 0) {
++i;
}
}
Base32Buff += (char) base32Chars[word];
}
return Base32Buff;
}
// Decodes a BASE32 string into a byte array
//
// [In]
// base32Buffer: String containing BASE32
// base32BufLen: Length BASE32 coded string's length
//
// [Out]
// buffer: byte array containing decoded string
// [Return]
// nDecodeLen:
unsigned int DecodeBase32(const wxString &base32Buffer, unsigned int base32BufLen, unsigned char *buffer)
{
size_t nInputLen = base32Buffer.Length();
uint32 nDecodeLen = (nInputLen * 5) / 8;
if ((nInputLen * 5) % 8 > 0) {
++nDecodeLen;
}
if (base32BufLen == 0) {
return nDecodeLen;
}
if (nDecodeLen > base32BufLen) {
return 0;
}
uint32 nBits = 0;
int nCount = 0;
for (size_t i = 0; i < nInputLen; ++i)
{
if (base32Buffer[i] >= wxT('A') && base32Buffer[i] <= wxT('Z')) {
nBits |= ( base32Buffer[i] - wxT('A') );
}
else if (base32Buffer[i] >= wxT('a') && base32Buffer[i] <= wxT('z')) {
nBits |= ( base32Buffer[i] - wxT('a') );
}
else if (base32Buffer[i] >= wxT('2') && base32Buffer[i] <= wxT('7')) {
nBits |= ( base32Buffer[i] - wxT('2') + 26 );
} else {
return 0;
}
nCount += 5;
if (nCount >= 8)
{
*buffer++ = (uint8_t)( nBits >> (nCount - 8) );
nCount -= 8;
}
nBits <<= 5;
}
return nDecodeLen;
}
/*
* base64.c
*
* Base64 encoding/decoding command line filter
*
* Copyright (c) 2002-2011 Matthias Gaertner
* Adapted to use wxWidgets by
* Copyright (c) 2005-2011 Marcelo Roberto Jimenez ( phoenix@amule.org )
*
*/
static const wxString to_b64(
/* 0000000000111111111122222222223333333333444444444455555555556666 */
/* 0123456789012345678901234567890123456789012345678901234567890123 */
wxT("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"));
/* Option variables */
static bool g_fUseCRLF = false;
static unsigned int g_nCharsPerLine = 72;
static wxString strHeaderLine;
wxString EncodeBase64(const char *pbBufferIn, unsigned int bufLen)
{
wxString pbBufferOut;
wxString strHeader;
if( !strHeaderLine.IsEmpty() ) {
strHeader = wxT("-----BEGIN ") + strHeaderLine + wxT("-----");
if( g_fUseCRLF ) {
strHeader += wxT("\r");
}
strHeader += wxT("\n");
}
unsigned long nDiv = ((unsigned long)bufLen) / 3;
unsigned long nRem = ((unsigned long)bufLen) % 3;
unsigned int NewLineSize = g_fUseCRLF ? 2 : 1;
// Allocate enough space in the output buffer to speed up things
pbBufferOut.Alloc(
strHeader.Len() * 2 + // header/footer
(bufLen * 4) / 3 + 1 + // Number of codes
nDiv * NewLineSize + // Number of new lines
(nRem ? 1 : 0) * NewLineSize ); // Last line
pbBufferOut = strHeader;
unsigned long nChars = 0;
const unsigned char *pIn = (unsigned char*)pbBufferIn;
while( nDiv > 0 ) {
pbBufferOut += to_b64[ (pIn[0] >> 2) & 0x3f];
pbBufferOut += to_b64[((pIn[0] << 4) & 0x30) | ((pIn[1] >> 4) & 0xf)];
pbBufferOut += to_b64[((pIn[1] << 2) & 0x3c) | ((pIn[2] >> 6) & 0x3)];
pbBufferOut += to_b64[ pIn[2] & 0x3f];
pIn += 3;
nDiv--;
nChars += 4;
if( nChars >= g_nCharsPerLine && g_nCharsPerLine != 0 ) {
nChars = 0;
if( g_fUseCRLF ) {
pbBufferOut += wxT("\r");
}
pbBufferOut += wxT("\n");
}
}
switch( nRem ) {
case 2:
pbBufferOut += to_b64[ (pIn[0] >> 2) & 0x3f];
pbBufferOut += to_b64[((pIn[0] << 4) & 0x30) | ((pIn[1] >> 4) & 0xf)];
pbBufferOut += to_b64[ (pIn[1] << 2) & 0x3c];
pbBufferOut += wxT("=");
nChars += 4;
if( nChars >= g_nCharsPerLine && g_nCharsPerLine != 0 ) {
nChars = 0;
if( g_fUseCRLF ) {
pbBufferOut += wxT("\r");
}
pbBufferOut += wxT("\n");
}
break;
case 1:
pbBufferOut += to_b64[ (pIn[0] >> 2) & 0x3f];
pbBufferOut += to_b64[ (pIn[0] << 4) & 0x30];
pbBufferOut += wxT("=");
pbBufferOut += wxT("=");
nChars += 4;
if( nChars >= g_nCharsPerLine && g_nCharsPerLine != 0 ) {
nChars = 0;
if( g_fUseCRLF ) {
pbBufferOut += wxT("\r");
}
pbBufferOut += wxT("\n");
}
break;
}
if( nRem > 0 ) {
if( nChars > 0 ) {
if( g_fUseCRLF ) {
pbBufferOut += wxT("\r");
}
pbBufferOut += wxT("\n");
}
}
if( !strHeaderLine.IsEmpty() ) {
pbBufferOut = wxT("-----END ") + strHeaderLine + wxT("-----");
if( g_fUseCRLF ) {
pbBufferOut += wxT("\r");
}
pbBufferOut += wxT("\n");
}
return pbBufferOut;
}
unsigned int DecodeBase64(const wxString &base64Buffer, unsigned int base64BufLen, unsigned char *buffer)
{
int z = 0; // 0 Normal, 1 skip MIME separator (---) to end of line
unsigned int nData = 0;
unsigned int i = 0;
if (base64BufLen == 0) {
*buffer = 0;
nData = 1;
}
for(unsigned int j = 0; j < base64BufLen; ++j) {
wxChar c = base64Buffer[j];
wxChar bits = wxT('z');
if( z > 0 ) {
if(c == wxT('\n')) {
z = 0;
}
}
else if(c >= wxT('A') && c <= wxT('Z')) {
bits = c - wxT('A');
}
else if(c >= wxT('a') && c <= wxT('z')) {
bits = c - wxT('a') + (wxChar)26;
}
else if(c >= wxT('0') && c <= wxT('9')) {
bits = c - wxT('0') + (wxChar)52;
}
else if(c == wxT('+')) {
bits = (wxChar)62;
}
else if(c == wxT('/')) {
bits = (wxChar)63;
}
else if(c == wxT('-')) {
z = 1;
}
else if(c == wxT('=')) {
break;
} else {
bits = wxT('y');
}
// Skips anything that was not recognized
// as a base64 valid char ('y' or 'z')
if (bits < (wxChar)64) {
switch (nData++) {
case 0:
buffer[i+0] = (bits << 2) & 0xfc;
break;
case 1:
buffer[i+0] |= (bits >> 4) & 0x03;
buffer[i+1] = (bits << 4) & 0xf0;
break;
case 2:
buffer[i+1] |= (bits >> 2) & 0x0f;
buffer[i+2] = (bits << 6) & 0xc0;
break;
case 3:
buffer[i+2] |= bits & 0x3f;
break;
}
if (nData == 4) {
nData = 0;
i += 3;
}
}
}
if (nData == 1) {
// Syntax error or buffer was empty
*buffer = 0;
nData = 0;
i = 0;
} else {
buffer[i+nData] = 0;
}
return i + nData;
}
// Returns the text associated with a category type
wxString GetCatTitle(AllCategoryFilter cat)
{
switch (cat) {
case acfAll: return _("all");
case acfAllOthers: return _("all others");
case acfIncomplete: return _("Incomplete");
case acfCompleted: return _("Completed");
case acfWaiting: return _("Waiting");
case acfDownloading: return _("Downloading");
case acfErroneous: return _("Erroneous");
case acfPaused: return _("Paused");
case acfStopped: return _("Stopped");
case acfVideo: return _("Video");
case acfAudio: return _("Audio");
case acfArchive: return _("Archive");
case acfCDImages: return _("CD-Images");
case acfPictures: return _("Pictures");
case acfText: return _("Text");
case acfActive: return _("Active");
default: return wxT("?");
}
}
typedef std::map<wxString, EED2KFileTypeClass> SED2KFileTypeMap;
typedef SED2KFileTypeMap::value_type SED2KFileTypeMapElement;
static SED2KFileTypeMap ED2KFileTypesMap;
class CED2KFileTypes{
public:
CED2KFileTypes()
{
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".669"), ED2KFT_AUDIO)); // 8 channel tracker module
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".aac"), ED2KFT_AUDIO)); // Advanced Audio Coding File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ac3"), ED2KFT_AUDIO)); // Audio Codec 3 File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".aif"), ED2KFT_AUDIO)); // Audio Interchange File Format
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".aifc"), ED2KFT_AUDIO)); // Audio Interchange File Format
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".aiff"), ED2KFT_AUDIO)); // Audio Interchange File Format
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".amf"), ED2KFT_AUDIO)); // DSMI Advanced Module Format
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".amr"), ED2KFT_AUDIO)); // Adaptive Multi-Rate Codec File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ams"), ED2KFT_AUDIO)); // Extreme Tracker Module
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ape"), ED2KFT_AUDIO)); // Monkey's Audio Lossless Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".au"), ED2KFT_AUDIO)); // Audio File (Sun, Unix)
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".aud"), ED2KFT_AUDIO)); // General Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".audio"), ED2KFT_AUDIO)); // General Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".cda"), ED2KFT_AUDIO)); // CD Audio Track
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".dbm"), ED2KFT_AUDIO));
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".dmf"), ED2KFT_AUDIO)); // Delusion Digital Music File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".dsm"), ED2KFT_AUDIO)); // Digital Sound Module
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".dts"), ED2KFT_AUDIO)); // DTS Encoded Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".far"), ED2KFT_AUDIO)); // Farandole Composer Module
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".flac"), ED2KFT_AUDIO)); // Free Lossless Audio Codec File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".it"), ED2KFT_AUDIO)); // Impulse Tracker Module
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".m1a"), ED2KFT_AUDIO)); // MPEG-1 Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".m2a"), ED2KFT_AUDIO)); // MPEG-2 Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".m4a"), ED2KFT_AUDIO)); // MPEG-4 Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mdl"), ED2KFT_AUDIO)); // DigiTrakker Module
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".med"), ED2KFT_AUDIO)); // Amiga MED Sound File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mid"), ED2KFT_AUDIO)); // MIDI File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".midi"), ED2KFT_AUDIO)); // MIDI File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mka"), ED2KFT_AUDIO)); // Matroska Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mod"), ED2KFT_AUDIO)); // Amiga Music Module File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mol"), ED2KFT_AUDIO));
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mp1"), ED2KFT_AUDIO)); // MPEG-1 Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mp2"), ED2KFT_AUDIO)); // MPEG-2 Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mp3"), ED2KFT_AUDIO)); // MPEG-3 Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mpa"), ED2KFT_AUDIO)); // MPEG Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mpc"), ED2KFT_AUDIO)); // Musepack Compressed Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mpp"), ED2KFT_AUDIO));
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mtm"), ED2KFT_AUDIO)); // MultiTracker Module
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".nst"), ED2KFT_AUDIO)); // NoiseTracker
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ogg"), ED2KFT_AUDIO)); // Ogg Vorbis Compressed Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".okt"), ED2KFT_AUDIO)); // Oktalyzer Module (Amiga)
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".psm"), ED2KFT_AUDIO)); // Protracker Studio Module
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ptm"), ED2KFT_AUDIO)); // PolyTracker Module
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ra"), ED2KFT_AUDIO)); // Real Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".rmi"), ED2KFT_AUDIO)); // MIDI File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".s3m"), ED2KFT_AUDIO)); // Scream Tracker 3 Module
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".snd"), ED2KFT_AUDIO)); // Audio File (Sun, Unix)
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".stm"), ED2KFT_AUDIO)); // Scream Tracker 2 Module
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ult"), ED2KFT_AUDIO)); // UltraTracker
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".umx"), ED2KFT_AUDIO)); // Unreal Music Package
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".wav"), ED2KFT_AUDIO)); // WAVE Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".wma"), ED2KFT_AUDIO)); // Windows Media Audio File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".wow"), ED2KFT_AUDIO)); // Grave Composer audio tracker
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".xm"), ED2KFT_AUDIO)); // Fasttracker 2 Extended Module
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".3g2"), ED2KFT_VIDEO)); // 3GPP Multimedia File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".3gp"), ED2KFT_VIDEO)); // 3GPP Multimedia File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".3gp2"), ED2KFT_VIDEO)); // 3GPP Multimedia File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".3gpp"), ED2KFT_VIDEO)); // 3GPP Multimedia File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".asf"), ED2KFT_VIDEO)); // Advanced Systems Format (MS)
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".amv"), ED2KFT_VIDEO)); // Anime Music Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".asf"), ED2KFT_VIDEO)); // Advanced Systems Format File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".avi"), ED2KFT_VIDEO)); // Audio Video Interleave File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".bik"), ED2KFT_VIDEO)); // BINK Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".divx"), ED2KFT_VIDEO)); // DivX-Encoded Movie File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".dvr-ms"),ED2KFT_VIDEO)); // Microsoft Digital Video Recording
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".flc"), ED2KFT_VIDEO)); // FLIC Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".fli"), ED2KFT_VIDEO)); // FLIC Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".flic"), ED2KFT_VIDEO)); // FLIC Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".flv"), ED2KFT_VIDEO)); // Flash Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".hdmov"), ED2KFT_VIDEO)); // High-Definition QuickTime Movie
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ifo"), ED2KFT_VIDEO)); // DVD-Video Disc Information File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".m1v"), ED2KFT_VIDEO)); // MPEG-1 Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".m2t"), ED2KFT_VIDEO)); // MPEG-2 Video Transport Stream
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".m2ts"), ED2KFT_VIDEO)); // MPEG-2 Video Transport Stream
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".m2v"), ED2KFT_VIDEO)); // MPEG-2 Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".m4b"), ED2KFT_VIDEO)); // MPEG-4 Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".m4v"), ED2KFT_VIDEO)); // MPEG-4 Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mkv"), ED2KFT_VIDEO)); // Matroska Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mov"), ED2KFT_VIDEO)); // QuickTime Movie File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".movie"), ED2KFT_VIDEO)); // QuickTime Movie File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mp1v"), ED2KFT_VIDEO)); // QuickTime Movie File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mp2v"), ED2KFT_VIDEO)); // MPEG-1 Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mp4"), ED2KFT_VIDEO)); // MPEG-2 Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mpe"), ED2KFT_VIDEO)); // MPEG-4 Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mpeg"), ED2KFT_VIDEO)); // MPEG Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mpg"), ED2KFT_VIDEO)); // MPEG Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mps"), ED2KFT_VIDEO)); // MPEG Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mpv"), ED2KFT_VIDEO)); // MPEG Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mpv1"), ED2KFT_VIDEO)); // MPEG-1 Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mpv2"), ED2KFT_VIDEO)); // MPEG-2 Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ogm"), ED2KFT_VIDEO)); // Ogg Media File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ogv"), ED2KFT_VIDEO)); // Ogg Theora Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".pva"), ED2KFT_VIDEO)); // MPEG Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".qt"), ED2KFT_VIDEO)); // QuickTime Movie
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ram"), ED2KFT_VIDEO)); // Real Audio Media
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ratdvd"),ED2KFT_VIDEO)); // RatDVD Disk Image
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".rm"), ED2KFT_VIDEO)); // Real Media File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".rmm"), ED2KFT_VIDEO)); // Real Media File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".rmvb"), ED2KFT_VIDEO)); // Real Video Variable Bit Rate File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".rv"), ED2KFT_VIDEO)); // Real Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".rv9"), ED2KFT_VIDEO));
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".smil"), ED2KFT_VIDEO)); // SMIL Presentation File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".smk"), ED2KFT_VIDEO)); // Smacker Compressed Movie File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".swf"), ED2KFT_VIDEO)); // Macromedia Flash Movie
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".tp"), ED2KFT_VIDEO)); // Video Transport Stream File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ts"), ED2KFT_VIDEO)); // Video Transport Stream File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".vid"), ED2KFT_VIDEO)); // General Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".video"), ED2KFT_VIDEO)); // General Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".vivo"), ED2KFT_VIDEO)); // VivoActive Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".vob"), ED2KFT_VIDEO)); // DVD Video Object File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".vp6"), ED2KFT_VIDEO)); // TrueMotion VP6 Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".webm"), ED2KFT_VIDEO)); // WebM Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".wm"), ED2KFT_VIDEO)); // Windows Media Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".wmv"), ED2KFT_VIDEO)); // Windows Media Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".xvid"), ED2KFT_VIDEO)); // Xvid-Encoded Video File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".bmp"), ED2KFT_IMAGE)); // Bitmap Image File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".dcx"), ED2KFT_IMAGE)); // FAXserve Fax Document
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".emf"), ED2KFT_IMAGE)); // Enhanced Windows Metafile
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".gif"), ED2KFT_IMAGE)); // Graphical Interchange Format File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ico"), ED2KFT_IMAGE)); // Icon File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".jfif"), ED2KFT_IMAGE)); // JPEG File Interchange Format
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".jpe"), ED2KFT_IMAGE)); // JPEG Image File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".jpeg"), ED2KFT_IMAGE)); // JPEG Image File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".jpg"), ED2KFT_IMAGE)); // JPEG Image File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".pct"), ED2KFT_IMAGE)); // PICT Picture File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".pcx"), ED2KFT_IMAGE)); // Paintbrush Bitmap Image File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".pic"), ED2KFT_IMAGE)); // PICT Picture File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".pict"), ED2KFT_IMAGE)); // PICT Picture File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".png"), ED2KFT_IMAGE)); // Portable Network Graphic
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".psd"), ED2KFT_IMAGE)); // Photoshop Document
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".psp"), ED2KFT_IMAGE)); // Paint Shop Pro Image File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".tga"), ED2KFT_IMAGE)); // Targa Graphic
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".tif"), ED2KFT_IMAGE)); // Tagged Image File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".tiff"), ED2KFT_IMAGE)); // Tagged Image File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".wbmp"), ED2KFT_IMAGE)); // Wireless Application Protocol Bitmap Format
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".webp"), ED2KFT_IMAGE)); // Weppy Photo File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".wmf"), ED2KFT_IMAGE)); // Windows Metafile
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".wmp"), ED2KFT_IMAGE)); // Windows Media Photo File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".xif"), ED2KFT_IMAGE)); // ScanSoft Pagis Extended Image Format File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".xpm"), ED2KFT_IMAGE)); // X-Windows Pixmap
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".7z"), ED2KFT_ARCHIVE)); // 7-Zip Compressed File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ace"), ED2KFT_ARCHIVE)); // WinAce Compressed File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".alz"), ED2KFT_ARCHIVE)); // ALZip Archive
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".arc"), ED2KFT_ARCHIVE)); // Compressed File Archive
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".arj"), ED2KFT_ARCHIVE)); // ARJ Compressed File Archive
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".bz2"), ED2KFT_ARCHIVE)); // Bzip Compressed File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".cab"), ED2KFT_ARCHIVE)); // Cabinet File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".cbr"), ED2KFT_ARCHIVE)); // Comic Book RAR Archive
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".cbt"), ED2KFT_ARCHIVE)); // Comic Book Tarball
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".cbz"), ED2KFT_ARCHIVE)); // Comic Book ZIP Archive
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".gz"), ED2KFT_ARCHIVE)); // Gnu Zipped File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".hqx"), ED2KFT_ARCHIVE)); // BinHex 4.0 Encoded File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".lha"), ED2KFT_ARCHIVE)); // LHARC Compressed Archive
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".lzh"), ED2KFT_ARCHIVE)); // LZH Compressed File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".msi"), ED2KFT_ARCHIVE)); // Microsoft Installer File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".pak"), ED2KFT_ARCHIVE)); // PAK (Packed) File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".par"), ED2KFT_ARCHIVE)); // Parchive Index File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".par2"), ED2KFT_ARCHIVE)); // Parchive 2 Index File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".rar"), ED2KFT_ARCHIVE)); // WinRAR Compressed Archive
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".sea"), ED2KFT_ARCHIVE)); // Self-Extracting Archive (Mac)
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".sit"), ED2KFT_ARCHIVE)); // Stuffit Archive
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".sitx"), ED2KFT_ARCHIVE)); // Stuffit X Archive
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".tar"), ED2KFT_ARCHIVE)); // Consolidated Unix File Archive
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".tbz2"), ED2KFT_ARCHIVE)); // Tar BZip 2 Compressed File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".tgz"), ED2KFT_ARCHIVE)); // Gzipped Tar File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".uc2"), ED2KFT_ARCHIVE)); // UltraCompressor 2 Archive
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".xpi"), ED2KFT_ARCHIVE)); // Mozilla Installer Package
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".z"), ED2KFT_ARCHIVE)); // Unix Compressed File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".zip"), ED2KFT_ARCHIVE)); // Zipped File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".zoo"), ED2KFT_ARCHIVE)); // Zoo Archive
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".bat"), ED2KFT_PROGRAM)); // Batch File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".cmd"), ED2KFT_PROGRAM)); // Command File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".com"), ED2KFT_PROGRAM)); // COM File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".exe"), ED2KFT_PROGRAM)); // Executable File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".hta"), ED2KFT_PROGRAM)); // HTML Application
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".js"), ED2KFT_PROGRAM)); // Java Script
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".jse"), ED2KFT_PROGRAM)); // Encoded Java Script
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".msc"), ED2KFT_PROGRAM)); // Microsoft Common Console File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".vbe"), ED2KFT_PROGRAM)); // Encoded Visual Basic Script File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".vbs"), ED2KFT_PROGRAM)); // Visual Basic Script File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".wsf"), ED2KFT_PROGRAM)); // Windows Script File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".wsh"), ED2KFT_PROGRAM)); // Windows Scripting Host File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".bin"), ED2KFT_CDIMAGE)); // CD Image
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".bwa"), ED2KFT_CDIMAGE)); // BlindWrite Disk Information File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".bwi"), ED2KFT_CDIMAGE)); // BlindWrite CD/DVD Disc Image
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".bws"), ED2KFT_CDIMAGE)); // BlindWrite Sub Code File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".bwt"), ED2KFT_CDIMAGE)); // BlindWrite 4 Disk Image
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ccd"), ED2KFT_CDIMAGE)); // CloneCD Disk Image
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".cue"), ED2KFT_CDIMAGE)); // Cue Sheet File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".dmg"), ED2KFT_CDIMAGE)); // Mac OS X Disk Image
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".dmz"), ED2KFT_CDIMAGE));
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".img"), ED2KFT_CDIMAGE)); // Disk Image Data File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".iso"), ED2KFT_CDIMAGE)); // Disc Image File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mdf"), ED2KFT_CDIMAGE)); // Media Disc Image File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mds"), ED2KFT_CDIMAGE)); // Media Descriptor File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".nrg"), ED2KFT_CDIMAGE)); // Nero CD/DVD Image File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".sub"), ED2KFT_CDIMAGE)); // Subtitle File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".toast"), ED2KFT_CDIMAGE)); // Toast Disc Image
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".azw"), ED2KFT_DOCUMENT)); // EBook File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".chm"), ED2KFT_DOCUMENT)); // Compiled HTML Help File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".css"), ED2KFT_DOCUMENT)); // Cascading Style Sheet
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".diz"), ED2KFT_DOCUMENT)); // Description in Zip File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".doc"), ED2KFT_DOCUMENT)); // Document File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".dot"), ED2KFT_DOCUMENT)); // Document Template File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".epub"), ED2KFT_DOCUMENT)); // EBook File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".hlp"), ED2KFT_DOCUMENT)); // Help File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".htm"), ED2KFT_DOCUMENT)); // HTML File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".html"), ED2KFT_DOCUMENT)); // HTML File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".mobi"), ED2KFT_DOCUMENT)); // EBook File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".nfo"), ED2KFT_DOCUMENT)); // Warez Information File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".odp"), ED2KFT_DOCUMENT)); // OpenDocument Presentation
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ods"), ED2KFT_DOCUMENT)); // OpenDocument Spreadsheet
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".odt"), ED2KFT_DOCUMENT)); // OpenDocument File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".otp"), ED2KFT_DOCUMENT)); // OpenDocument Presentation Template
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ott"), ED2KFT_DOCUMENT)); // OpenDocument Template File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ots"), ED2KFT_DOCUMENT)); // OpenDocument Spreadsheet Template
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".pdf"), ED2KFT_DOCUMENT)); // Portable Document Format File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".pps"), ED2KFT_DOCUMENT)); // PowerPoint Slide Show
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ppt"), ED2KFT_DOCUMENT)); // PowerPoint Presentation
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".ps"), ED2KFT_DOCUMENT)); // PostScript File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".rtf"), ED2KFT_DOCUMENT)); // Rich Text Format File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".stc"), ED2KFT_DOCUMENT)); // OpenOffice.org 1.0 Spreadsheet Template
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".sti"), ED2KFT_DOCUMENT)); // OpenOffice.org 1.0 Presentation Template
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".stw"), ED2KFT_DOCUMENT)); // OpenOffice.org 1.0 Document Template File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".sxc"), ED2KFT_DOCUMENT)); // OpenOffice.org 1.0 Spreadsheet
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".sxi"), ED2KFT_DOCUMENT)); // OpenOffice.org 1.0 Presentation
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".sxw"), ED2KFT_DOCUMENT)); // OpenOffice.org 1.0 Document File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".text"), ED2KFT_DOCUMENT)); // General Text File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".txt"), ED2KFT_DOCUMENT)); // Text File
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".wri"), ED2KFT_DOCUMENT)); // Windows Write Document
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".xls"), ED2KFT_DOCUMENT)); // Microsoft Excel Spreadsheet
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".xlt"), ED2KFT_DOCUMENT)); // Microsoft Excel Template
ED2KFileTypesMap.insert(SED2KFileTypeMapElement(wxT(".xml"), ED2KFT_DOCUMENT)); // XML File
}
};
// get the list initialized *before* any code is accessing it
CED2KFileTypes theED2KFileTypes;
EED2KFileType GetED2KFileTypeID(const CPath& fileName)
{
const wxString ext = fileName.GetExt().Lower();
if (ext.IsEmpty()) {
return ED2KFT_ANY;
}
SED2KFileTypeMap::iterator it = ED2KFileTypesMap.find(wxT(".") + ext);
if (it != ED2KFileTypesMap.end()) {
return it->second.GetType();
} else {
return ED2KFT_ANY;
}
}
// Returns the ed2k file type term which is to be used in server searches
wxString GetED2KFileTypeSearchTerm(EED2KFileType iFileID)
{
if (iFileID == ED2KFT_AUDIO) return ED2KFTSTR_AUDIO;
if (iFileID == ED2KFT_VIDEO) return ED2KFTSTR_VIDEO;
if (iFileID == ED2KFT_IMAGE) return ED2KFTSTR_IMAGE;
if (iFileID == ED2KFT_DOCUMENT) return ED2KFTSTR_DOCUMENT;
if (iFileID == ED2KFT_PROGRAM) return ED2KFTSTR_PROGRAM;
// NOTE: Archives and CD-Images are published with file type "Pro"
if (iFileID == ED2KFT_ARCHIVE) return ED2KFTSTR_PROGRAM;
if (iFileID == ED2KFT_CDIMAGE) return ED2KFTSTR_PROGRAM;
return wxEmptyString;
}
// Returns a file type which is used eMule internally only, examining the extension of the given filename
wxString GetFileTypeByName(const CPath& fileName)
{
EED2KFileType iFileType = GetED2KFileTypeID(fileName);
switch (iFileType) {
case ED2KFT_AUDIO: return ED2KFTSTR_AUDIO;
case ED2KFT_VIDEO: return ED2KFTSTR_VIDEO;
case ED2KFT_IMAGE: return ED2KFTSTR_IMAGE;
case ED2KFT_DOCUMENT: return ED2KFTSTR_DOCUMENT;
case ED2KFT_PROGRAM: return ED2KFTSTR_PROGRAM;
case ED2KFT_ARCHIVE: return ED2KFTSTR_ARCHIVE;
case ED2KFT_CDIMAGE: return ED2KFTSTR_CDIMAGE;
default: return wxEmptyString;
}
}
// Returns the ed2k file type integer ID which is to be used for publishing+searching
EED2KFileType GetED2KFileTypeSearchID(EED2KFileType iFileID)
{
switch (iFileID) {
case ED2KFT_AUDIO: return ED2KFT_AUDIO;
case ED2KFT_VIDEO: return ED2KFT_VIDEO;
case ED2KFT_IMAGE: return ED2KFT_IMAGE;
case ED2KFT_DOCUMENT: return ED2KFT_DOCUMENT;
case ED2KFT_PROGRAM: return ED2KFT_PROGRAM;
// NOTE: Archives and CD-Images are published+searched with file type "Pro"
// NOTE: If this gets changed, the function 'GetED2KFileTypeSearchTerm' also needs to get updated!
case ED2KFT_ARCHIVE: return ED2KFT_PROGRAM;
case ED2KFT_CDIMAGE: return ED2KFT_PROGRAM;
default: return ED2KFT_ANY;
}
}
/**
* Dumps a buffer to a wxString
*/
wxString DumpMemToStr(const void *buff, int n, const wxString& msg, bool ok)
{
const unsigned char *p = (const unsigned char *)buff;
int lines = (n + 15)/ 16;
wxString result;
// Allocate aproximetly what is needed
result.Alloc( ( lines + 1 ) * 80 );
if ( !msg.IsEmpty() ) {
result += msg + wxT(" - ok=") + ( ok ? wxT("true, ") : wxT("false, ") );
}
result += CFormat(wxT("%d bytes\n")) % n;
for ( int i = 0; i < lines; ++i) {
// Show address
result += CFormat(wxT("%08x ")) % (i * 16);
// Show two columns of hex-values
for ( int j = 0; j < 2; ++j) {
for ( int k = 0; k < 8; ++k) {
int pos = 16 * i + 8 * j + k;
if ( pos < n ) {
result += CFormat(wxT("%02x ")) % p[pos];
} else {
result += wxT(" ");
}
}
result += wxT(" ");
}
result += wxT("|");
// Show a column of ascii-values
for ( int k = 0; k < 16; ++k) {
int pos = 16 * i + k;
if ( pos < n ) {
if ( isspace( p[pos] ) ) {
result += wxT(" ");
} else if ( !isgraph( p[pos] ) ) {
result += wxT(".");
} else {
result += (wxChar)p[pos];
}
} else {
result += wxT(" ");
}
}
result += wxT("|\n");
}
result.Shrink();
return result;
}
/**
* Dumps a buffer to stdout
*/
void DumpMem(const void *buff, int n, const wxString& msg, bool ok)
{
printf("%s\n", (const char*)unicode2char(DumpMemToStr( buff, n, msg, ok )) );
}
//
// Dump mem in dword format
void DumpMem_DW(const uint32 *ptr, int count)
{
for(int i = 0; i < count; i++) {
printf("%08x ", ptr[i]);
if ( (i % 4) == 3) printf("\n");
}
printf("\n");
}
wxString GetConfigDir(const wxString &configFileBase)
{
wxString configPath;
// "Portable aMule" - Use aMule from an external USB drive
// Check for ./config/amule.conf (or whatever gets passed as configFile)
// and use this configuration if found
const wxString configDir = JoinPaths(wxFileName::GetCwd(), wxT("config"));
const wxString configFile = JoinPaths(configDir, configFileBase);
if (CPath::DirExists(configDir) && CPath::FileExists(configFile)) {
AddLogLineN(CFormat(_("Using config dir: %s")) % configDir);
configPath = configDir;
} else {
configPath = wxStandardPaths::Get().GetUserDataDir();
}
configPath += wxFileName::GetPathSeparator();
return configPath;
}
/*************************** Locale specific stuff ***************************/
#ifndef __WINDOWS__
# define SETWINLANG(LANG, SUBLANG)
#else
# define SETWINLANG(LANG, SUBLANG) \
info.WinLang = LANG; \
info.WinSublang = SUBLANG;
#endif
#define CUSTOMLANGUAGE(wxid, iso, winlang, winsublang, dir, desc) \
info.Language = wxid; \
info.CanonicalName = wxT(iso); \
info.LayoutDirection = dir; \
info.Description = wxT(desc); \
SETWINLANG(winlang, winsublang) \
wxLocale::AddLanguage(info);
void InitCustomLanguages()
{
wxLanguageInfo info;
}
void InitLocale(wxLocale& locale, int language)
{
locale.Init(language, wxLOCALE_LOAD_DEFAULT);
#if defined(__WXMAC__) || defined(__WINDOWS__)
locale.AddCatalogLookupPathPrefix(JoinPaths(wxStandardPaths::Get().GetDataDir(), wxT("locale")));
#endif /* (!)(defined(__WXMAC__) || defined(__WINDOWS__)) */
locale.AddCatalog(wxT(PACKAGE));
}
int StrLang2wx(const wxString& language)
{
// get rid of possible encoding and modifier
wxString lang(language.BeforeFirst('.').BeforeFirst('@'));
if (!lang.IsEmpty()) {
const wxLanguageInfo *lng = wxLocale::FindLanguageInfo(lang);
if (lng) {
int langID = lng->Language;
// Traditional Chinese: original Chinese, used in Taiwan, Hong Kong and Macau.
// Simplified Chinese: simplified Chinese characters used in Mainland China since 1950s, and in some other places such as Singapore and Malaysia.
//
// Chinese (Traditional) contains zh_TW, zh_HK and zh_MO (but there are differences in some words).
// Because of most Traditional Chinese user are in Taiwan, zh_TW becomes the representation of Traditional Chinese.
// Chinese (Simplified) contains zh_CN, zh_SG and zh_MY. In the same reason, zh_CN becomes the representation of Simplified Chinese.
// (see http://forum.amule.org/index.php?topic=13208.msg98043#msg98043 )
//
// wx maps "Traditional Chinese" to "Chinese" however. This must me corrected:
if (langID == wxLANGUAGE_CHINESE) {
langID = wxLANGUAGE_CHINESE_TRADITIONAL;
}
return langID;
} else {
return wxLANGUAGE_DEFAULT;
}
} else {
return wxLANGUAGE_DEFAULT;
}
}
wxString wxLang2Str(const int lang)
{
if (lang != wxLANGUAGE_DEFAULT) {
const wxLanguageInfo *lng = wxLocale::GetLanguageInfo(lang);
if (lng) {
return lng->CanonicalName;
} else {
return wxEmptyString;
}
} else {
return wxEmptyString;
}
}
/*****************************************************************************/
CMD4Hash GetPassword(bool allowEmptyPassword)
{
wxString pass_plain;
CMD4Hash password;
#ifndef __WINDOWS__
pass_plain = char2unicode(getpass("Enter password for mule connection: "));
#else
//#warning This way, pass enter is not hidden on windows. Bad thing.
char temp_str[512];
// Though fflush() on an input stream is undefined behaviour by the standard,
// the MSVCRT version does seem to clear the input buffers.
// cppcheck-suppress fflushOnInputStream
fflush(stdin);
printf("Enter password for mule connection: \n");
fflush(stdout);
fgets(temp_str, 512, stdin);
temp_str[strlen(temp_str)-1] = '\0';
pass_plain = char2unicode(temp_str);
#endif
wxCHECK2(password.Decode(MD5Sum(pass_plain).GetHash()), /* Do nothing. */ );<--- syntax error
if (!allowEmptyPassword) {
// MD5 hash for an empty string, according to rfc1321.
if (password.Encode() == wxT("D41D8CD98F00B204E9800998ECF8427E")) {
printf("No empty password allowed.\n");
return GetPassword(false);
}
}
return password;
}
const uint8 BitVector::s_posMask[] = {0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80};
const uint8 BitVector::s_negMask[] = {0xFE, 0xFD, 0xFB, 0xF7, 0xEF, 0xDF, 0xBF, 0x7F};
// File_checked_for_headers
|