使用soui开发的mbc,只支持windows版本
w1146869587
2022-01-24 479b1995ef435713c2cf4f0da8de3a6af6c30922
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
#include "StdAfx.h"
#include "MBFile.h"
#include <algorithm>
#include <vector>
 
CMBFile::CMBFile(void)
{
}
 
CMBFile::~CMBFile(void)
{
}
 
const DWORD CMBFile::m_dwBufferSize = 1024;
 
// One possible apprach and why it was rejected:
// API function MultiByteToWideChar could of been used for UTF-8, but this
// means you either end up with two buffers (maybe doubling your memory usage)
// or you still have to do some pre-processing.
// Also, MultiByteToWideChar does not process non Windows line endings.
 
// The approach taken:
// After determining the file type, count how many bytes will be needed
// for the decoded file (this includes checking for non Windows
// line endings).  Realloc to the new size and decode the file in place.
 
// This class will undergo another rewrite, where I will go more for
// readability over efficiency.  I think at the moment it probably
// suffers from 'premature optimisation'..!
HLOCAL CMBFile::Load (CFile *pFile, e_FileType &eFileType,
    e_FileFormat &eFileFormat, DWORD &dwNewSize)
{
    DWORD dwSize = pFile->GetLength ();
    HLOCAL hMem = 0;
    HLOCAL hNewMem = 0;
    unsigned char *pucText = 0;
 
    if (eFileType == eAutoFileType)
    {
        // This function can throw an exception. It is caught by
        // CNotepadreDoc::OnOpenDocument.
        GetFileType (pFile, eFileType, dwSize);
    }
    else
    {
        // TODO:  eFileType and eFileFormat are specified.
        // Load as the specified type and format.
    }
 
    ASSERT (eFileType < eAutoFileType);
 
    try
    {
        hMem = ::LocalAlloc (LMEM_MOVEABLE, dwSize + sizeof (TCHAR));
 
        if (hMem == 0) AfxThrowMemoryException ();
 
        pucText = static_cast<unsigned char *> (::LocalLock (hMem));
        // Call memset so that the trailing zero is set
        // and to make debugging the loader easier...
        ::memset (pucText, 0, dwSize + sizeof (TCHAR));
        Read (pFile, pucText, dwSize);
        dwNewSize = CountBytes (pucText, dwSize, eFileType, eFileFormat);
        ::LocalUnlock (hMem);
        // realloc to account for any lines that have UNIX or
        // Macintosh end of line characters
        hNewMem = ::LocalReAlloc (hMem, dwNewSize + sizeof (TCHAR),
            LMEM_MOVEABLE);
 
        if (hNewMem == 0)
        {
            // LocalReAlloc failed, so attempt to re-load
            ::LocalFree (hMem);
            hMem = 0;
            hNewMem = ::LocalAlloc (LMEM_MOVEABLE, dwNewSize + sizeof (TCHAR));
 
            if (hNewMem == 0) AfxThrowMemoryException ();
 
            pucText = static_cast<unsigned char *> (::LocalLock (hNewMem));
            ::memset (pucText, 0, dwNewSize + sizeof (TCHAR));
 
            if (eFileType == eANSI)
                pFile->SeekToBegin ();
            else if (eFileType != eUTF8)
                pFile->Seek (2, CFile::begin);
 
            if (eFileType != eUTF8)
            {
                // Use original size (file size has not changed!)
                Read (pFile, pucText, dwSize);
            }
        }
        else
        {
            hMem = 0;
            pucText = static_cast<unsigned char *> (::LocalLock (hNewMem));
 
            if (dwNewSize > dwSize)
            {
                ::memset (pucText + dwSize + sizeof (TCHAR), 0,
                    dwNewSize - dwSize);
            }
        }
    }
    catch (...)
    {
        ::LocalFree (hMem);
        hMem = 0;
        ::LocalFree (hNewMem);
        hNewMem = 0;
        // Pass exception on to CNotepadreDoc::OnOpenDocument
        throw;
    }
 
    if (eFileType == eUTF8)
    {
        pFile->Seek (3, CFile::begin);
        ::memset (pucText, 0, dwNewSize + sizeof (TCHAR));
        // TO DO: Decode the file in place (move it down the buffer and
        // place decoded chars at the front of the buffer).
        LoadUTF8File (pFile, eFileFormat,
            reinterpret_cast<wchar_t *> (pucText), dwSize);
    }
    else
    {
        ExpandText (reinterpret_cast<TCHAR *>(pucText), dwSize,
            dwNewSize / sizeof (TCHAR), eFileType, eFileFormat);
    }
 
    ::LocalUnlock (hNewMem);
    return hNewMem;
}
 
void CMBFile::Save (const TCHAR *pszText, const DWORD dwChars,
    const e_FileType eFileType, const e_FileFormat eFileFormat, CFile *pFile)
{
    DWORD dwCharCount = dwChars;
    // Must be an even number greater than 3...
    unsigned char ucBuffer[m_dwBufferSize];
    DWORD dwSize = 0;
 
    SaveHeader (pFile, eFileType);
 
    while (dwCharCount)
    {
        FillBuffer (pszText, dwCharCount, eFileType, eFileFormat, ucBuffer,
            m_dwBufferSize, dwSize);
        // Write throws CFileException if it fails
        pFile->Write (ucBuffer, dwSize);
    }
}
 
// All file read operations come through here
void CMBFile::Read (CFile *pFile, unsigned char *pucText, const DWORD dwSize)
{
    if (pFile->Read (pucText, dwSize) != dwSize)
    {
        AfxThrowArchiveException (CArchiveException::endOfFile);
    }
}
 
void CMBFile::GetFileType (CFile *pFile, e_FileType &eFileType,
    DWORD &dwSize)
{
    // Default to ANSI
    eFileType = eANSI;
    dwSize = pFile->GetLength ();
 
    if (dwSize > 1)
    {
        unsigned char ucHeader[2];
 
        Read (pFile, ucHeader, 2);
 
        // Check for Unicode
        if (ucHeader[0] == 0xff && ucHeader[1] == 0xfe)
        {
            // A Unicode file must have an even number of bytes
            if (dwSize % 2 == 0)
            {
                eFileType = eUnicode;
                dwSize -= 2;
            }
            else
            {
                eFileType = eINVALID;
            }
        }
        // Check for Unicode Big Endian
        else if (ucHeader[0] == 0xfe &&    ucHeader[1] == 0xff)
        {
            // A Unicode (Big Endian) file must have an even number of bytes
            if (dwSize % 2 == 0)
            {
                eFileType = eUnicodeBigEndian;
                dwSize -= 2;
            }
            else
            {
                eFileType = eINVALID;
            }
        }
        // Check for UTF-8
        else if (ucHeader[0] == 0xef &&    ucHeader[1] == 0xbb)
        {
            // UTF-8 has a three char header
            if (dwSize > 2)
            {
                Read (pFile, ucHeader, 1);
 
                if (ucHeader[0] == 0xbf)
                {
                    eFileType = eUTF8;
                    dwSize -= 3;
                }
                else
                {
                    eFileType = eINVALID;
                }
            }
            else
            {
                eFileType = eINVALID;
            }
        }
        else
        {
            pFile->SeekToBegin ();
        }
    }
 
    if (eFileType == eINVALID)
    {
        AfxThrowArchiveException (CArchiveException::badIndex);
    }
 
#ifndef _UNICODE
    if (eFileType != eANSI)
    {
        AfxThrowArchiveException (CArchiveException::badIndex);
    }
#endif
}
DWORD CMBFile::CountBytes (unsigned char *pucText,
    const DWORD dwSize, const e_FileType &eFileType, e_FileFormat &eFileFormat)
{
    DWORD dwNewChars = 0;
    const TCHAR *pszText = reinterpret_cast<const TCHAR *>(pucText);
    unsigned __int64 ui64Windows = 0;
    unsigned __int64 ui64UNIX = 0;
    unsigned __int64 ui64Macintosh = 0;
    std::vector<__int64> FormatVector;
 
    // It is more efficient to process each file type separately
    if (eFileType == eANSI)
    {
        dwNewChars = CountCharsANSI (pucText, dwSize, ui64Windows, ui64UNIX,
            ui64Macintosh);
    }
    else if (eFileType == eUnicode)
    {
        dwNewChars = CountCharsUnicode (reinterpret_cast<const TCHAR *>
            (pucText), dwSize / sizeof (TCHAR), ui64Windows, ui64UNIX,
            ui64Macintosh);
    }
    else if (eFileType == eUnicodeBigEndian)
    {
        dwNewChars = CountCharsUnicodeBE (reinterpret_cast<TCHAR *>
            (pucText), dwSize / sizeof (TCHAR), ui64Windows, ui64UNIX,
            ui64Macintosh);
    }
    else
    {
        dwNewChars = CountCharsUTF8 (pucText, dwSize, ui64Windows, ui64UNIX,
            ui64Macintosh);
    }
 
    if (eFileFormat == eAutoFileFormat)
    {
        FormatVector.push_back (ui64Windows);
        FormatVector.push_back (ui64UNIX);
        FormatVector.push_back (ui64Macintosh);
        std::sort (FormatVector.begin (), FormatVector.end ());
 
        if (FormatVector[2] == ui64Windows)
        {
            eFileFormat = CMBFile::eWindows;
        }
        else if (FormatVector[2] == ui64UNIX)
        {
            eFileFormat = CMBFile::eUNIX;
        }
        else if (FormatVector[2] == ui64Macintosh)
        {
            eFileFormat = CMBFile::eMacintosh;
        }
    }
 
    return dwNewChars * sizeof (TCHAR);
}
 
DWORD CMBFile::CountCharsANSI (const unsigned char *pucText,
    const DWORD dwChars, unsigned __int64 &ui64Windows,
    unsigned __int64 &ui64UNIX, unsigned __int64 &ui64Macintosh)
{
    DWORD dwCount = dwChars;
    DWORD dwNewChars = 0;
 
    while (dwCount)
    {
        if (*pucText == '\r')
        {
            if (*(pucText + 1) != '\n')
            {
                ui64Macintosh++;
                dwNewChars++;
            }
            else
            {
                ui64Windows++;
            }
        }
        else if (*pucText == '\n')
        {
            if (dwCount == dwChars || *(pucText - 1) != '\r')
            {
                ui64UNIX++;
                dwNewChars++;
            }
 
            // In the case of Windows format \r\n has already been checked
        }
 
        pucText++;
        dwNewChars++;
        dwCount--;
    }
 
    return dwNewChars;
}
 
DWORD CMBFile::CountCharsUnicode (const TCHAR *pszText,
    const DWORD dwChars, unsigned __int64 &ui64Windows,
        unsigned __int64 &ui64UNIX, unsigned __int64 &ui64Macintosh)
{
    DWORD dwCount = dwChars;
    DWORD dwNewChars = 0;
 
    while (dwCount)
    {
        if (*pszText == '\r')
        {
            if (*(pszText + 1) != '\n')
            {
                ui64Macintosh++;
                dwNewChars++;
            }
            else
            {
                ui64Windows++;
            }
        }
        else if (*pszText == '\n')
        {
            if (dwCount == dwChars || *(pszText - 1) != '\r')
            {
                ui64UNIX++;
                dwNewChars++;
            }
 
            // In the case of Windows format \r\n has already been checked
        }
 
        pszText++;
        dwNewChars++;
        dwCount--;
    }
 
    return dwNewChars;
}
 
// Swap bytes at the same time for efficiencies sake
DWORD CMBFile::CountCharsUnicodeBE (TCHAR *pszText,
    const DWORD dwChars, unsigned __int64 &ui64Windows,
    unsigned __int64 &ui64UNIX, unsigned __int64 &ui64Macintosh)
{
    DWORD dwCount = dwChars;
    DWORD dwNewChars = 0;
 
    while (dwCount)
    {
        // Flip wide char to little endian
        *pszText = Swap (*pszText);
 
        if (*pszText == '\r')
        {
            if (Swap (*(pszText + 1)) != '\n')
            {
                ui64Macintosh++;
                dwNewChars++;
            }
            else
            {
                ui64Windows++;
            }
        }
        else if (*pszText == '\n')
        {
            // *(pszText - 1) is already Swapped
            if (dwCount == dwChars || *(pszText - 1) != '\r')
            {
                ui64UNIX++;
                dwNewChars++;
            }
 
            // In the case of Windows format \r\n has already been checked
        }
 
        pszText++;
        dwNewChars++;
        dwCount--;
    }
 
    return dwNewChars;
}
 
DWORD CMBFile::CountCharsUTF8 (const unsigned char *pucText,
    const DWORD dwChars, unsigned __int64 &ui64Windows,
        unsigned __int64 &ui64UNIX, unsigned __int64 &ui64Macintosh)
{
    DWORD dwCount = dwChars;
    DWORD dwBytes = 0;
    DWORD dwNewChars = 0;
    wchar_t wcPrevChar = 0;
    wchar_t wcChar = 0;
 
    while (dwCount)
    {
        dwBytes = CheckUTF8Char (pucText, dwCount);
        dwCount -= dwBytes;
 
        if (dwBytes == 1)
        {
            // Only interested in '\r' and '\n'...
            wcChar = *pucText;
        }
        else
        {
            // If > 1 char, we don't care about it.
            wcChar = 0;
        }
 
        if (wcPrevChar == '\r')
        {
            if (wcChar != '\n')
            {
                ui64Macintosh++;
                dwNewChars++;
            }
            else
            {
                ui64Windows++;
            }
        }
        else if (wcChar == '\n')
        {
            if (wcPrevChar != '\r')
            {
                ui64UNIX++;
                dwNewChars++;
            }
 
            // In the case of Windows format \r\n has already been checked
        }
 
        pucText += dwBytes;
        wcPrevChar = wcChar;
        dwNewChars++;
    }
 
    // Check if last character is \r
    if (wcChar == '\r')
    {
        ui64Macintosh++;
        dwNewChars++;
    }
 
    return dwNewChars;
}
 
inline wchar_t CMBFile::Swap (wchar_t wc)
{
    char *pc = reinterpret_cast<char *> (&wc);
    char c = *pc;
 
    *pc++ = *(pc + 1);
    *pc = c;
    return wc;
}
 
// UTF-8 Format:
// 0000:0000 -> 0000:007f = 0xxxxxxx
// 0000:0080 -> 0000:07ff = 110xxxxx 10xxxxxx
// 0000:0800 -> 0000:ffff = 1110xxxx 10xxxxxx 10xxxxxx
 
// Counts how many bytes the next UTF-8 uses and returns them.
// Checks that there are no obvious data errors in the file
DWORD CMBFile::CheckUTF8Char (const unsigned char * pucBytes,
    const DWORD dwCharsLeft)
{
    DWORD dwBytes = 0;
    unsigned char ucCountMask = 0x80;
 
    while (*pucBytes & ucCountMask)
    {
        ucCountMask >>= 1;
        dwBytes++;
    }
 
    if (dwBytes == 0)
    {
        dwBytes = 1;
    }
    else
    {
        int i = 0;
    }
 
    if (dwBytes > 3 || dwCharsLeft - dwBytes < 0)
    {
        // Only support 16 bit unicode, check for unexpected EOF
        AfxThrowArchiveException (CArchiveException::badIndex);
    }
 
    for (DWORD dwIndex = 1; dwIndex < dwBytes; dwIndex++)
    {
        if ((pucBytes[dwIndex] & 0xc0) != 0x80)
        {
            // Data not as advertised
            AfxThrowArchiveException (CArchiveException::badIndex);
        }
    }
 
    return dwBytes;
}
 
DWORD CMBFile::DecodeUTF8Char (const unsigned char * &pucBytes,
    wchar_t &wcChar)
{
    DWORD dwBytes = 0;
    unsigned char ucCountMask = 0x80;
    unsigned char ucHighMask = 0x7f;
    unsigned char ucBytes[2] = {0, 0};
 
    while (*pucBytes & ucCountMask)
    {
        ucCountMask >>= 1;
        ucHighMask >>= 1;
        dwBytes++;
    }
 
    if (dwBytes == 0) dwBytes = 1;
 
    if (dwBytes > 1)
    {
        unsigned char ucHighBits = *(pucBytes + dwBytes - 2) << 6;
 
        ucBytes[0] = *(pucBytes + dwBytes - 1) & 0x3f;
        ucBytes[0] |= ucHighBits;
 
        if (dwBytes > 2)
        {
            ucBytes[1] = *(pucBytes + dwBytes - 2) & 0x3f;
            ucBytes[1] >>= 2;
            ucBytes[1] |= (*pucBytes & ucHighMask) << 4;
        }
        else
        {
            ucBytes[1] = (*pucBytes & ucHighMask) >> 2;
        }
 
        wcChar = *reinterpret_cast<wchar_t *> (ucBytes);
        pucBytes += dwBytes;
    }
    else
    {
        wcChar = *pucBytes++;
    }
 
    return dwBytes;
}
 
void CMBFile::LoadUTF8File (CFile *pFile,
    const e_FileFormat eFileFormat, wchar_t *pszText, const DWORD dwSize)
{
    wchar_t wcPreviousChar = 0;
    DWORD dwBytesLeft = dwSize;
    // Must not be less than 3..!
    unsigned char ucBuffer[m_dwBufferSize];
    DWORD dwBufferIndex = 0;
    DWORD dwBytesToLoad = 0;
 
    while (dwBytesLeft)
    {
        dwBytesToLoad = dwBytesLeft > m_dwBufferSize ? m_dwBufferSize :
            dwBytesLeft;
        Read (pFile, ucBuffer, dwBytesToLoad);
        dwBytesLeft -= dwBytesToLoad;
        dwBufferIndex = 0;
 
        while (dwBytesToLoad)
        {
            if (ucBuffer[dwBufferIndex] & 0x80)
            {
                unsigned char ucMask = 0x80;
                DWORD dwBytes = 0;
                unsigned char *puc = 0;
                DWORD dwIndex = 0;
                wchar_t wcChar = 0;
 
                // File format has already been checked for validity
                // so we don't need to check again.
                while (ucBuffer[dwBufferIndex] & ucMask)
                {
                    ucMask >>= 1;
                    dwBytes++;
                }
 
                if (dwBytes > dwBytesToLoad)
                {
                    DWORD dwAdditional = dwBytesToLoad;
 
                    // Buffer over-run - reload buffer
                    memcpy (ucBuffer, &ucBuffer[dwBufferIndex], dwAdditional);
                    dwBytesToLoad = dwBytesLeft > m_dwBufferSize ?
                        m_dwBufferSize - dwAdditional : dwBytesLeft;
                    Read (pFile, &ucBuffer[dwAdditional], dwBytesToLoad);
                    dwBytesLeft -= dwBytesToLoad;
                    dwBytesToLoad += dwAdditional;
                    dwBufferIndex = 0;
                }
 
                puc = &ucBuffer[dwBufferIndex];
 
                dwIndex = DecodeUTF8Char( (const unsigned char*&)puc, wcChar );
                *pszText++ = wcChar;
                dwBytesToLoad -= dwIndex;
                dwBufferIndex += dwIndex;
            }
            else
            {
                // Because we are decoding a character at a time and the
                // loading of the file is buffered, it is easier to
                // keep track of the previous character.
                if (wcPreviousChar == '\r' && ucBuffer[dwBufferIndex] != '\n')
                {
                    *pszText++ = '\n';
                }
                // This means we are one character behind, so we have to check
                // for the last character being \r outside of this loop.
                else if (ucBuffer[dwBufferIndex] == '\n' && wcPreviousChar != '\r')
                {
                    *pszText++ = '\r';
                }
 
                *pszText++ = ucBuffer[dwBufferIndex];
                dwBufferIndex++;
                dwBytesToLoad--;
            }
 
            wcPreviousChar = *(pszText - 1);
        }
    }
 
    // Check for case of Macintosh format ending with \r
    if (wcPreviousChar == '\r')
    {
        *pszText++ = '\n';
    }
}
 
void CMBFile::ExpandText (TCHAR *pszText, const DWORD dwSize,
    const DWORD dwChars, const e_FileType eFileType,
    const e_FileFormat eFileFormat)
{
    // It is more efficient to process each file type separately
    if (eFileType == eANSI)
    {
        DWORD dwCharCount = dwChars;
        // use a char * as the file is read as bytes regardless of build type
        unsigned char *pszRead = (reinterpret_cast<unsigned char *>
            (pszText)) + dwSize - 1;
        // build dependant write pointer (TCHAR)
        TCHAR *pszWrite = pszText + dwChars - 1;
 
        // Read backwards so that writing out chars
        // does not write over data yet to be read
        while (dwCharCount)
        {
            if (*pszRead == '\r' && *(pszWrite + 1) != '\n')
            {
                *pszWrite-- = '\n';
                dwCharCount--;
                *pszWrite-- = *pszRead--;
            }
            // Check for running off the beginning of the buffer.
            // In this case, dwCharCount will be 2.
            else if (*pszRead == '\n' && (dwCharCount < 3 ||
                *(pszRead - 1) != '\r'))
            {
                *pszWrite-- = *pszRead--;
                *pszWrite-- = '\r';
                dwCharCount--;
            }
            else
            {
                *pszWrite-- = *pszRead--;
            }
 
            dwCharCount--;
        }
    }
    else if (eFileType == eUnicode || eFileType == eUnicodeBigEndian)
    {
        DWORD dwCharCount = dwChars;
        TCHAR *pszRead = pszText + dwSize / sizeof (wchar_t) - 1;
        TCHAR *pszWrite = pszText + dwChars - 1;
 
        // Read backwards so that writing out chars
        // does not write over data yet to be read
        while (dwCharCount)
        {
            if (*pszRead == '\r' && *(pszWrite + 1) != '\n')
            {
                *pszWrite-- = '\n';
                dwCharCount--;
                *pszWrite-- = *pszRead--;
            }
            // Check for running off the beginning of the buffer.
            // In this case, dwCharCount will be 2.
            else if (*pszRead == '\n' && (dwCharCount < 3 ||
                *(pszRead - 1) != '\r'))
            {
                *pszWrite-- = *pszRead--;
                *pszWrite-- = '\r';
                dwCharCount--;
            }
            else
            {
                *pszWrite-- = *pszRead--;
            }
 
            dwCharCount--;
        }
    }
    else
    {
        ASSERT (0);
    }
 
    ZerosToSpaces (pszText, dwChars);
}
 
void CMBFile::ZerosToSpaces (TCHAR *pszText, const DWORD dwChars)
{
    for (DWORD c = 0; c < dwChars; c++)
    {
        if (!*pszText) *pszText = ' ';
 
        pszText++;
    }
}
 
void CMBFile::SaveHeader (CFile *pFile, const e_FileType eFileType)
{
    if (eFileType == eUnicode)
    {
        char szHeader[] = {(char) 0xff, (char) 0xfe};
 
        // Write throws CFileException if it fails
        pFile->Write (szHeader, 2);
    }
    else if (eFileType == eUnicodeBigEndian)
    {
        char szHeader[] = {(char) 0xfe, (char) 0xff};
 
        // Write throws CFileException if it fails
        pFile->Write (szHeader, 2);
    }
    else if (eFileType == eUTF8)
    {
        char szHeader[] = {(char) 0xef, (char) 0xbb, (char) 0xbf};
 
        // Write throws CFileException if it fails
        pFile->Write (szHeader, 3);
    }
    else if (eFileType != eANSI)
    {
        ASSERT (0);
    }
}
 
void CMBFile::FillBuffer (const TCHAR * &pszText, DWORD &dwCharCount,
    const e_FileType eFileType,    const e_FileFormat eFileFormat,
    unsigned char *ucBuffer, const DWORD dwBufferSize, DWORD &dwSize)
{
    DWORD dwBufferIndex = 0;
 
    dwSize = 0;
 
    if (eFileType == eANSI)
    {
#ifdef _UNICODE
        while (dwCharCount && dwBufferIndex < dwBufferSize)
        {
            if (!(eFileFormat == eUNIX && *pszText == '\r') &&
                !(eFileFormat == eMacintosh && *pszText == '\n'))
            {
                ucBuffer[dwBufferIndex++] =
                    *reinterpret_cast<const unsigned char *> (pszText);
                dwSize++;
            }
 
            pszText++;
            dwCharCount--;
        }
#else
        while (dwCharCount && dwBufferIndex < dwBufferSize)
        {
            if (!(eFileFormat == eUNIX && *pszText == '\r') &&
                !(eFileFormat == eMacintosh && *pszText == '\n'))
            {
                ucBuffer[dwBufferIndex++] = *pszText;
                dwSize++;
            }
 
            pszText++;
            dwCharCount--;
        }
#endif
    }
    else if (eFileType == eUnicode)
    {
#ifdef _UNICODE
        while (dwCharCount && dwBufferIndex < dwBufferSize)
        {
            if (!(eFileFormat == eUNIX && *pszText == '\r') &&
                !(eFileFormat == eMacintosh && *pszText == '\n'))
            {
                ucBuffer[dwBufferIndex++] = LOBYTE (*pszText);
                ucBuffer[dwBufferIndex++] = HIBYTE (*pszText);
                dwSize += 2;
            }
 
            pszText++;
            dwCharCount--;
        }
#else
        while (dwCharCount && dwBufferIndex < dwBufferSize)
        {
            if (!(eFileFormat == eUNIX && *pszText == '\r') &&
                !(eFileFormat == eMacintosh && *pszText == '\n'))
            {
                ucBuffer[dwBufferIndex++] = *pszText;
                ucBuffer[dwBufferIndex++] = 0;
                dwSize += 2;
            }
 
            pszText++;
            dwCharCount--;
        }
#endif
    }
    else if (eFileType == eUnicodeBigEndian)
    {
#ifdef _UNICODE
        while (dwCharCount && dwBufferIndex < dwBufferSize)
        {
            if (!(eFileFormat == eUNIX && *pszText == '\r') &&
                !(eFileFormat == eMacintosh && *pszText == '\n'))
            {
                ucBuffer[dwBufferIndex++] = HIBYTE (*pszText);
                ucBuffer[dwBufferIndex++] = LOBYTE (*pszText);
                dwSize += 2;
            }
 
            pszText++;
            dwCharCount--;
        }
#else
        while (dwCharCount && dwBufferIndex < dwBufferSize)
        {
            if (!(eFileFormat == eUNIX && *pszText == '\r') &&
                !(eFileFormat == eMacintosh && *pszText == '\n'))
            {
                ucBuffer[dwBufferIndex++] = 0;
                ucBuffer[dwBufferIndex++] = *pszText;
                dwSize += 2;
            }
 
            pszText++;
            dwCharCount--;
        }
#endif
    }
    else if (eFileType == eUTF8)
    {
        wchar_t wc = 0;
        unsigned char ucHeader = 0;
        unsigned char ucHigh = 0;
        unsigned char ucLow = 0;
        unsigned char ucHighBitsHigh = 0;
        unsigned char ucHighBitsLow = 0;
 
        while (dwCharCount && dwBufferIndex < dwBufferSize)
        {
            wc = *pszText;
 
            if (wc > 0x7ff)
            {
                // break if buffer will over-run
                if (dwBufferIndex > dwBufferSize - 3) break;
 
                ucHeader = 0xe0;
                ucHigh = HIBYTE (wc);
                ucLow = LOBYTE (wc);
                ucHighBitsHigh = ucHigh & 0xf0;
                ucHighBitsLow = ucLow & 0xc0;
 
                ucLow &= 0x3f;
                ucLow |= 0x80;
                ucHigh <<= 2;
                ucHigh &= 0x3f;
                ucHigh |= 0x80;
 
                if (ucHighBitsLow & 0x80) ucHigh |= 2;
                if (ucHighBitsLow & 0x40) ucHigh |= 1;
                if (ucHighBitsHigh & 0x80) ucHeader |= 8;
                if (ucHighBitsHigh & 0x40) ucHeader |= 4;
                if (ucHighBitsHigh & 0x20) ucHeader |= 2;
                if (ucHighBitsHigh & 0x10) ucHeader |= 1;
 
                ucBuffer[dwBufferIndex++] = ucHeader;
                ucBuffer[dwBufferIndex++] = ucHigh;
                ucBuffer[dwBufferIndex++] = ucLow;
                dwSize += 3;
            }
            else if (wc > 0x7f)
            {
                // break if buffer will over-run
                if (dwBufferIndex > dwBufferSize - 2) break;
 
                ucHigh = HIBYTE (wc);
                ucLow = LOBYTE (wc);
                ucHighBitsLow = ucLow & 0xc0;
 
                ucLow &= 0x3f;
                ucLow |= 0x80;
                ucHigh <<= 2;
 
                if (ucHighBitsLow & 0x80) ucHigh |= 2;
                if (ucHighBitsLow & 0x40) ucHigh |= 1;
 
                ucHigh |= 0xc0;
 
                ucBuffer[dwBufferIndex++] = ucHigh;
                ucBuffer[dwBufferIndex++] = ucLow;
                dwSize += 2;
            }
            else if (!(eFileFormat == eUNIX && *pszText == '\r') &&
                !(eFileFormat == eMacintosh && *pszText == '\n'))
            {
                ucBuffer[dwBufferIndex++] =
                    *reinterpret_cast<const char *> (pszText);
                dwSize++;
            }
 
            pszText++;
            dwCharCount--;
        }
    }
    else
    {
        ASSERT (0);
    }
}