summaryrefslogtreecommitdiffstats
path: root/mimelib/binhex.cpp
blob: 735c08a307296d1fb7832743e42f8582b498a53c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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
// binhex.cpp

#include <string.h>
#include <mimelib/binhex.h>

const char * const kPreamble =
    "(This file must be converted with BinHex 4.0)";

const char kBinhexChars[] =
  "!\"#$%&'()*+,-012345689@ABCDEFGHIJKLMNPTQRSTUVXYZ[`abcdefhijklmpqr";
//            1         2         3         4         5         6
// 0 123456789012345678901234567890123456789012345678901234567890123

#define DONE 0x7F
#define SKIP 0x7E
#define FAIL 0x7D

const char kBinhexTable[] = {
// 0x00
    SKIP, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
    FAIL, SKIP, SKIP, FAIL, FAIL, SKIP, FAIL, FAIL,
// 0x10
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
// 0x20
    SKIP, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
    0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, FAIL, FAIL,
// 0x30
    0x0D, 0x0E, 0x0F, 0x10, 0x11, 0x12, 0x13, FAIL,
    0x14, 0x15, DONE, FAIL, FAIL, FAIL, FAIL, FAIL,
// 0x40
    0x16, 0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D,
    0x1E, 0x1F, 0x20, 0x21, 0x22, 0x23, 0x24, FAIL,
// 0x50
    0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x2B, FAIL,
    0x2C, 0x2D, 0x2E, 0x2F, FAIL, FAIL, FAIL, FAIL,
// 0x60
    0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, FAIL,
    0x37, 0x38, 0x39, 0x3A, 0x3B, 0x3C, FAIL, FAIL,
// 0x70
    0x3D, 0x3E, 0x3F, FAIL, FAIL, FAIL, FAIL, FAIL,
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
// 0x80
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
// 0x90
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
// 0xA0
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
// 0xB0
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
// 0xC0
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
// 0xD0
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
// 0xE0
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
// 0xF0
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
    FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
};

static DwUint16 kCrcTable[] = {
    0x0000, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7,
    0x8108, 0x9129, 0xa14a, 0xb16b, 0xc18c, 0xd1ad, 0xe1ce, 0xf1ef,
    0x1231, 0x0210, 0x3273, 0x2252, 0x52b5, 0x4294, 0x72f7, 0x62d6,
    0x9339, 0x8318, 0xb37b, 0xa35a, 0xd3bd, 0xc39c, 0xf3ff, 0xe3de,
    0x2462, 0x3443, 0x0420, 0x1401, 0x64e6, 0x74c7, 0x44a4, 0x5485,
    0xa56a, 0xb54b, 0x8528, 0x9509, 0xe5ee, 0xf5cf, 0xc5ac, 0xd58d,
    0x3653, 0x2672, 0x1611, 0x0630, 0x76d7, 0x66f6, 0x5695, 0x46b4,
    0xb75b, 0xa77a, 0x9719, 0x8738, 0xf7df, 0xe7fe, 0xd79d, 0xc7bc,
    0x48c4, 0x58e5, 0x6886, 0x78a7, 0x0840, 0x1861, 0x2802, 0x3823,
    0xc9cc, 0xd9ed, 0xe98e, 0xf9af, 0x8948, 0x9969, 0xa90a, 0xb92b,
    0x5af5, 0x4ad4, 0x7ab7, 0x6a96, 0x1a71, 0x0a50, 0x3a33, 0x2a12,
    0xdbfd, 0xcbdc, 0xfbbf, 0xeb9e, 0x9b79, 0x8b58, 0xbb3b, 0xab1a,
    0x6ca6, 0x7c87, 0x4ce4, 0x5cc5, 0x2c22, 0x3c03, 0x0c60, 0x1c41,
    0xedae, 0xfd8f, 0xcdec, 0xddcd, 0xad2a, 0xbd0b, 0x8d68, 0x9d49,
    0x7e97, 0x6eb6, 0x5ed5, 0x4ef4, 0x3e13, 0x2e32, 0x1e51, 0x0e70,
    0xff9f, 0xefbe, 0xdfdd, 0xcffc, 0xbf1b, 0xaf3a, 0x9f59, 0x8f78,
    0x9188, 0x81a9, 0xb1ca, 0xa1eb, 0xd10c, 0xc12d, 0xf14e, 0xe16f,
    0x1080, 0x00a1, 0x30c2, 0x20e3, 0x5004, 0x4025, 0x7046, 0x6067,
    0x83b9, 0x9398, 0xa3fb, 0xb3da, 0xc33d, 0xd31c, 0xe37f, 0xf35e,
    0x02b1, 0x1290, 0x22f3, 0x32d2, 0x4235, 0x5214, 0x6277, 0x7256,
    0xb5ea, 0xa5cb, 0x95a8, 0x8589, 0xf56e, 0xe54f, 0xd52c, 0xc50d,
    0x34e2, 0x24c3, 0x14a0, 0x0481, 0x7466, 0x6447, 0x5424, 0x4405,
    0xa7db, 0xb7fa, 0x8799, 0x97b8, 0xe75f, 0xf77e, 0xc71d, 0xd73c,
    0x26d3, 0x36f2, 0x0691, 0x16b0, 0x6657, 0x7676, 0x4615, 0x5634,
    0xd94c, 0xc96d, 0xf90e, 0xe92f, 0x99c8, 0x89e9, 0xb98a, 0xa9ab,
    0x5844, 0x4865, 0x7806, 0x6827, 0x18c0, 0x08e1, 0x3882, 0x28a3,
    0xcb7d, 0xdb5c, 0xeb3f, 0xfb1e, 0x8bf9, 0x9bd8, 0xabbb, 0xbb9a,
    0x4a75, 0x5a54, 0x6a37, 0x7a16, 0x0af1, 0x1ad0, 0x2ab3, 0x3a92,
    0xfd2e, 0xed0f, 0xdd6c, 0xcd4d, 0xbdaa, 0xad8b, 0x9de8, 0x8dc9,
    0x7c26, 0x6c07, 0x5c64, 0x4c45, 0x3ca2, 0x2c83, 0x1ce0, 0x0cc1,
    0xef1f, 0xff3e, 0xcf5d, 0xdf7c, 0xaf9b, 0xbfba, 0x8fd9, 0x9ff8,
    0x6e17, 0x7e36, 0x4e55, 0x5e74, 0x2e93, 0x3eb2, 0x0ed1, 0x1ef0
};


inline DwUint16 UPDATE_CRC(DwUint16 crc, int ch)
{
    int idx = ((crc >> 8) ^ ch) & 0xff;
    return (DwUint16) ((crc << 8) ^ kCrcTable[idx]);
}


struct DwBinhexEncodeCtx {
    DwBinhexEncodeCtx();
    void PutChar(int aChar);
    void EncodeChar(int aChar);
    void Finalize();
    DwString mBuffer;
    int      mRunLen;
    int      mLastChar;
    char     mScratch[8];      // for 8-bit to ASCII conversion
    int      mScratchPos;      // number of chars in mScratch
    int      mLineLength;
};


DwBinhexEncodeCtx::DwBinhexEncodeCtx()
{
    mRunLen     =  1;
    mLastChar   = -1;
    mScratchPos =  0;
    mLineLength =  0;
}


inline void DwBinhexEncodeCtx::PutChar(int aChar)
{
    if (mLineLength == 64) {
        mBuffer.append(DW_EOL);
        mLineLength = 0;
    }
    mBuffer.append((size_t) 1, (char) aChar);
    ++mLineLength;
}


void DwBinhexEncodeCtx::EncodeChar(int aChar)
{
    // If we're in a run...
    if (aChar == mLastChar && mRunLen < 255) {
        ++mRunLen;
        return;
    }
    // If we are not in a run, and have not just finished a run...
    if (mRunLen == 1) {
        // Output the current character, but watch for 0x90, which must be
        // output as the two character sequence 0x90 0x00
        if (aChar != 0x90) {
            mScratch[mScratchPos++] = (DwUint8) aChar;
        }
        else {
            mScratch[mScratchPos++] = (DwUint8) 0x90;
            mScratch[mScratchPos++] = (DwUint8) 0x00;
        }
    }
    // If we just finished a run of length 2 ...
    else if (mRunLen == 2) {
        // Output the last character, but watch for 0x90, which must be
        // output as the two character sequence 0x90 0x00
        if (mLastChar != 0x90) {
            mScratch[mScratchPos++] = (DwUint8) mLastChar;
        }
        else {
            mScratch[mScratchPos++] = (DwUint8) 0x90;
            mScratch[mScratchPos++] = (DwUint8) 0x00;
        }
        // Output the current character, but watch for 0x90, which must be
        // output as the two character sequence 0x90 0x00
        if (aChar != 0x90) {
            mScratch[mScratchPos++] = (DwUint8) aChar;
        }
        else {
            mScratch[mScratchPos++] = (DwUint8) 0x90;
            mScratch[mScratchPos++] = (DwUint8) 0x00;
        }
    }
    // If we just finished a run of length greater than 2 ...
    else /* if (mRunLen > 2) */ {
        // Output the run length code
        mScratch[mScratchPos++] = (DwUint8) 0x90;
        mScratch[mScratchPos++] = (DwUint8) mRunLen;
        // Output the current character, but watch for 0x90, which must be
        // output as the two character sequence 0x90 0x00
        if (aChar != 0x90) {
            mScratch[mScratchPos++] = (DwUint8) aChar;
        }
        else {
            mScratch[mScratchPos++] = (DwUint8) 0x90;
            mScratch[mScratchPos++] = (DwUint8) 0x00;
        }
    }
    mRunLen = 1;
    mLastChar = aChar;
    while (mScratchPos >= 3) {
        int n = mScratch[0] >> 2;
        PutChar(kBinhexChars[n&0x3f]);
        n = (mScratch[0] << 4) | ((mScratch[1] >> 4) & 0x0f);
        PutChar(kBinhexChars[n&0x3f]);
        n = (mScratch[1] << 2) | ((mScratch[2] >> 6) & 0x03);
        PutChar(kBinhexChars[n&0x3f]);
        n = mScratch[2];
        PutChar(kBinhexChars[n&0x3f]);
        for (int i=0; i < mScratchPos-3; ++i) {
            mScratch[i] = mScratch[i+3];
        }
        mScratchPos -= 3;
    }
}


void DwBinhexEncodeCtx::Finalize()
{
    if (mRunLen == 1) {
    }
    else if (mRunLen == 2) {
        // Output the last character, but watch for 0x90, which must be
        // output as the two character sequence 0x90 0x00
        if (mLastChar != 0x90) {
            mScratch[mScratchPos++] = (DwUint8) mLastChar;
        }
        else {
            mScratch[mScratchPos++] = (DwUint8) 0x90;
            mScratch[mScratchPos++] = (DwUint8) 0x00;
        }
    }
    else /* if aCtx->mRunLen > 2) */ {
        // Output the run length code
        mScratch[mScratchPos++] = (DwUint8) 0x90;
        mScratch[mScratchPos++] = (DwUint8) mRunLen;
    }
    int n;
    while (mScratchPos >= 3) {
        n = mScratch[0] >> 2;
        PutChar(kBinhexChars[n&0x3f]);
        n = (mScratch[0] << 4) | ((mScratch[1] >> 4) & 0x0f);
        PutChar(kBinhexChars[n&0x3f]);
        n = (mScratch[1] << 2) | ((mScratch[2] >> 6) & 0x03);
        PutChar(kBinhexChars[n&0x3f]);
        n = mScratch[2];
        PutChar(kBinhexChars[n&0x3f]);
        for (int i=0; i < mScratchPos-3; ++i) {
            mScratch[i] = mScratch[i+3];
        }
        mScratchPos -= 3;
    }
    switch (mScratchPos) {
    case 0:
        break;
    case 1:
        n = mScratch[0] >> 2;
        PutChar(kBinhexChars[n&0x3f]);
        n = (mScratch[0] << 4);
        PutChar(kBinhexChars[n&0x3f]);        
    case 2:
        n = mScratch[0] >> 2;
        PutChar(kBinhexChars[n&0x3f]);
        n = (mScratch[0] << 4) | ((mScratch[1] >> 4) & 0x0f);
        PutChar(kBinhexChars[n&0x3f]);
        n = (mScratch[1] << 2);
        PutChar(kBinhexChars[n&0x3f]);
    }
}

#if 0

//============================================================================


struct DwBinhexDecodeCtx {
    DwBinhexDecodeCtx();
    int GetChar();
    int DecodeChar();
    DwString mBinhexChars;
    size_t   mPos;
    int      mRunLen;
    int      mLastChar;
    DwUint8  mScratch[4];
    int      mScratchPos;
    int      mScratchCount;
    int      mError;
};


DwBinhexDecodeCtx::DwBinhexDecodeCtx()
{
    mPos = 0;
    mRunLen = 1;
    mLastChar = -1;
    mScratch[0] = 0;
    mScratch[1] = 0;
    mScratch[2] = 0;
    mScratch[3] = 0;
    mScratchPos = 0;
    mScratchCount = 0;
    mError = 0;
}


int DwBinhexDecodeCtx::GetChar()
{
    // Refill the scratch buffer, if necessary
    if (mScratchCount == 0) {
        // Get up to four ASCII chars
        char cc[4];
        size_t k = 0;
        size_t len = mBinhexChars.length();
        const DwString& binhexChars = mBinhexChars;
        while (k < (size_t) 4 && mPos < len) {
            int ch = binhexChars[mPos++] & 0xff;
            ch = kBinhexTable[ch];
            switch (ch) {
            case DONE:
                goto BREAK_1;
            case SKIP:
                break;
            case FAIL:
                mError = 1; // error!
                return -1;
            default:
                cc[k++] = (char) ch;
                break;
            }
        }
        BREAK_1:
        // Convert the ASCII chars to 8-bit chars
        mScratch[0] = 0;
        mScratch[1] = 0;
        mScratch[2] = 0;
        mScratchCount = 0;
        mScratchPos = 0;
        switch (k) {
        case 4:
            mScratch[2] |= (DwUint8) (cc[3] & 0x3f);
            // fall through
        case 3:
            mScratch[2] |= (DwUint8) (cc[2] << 6);
            mScratch[1] |= (DwUint8) ((cc[2] >> 2) & 0x0f);
            ++mScratchCount;
            // fall through
        case 2:
            mScratch[1] |= (DwUint8) (cc[1] << 4);
            mScratch[0] |= (DwUint8) ((cc[1] >> 4) & 0x03);
            ++mScratchCount;
            // fall through
        case 1:
            mScratch[0] |= (DwUint8) (cc[0] << 2);
            ++mScratchCount;
        case 0:
            break;
        }
    }
    // Return an 8-bit char, or -1 if there are no more chars
    int ch;
    if (mScratchCount > 0) {
        --mScratchCount;
        ch = mScratch[mScratchPos++] & 0xff;
    }
    else {
        ch = -1;
    }
    return ch;
}


int DwBinhexDecodeCtx::DecodeChar()
{
    int ch;
    if (mRunLen > 1) {
        ch = mLastChar;
        --mRunLen;
    }
    else /* if (mRunLen == 1) */ {
        ch = GetChar();
        // 0x90 is the escape character
        if ((ch & 0xff) == 0x90) {
            ch = GetChar();
            if (ch == -1) {
                // end of buffer or illegal character
                mError = 1; // error!
            }
            else if (ch == 0) {
                // 0x90 0x00 is decoded to 0x90
                ch = 0x90;
                mRunLen = 1;
            }
            else if (ch == 1) {
                // Could be interpreted as a run of length 1, but in all
                // likelihood, it's an error.
                mError = 1; // error!
                ch = -1;
                mRunLen = 1;
            }
            else if (ch >= 2) {
                // 0x90 n indicates a run of length n
                mRunLen = ch - 1;
                ch = mLastChar;
            }
        }
    }
    mLastChar = ch;
    return ch;
}


//============================================================================


DwBinhex::DwBinhex()
{
    Initialize();
}


DwBinhex::~DwBinhex()
{
}


void DwBinhex::Initialize()
{
    memset(mFileName, 0, sizeof(mFileName));
    memset(mFileType, 0, sizeof(mFileType));
    memset(mFileCreator, 0, sizeof(mFileCreator));
    mFlag1 = 0;
    mFlag2 = 0;
    mDataFork = mResourceFork = mBinhexChars = "";
}


void DwBinhex::SetFileName(const char* aName)
{
    strncpy(mFileName, aName, 64);
    mFileName[63] = 0;
}


const char* DwBinhex::FileName() const
{
    return mFileName;
}


void DwBinhex::SetFileType(const char* aType)
{
    memcpy(mFileType, aType, 4);
}


void DwBinhex::FileType(char* aBuf) const
{
    memcpy(aBuf, mFileType, 4);
}


void DwBinhex::SetFileCreator(const char* aCreator)
{
    memcpy(mFileCreator, aCreator, 4);
}

void DwBinhex::FileCreator(char* aBuf) const
{
    memcpy(aBuf, mFileCreator, 4);
}

 
void DwBinhex::SetFlag1(DwUint8 aFlag)
{
    mFlag1 = aFlag;
}


DwUint8 DwBinhex::Flag1() const
{
    return mFlag1;
}


void DwBinhex::SetFlag2(DwUint8 aFlag)
{
    mFlag2 = aFlag;
}


DwUint8 DwBinhex::Flag2() const
{
    return mFlag2;
}


void DwBinhex::SetDataFork(const DwString& aStr)
{
    mDataFork = aStr;
}


const DwString& DwBinhex::DataFork() const
{
    return mDataFork;
}


void DwBinhex::SetResourceFork(const DwString& aStr)
{
    mResourceFork = aStr;
}


const DwString& DwBinhex::ResourceFork() const
{
    return mResourceFork;
}


void DwBinhex::SetBinhexChars(const DwString& aStr)
{
    mBinhexChars = aStr;
}


const DwString& DwBinhex::BinhexChars() const
{
    return mBinhexChars;
}


void DwBinhex::Encode()
{
    size_t bufSize = (mResourceFork.length()+2)/3*4
        + (mDataFork.length()+2)/3*4 + 27 + strlen(mFileName);
    DwBinhexEncodeCtx ctx;
    ctx.mBuffer.reserve(bufSize);
    ctx.mBuffer.assign(kPreamble);
    ctx.mBuffer.append(DW_EOL);
    ctx.mBuffer.append(1, ':');
    ++ctx.mLineLength;
    DwUint16 crc = 0;
    size_t fileNameLen = strlen(mFileName);
    int ch = fileNameLen;
    crc = UPDATE_CRC(crc, ch);
    ctx.EncodeChar(ch);
    // File name
    size_t j;
    for (j=0; j < fileNameLen; ++j) {
        ch = mFileName[j] & 0xff;
        crc = UPDATE_CRC(crc, ch);
        ctx.EncodeChar(ch);
    }
    // Version
    ch = 0;
    crc = UPDATE_CRC(crc, ch);
    ctx.EncodeChar(ch);
    // File type
    for (j=0; j < (size_t) 4; ++j) {
        ch = mFileType[j] & 0xff;
        crc = UPDATE_CRC(crc, ch);
        ctx.EncodeChar(ch);
    }
    // File creator
    for (j=0; j < (size_t) 4; ++j) {
        ch = mFileCreator[j] & 0xff;
        crc = UPDATE_CRC(crc, ch);
        ctx.EncodeChar(ch);
    }
    // Flags
    ch = mFlag1 & 0xff;
    crc = UPDATE_CRC(crc, ch);
    ctx.EncodeChar(ch);
    ch = mFlag2 & 0xff;
    crc = UPDATE_CRC(crc, ch);
    ctx.EncodeChar(ch);
    // Data fork length
    DwUint32 len = (DwUint32) mDataFork.length();
    ch = (len >> 24) & 0xff;
    crc = UPDATE_CRC(crc, ch);
    ctx.EncodeChar(ch);
    ch = (len >> 16) & 0xff;
    crc = UPDATE_CRC(crc, ch);
    ctx.EncodeChar(ch);
    ch = (len >>  8) & 0xff;
    crc = UPDATE_CRC(crc, ch);
    ctx.EncodeChar(ch);
    ch = len & 0xff;
    crc = UPDATE_CRC(crc, ch);
    ctx.EncodeChar(ch);
    // Resource fork length
    len = mResourceFork.length();
    ch = (len >> 24) & 0xff;
    crc = UPDATE_CRC(crc, ch);
    ctx.EncodeChar(ch);
    ch = (len >> 16) & 0xff;
    crc = UPDATE_CRC(crc, ch);
    ctx.EncodeChar(ch);
    ch = (len >>  8) & 0xff;
    crc = UPDATE_CRC(crc, ch);
    ctx.EncodeChar(ch);
    ch = len & 0xff;
    crc = UPDATE_CRC(crc, ch);
    ctx.EncodeChar(ch);
    // Header CRC
    ch = (crc >> 8) & 0xff;
    ctx.EncodeChar(ch);
    ch = crc & 0xff;
    ctx.EncodeChar(ch);
    //===== End of header =====

    // Data fork
    crc = 0;
    size_t dataForkLen = mDataFork.length();
    for (j=0; j < dataForkLen; ++j) {
        ch = mDataFork[j] & 0xff;
        crc = UPDATE_CRC(crc, ch);
        ctx.EncodeChar(ch);
    }
    // Data fork CRC
    ch = (crc >> 8) & 0xff;
    ctx.EncodeChar(ch);
    ch = crc & 0xff;
    ctx.EncodeChar(ch);

    // Resource fork
    crc = 0;
    size_t rsrcForkLen = mResourceFork.length();
    for (j=0; j < rsrcForkLen; ++j) {
        ch = mResourceFork[j] & 0xff;
        crc = UPDATE_CRC(crc, ch);
        ctx.EncodeChar(ch);
    }
    // Resource fork CRC
    ch = (crc >> 8) & 0xff;
    ctx.EncodeChar(ch);
    ch = crc & 0xff;
    ctx.EncodeChar(ch);

    ctx.Finalize();

    ctx.mBuffer.append(1, ':');
    ctx.mBuffer.append(DW_EOL);

    mBinhexChars = ctx.mBuffer;
}


int DwBinhex::Decode()
{
    // Initialize
    memset(mFileName, 0, sizeof(mFileName));
    memset(mFileType, 0, sizeof(mFileType));
    memset(mFileCreator, 0, sizeof(mFileCreator));
    mFlag1 = 0;
    mFlag2 = 0;
    mDataFork = mResourceFork = "";

    DwBinhexDecodeCtx ctx;
    ctx.mBinhexChars = mBinhexChars;
	// Find the preamble
    ctx.mPos = ctx.mBinhexChars.find("(This file must be converted "
        "with BinHex", 0);
    if (ctx.mPos == DwString::npos) {
        return -1; // error!
    }
    ctx.mPos += 40;
    // Advance to just past the colon
    ctx.mPos = ctx.mBinhexChars.find((char) ':', ctx.mPos);
    if (ctx.mPos == DwString::npos) {
        return -1; // error!
    }
    ++ctx.mPos;
    DwUint16 crc = 0;
    // File name length
    int ch = ctx.DecodeChar();
    if (ch < 1 || 63 < ch) {
        return -1; // error!
    }
    crc = UPDATE_CRC(crc, ch);
    size_t fileNameLen = (size_t) ch;
    // File name
    size_t j;
    for (j=0; j < fileNameLen; ++j) {
        ch = ctx.DecodeChar();
        if (ch == -1) {
            return -1; // error!
        }
        crc = UPDATE_CRC(crc, ch);
        mFileName[j] = (char) ch;
    }
    // Version
    ch = ctx.DecodeChar();
    if (ch != 0) {
        return -1; // error!
    }
    crc = UPDATE_CRC(crc, ch);
    // File type
    for (j=0; j < (size_t) 4; ++j) {
        ch = ctx.DecodeChar();
        if (ch == -1) {
            return -1; // error!
        }
        crc = UPDATE_CRC(crc, ch);
        mFileType[j] = (char) ch;
    }
    // File creator
    for (j=0; j < (size_t) 4; ++j) {
        ch = ctx.DecodeChar();
        if (ch == -1) {
            return -1; // error!
        }
        crc = UPDATE_CRC(crc, ch);
        mFileCreator[j] = (char) ch;
    }
    // Flags
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc = UPDATE_CRC(crc, ch);
    mFlag1 = (DwUint8) ch;
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc = UPDATE_CRC(crc, ch);
    mFlag2 = (DwUint8) ch;
    // Data fork length
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc = UPDATE_CRC(crc, ch);
    DwUint32 dataForkLen = ch & 0xff;
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc = UPDATE_CRC(crc, ch);
    dataForkLen <<= 8;
    dataForkLen |= ch & 0xff;
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc = UPDATE_CRC(crc, ch);
    dataForkLen <<= 8;
    dataForkLen |= ch & 0xff;
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc = UPDATE_CRC(crc, ch);
    dataForkLen <<= 8;
    dataForkLen |= ch & 0xff;
    // Resource fork length
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc = UPDATE_CRC(crc, ch);
    DwUint32 rsrcForkLen = ch & 0xff;
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc = UPDATE_CRC(crc, ch);
    rsrcForkLen <<= 8;
    rsrcForkLen |= ch & 0xff;
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc = UPDATE_CRC(crc, ch);
    rsrcForkLen <<= 8;
    rsrcForkLen |= ch & 0xff;
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc = UPDATE_CRC(crc, ch);
    rsrcForkLen <<= 8;
    rsrcForkLen |= ch & 0xff;
    // Header CRC
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    DwUint16 crc1 = (DwUint16) (ch & 0xff);
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc1 <<= 8;
    crc1 |= (DwUint16) (ch & 0xff);
    if (crc1 != crc) {
        return -1; // error!
    }

    // Data fork
    crc = 0;
    for (j=0; j < dataForkLen; ++j) {
        ch = ctx.DecodeChar();
        if (ch == -1) {
            return -1; // error!
        }
        crc = UPDATE_CRC(crc, ch);
        mDataFork.append((size_t) 1, (char) ch);
    }
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc1 = (DwUint16) (ch & 0xff);
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc1 <<= 8;
    crc1 |= (DwUint16) (ch & 0xff);
    if (crc1 != crc) {
        mDataFork = "";
        return -1; // error!
    }

    // Resource fork
    crc = 0;
    for (j=0; j < rsrcForkLen; ++j) {
        ch = ctx.DecodeChar();
        if (ch == -1) {
            return -1; // error!
        }
        crc = UPDATE_CRC(crc, ch);
        mResourceFork.append((size_t) 1, (char) ch);
    }
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc1 = (DwUint16) (ch & 0xff);
    ch = ctx.DecodeChar();
    if (ch == -1) {
        return -1; // error!
    }
    crc1 <<= 8;
    crc1 |= (DwUint16) (ch & 0xff);
    if (crc1 != crc) {
        mResourceFork = "";
        return -1; // error!
    }
    return 0;
}

#endif