File: GZipUtils.cs

package info (click to toggle)
mono 6.8.0.105%2Bdfsg-3.3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,284,512 kB
  • sloc: cs: 11,172,132; xml: 2,850,069; ansic: 671,653; cpp: 122,091; perl: 59,366; javascript: 30,841; asm: 22,168; makefile: 20,093; sh: 15,020; python: 4,827; pascal: 925; sql: 859; sed: 16; php: 1
file content (89 lines) | stat: -rw-r--r-- 2,856 bytes parent folder | download | duplicates (7)
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
//   Copyright (c) Microsoft Corporation.  All rights reserved.

namespace System.IO.Compression {
    using System.Diagnostics;

    internal static class GZipConstants {
        internal const int CompressionLevel_3 = 3;
        internal const int CompressionLevel_10 = 10;

        internal const long FileLengthModulo = 4294967296;

        internal const byte ID1 = 0x1F;
        internal const byte ID2 = 0x8B;
        internal const byte Deflate = 0x8;

        internal const int Xfl_HeaderPos = 8;
        internal const byte Xfl_FastestAlgorithm = 4;
        internal const byte Xfl_MaxCompressionSlowestAlgorithm = 2;
    }

    internal class GZipFormatter : IFileFormatWriter {

        private byte[] headerBytes = new byte[] {
                GZipConstants.ID1,      // ID1
                GZipConstants.ID2,      // ID2
                GZipConstants.Deflate,  // CM = deflate
                0,                      // FLG, no text, no crc, no extra, no name, no comment

                // MTIME (Modification Time) - no time available
                0,    
                0, 
                0, 
                0, 

                // XFL
                // 2 = compressor used max compression, slowest algorithm
                // 4 = compressor used fastest algorithm
                GZipConstants.Xfl_FastestAlgorithm,

                // OS: 0 = FAT filesystem (MS-DOS, OS/2, NT/Win32)
                0     
            };

        private uint _crc32;
        private long _inputStreamSizeModulo;

        internal GZipFormatter() : this(GZipConstants.CompressionLevel_3) { }

        internal GZipFormatter(int compressionLevel) {
            if (compressionLevel == GZipConstants.CompressionLevel_10) {
                headerBytes[GZipConstants.Xfl_HeaderPos] = GZipConstants.Xfl_MaxCompressionSlowestAlgorithm;
            }
        }

        public byte[] GetHeader() {
            return headerBytes;
        }

        public void UpdateWithBytesRead(byte[] buffer, int offset, int bytesToCopy) {
            _crc32 = Crc32Helper.UpdateCrc32(_crc32, buffer, offset, bytesToCopy);

            long n = _inputStreamSizeModulo + (uint) bytesToCopy;
            if (n >= GZipConstants.FileLengthModulo) {
                n %= GZipConstants.FileLengthModulo;
            }
            _inputStreamSizeModulo = n;
        }

        public byte[] GetFooter() {
            byte[] b = new byte[8];

            WriteUInt32(b, _crc32, 0);
            WriteUInt32(b, (uint)_inputStreamSizeModulo, 4);

            return b;

        }

        internal void WriteUInt32(byte[] b, uint value, int startIndex) {
            b[startIndex] = (byte)value;
            b[startIndex + 1] = (byte)(value >> 8);
            b[startIndex + 2] = (byte)(value >> 16);
            b[startIndex + 3] = (byte)(value >> 24);
        }
    }


}