Subversion Repositories checksum-tools

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
// CRC32 calculates a cyclic redundancy code (CRC), known as CRC-32, using
2
// a byte-wise algorithm.
3
//
4
// (C) Copyright 1989, 1995-1996, 1999 Earl F. Glynn, Overland Park, KS.
5
// All Rights Reserved.
6
//
7
// This UNIT was derived from the CRCT FORTRAN 77 program given in
8
// "Byte-wise CRC Calculations" by Aram Perez in IEEE Micro, June 1983,
9
// pp. 40-50.  The constants here are for the CRC-32 generator polynomial,
10
// as defined in the Microsoft Systems Journal, March 1995, pp. 107-108
11
//
12
// This CRC algorithm emphasizes speed at the expense of the 256-element
13
// lookup table.
14
//
15
// Updated for Delphi 4 dynamic arrays and stream I/O.  July 1999.
16
 
17
UNIT CRC32;
18
 
19
INTERFACE
20
 
21
  USES
22
    Windows;   // DWORD for D3/D4 compatibility
23
 
24
  TYPE
25
{$IFDEF VER130}            // This is a bit awkward
26
    // 8-byte integer
27
    TInteger8 = Int64;     // Delphi 5
28
{$ELSE}
29
  {$IFDEF VER120}
30
    TInteger8 = Int64;     // Delphi 4
31
  {$ELSE}
32
    TInteger8 = COMP;      // Delphi  2 or 3
33
  {$ENDIF}
34
{$ENDIF}
35
 
36
  PROCEDURE CalcCRC32 (p:  pointer; ByteCount:  DWORD; VAR CRCvalue:  DWORD);
37
 
38
  PROCEDURE CalcFileCRC32 (FromName:  STRING; VAR CRCvalue:  DWORD;
39
              VAR TotalBytes:  TInteger8;
40
              VAR error:  WORD);
41
 
42
IMPLEMENTATION
43
 
44
  USES
45
{$IFDEF StreamIO}
46
    SysUtils,  // SysErrorMessage
47
{$ENDIF}
48
    Dialogs,   // ShowMessage
49
    Classes,   // TMemoryStream
50
    LongFilenameOperations; // added by ViaThinkSoft
51
 
52
  CONST
53
    table:  ARRAY[0..255] OF DWORD =
54
   ($00000000, $77073096, $EE0E612C, $990951BA,
55
    $076DC419, $706AF48F, $E963A535, $9E6495A3,
56
    $0EDB8832, $79DCB8A4, $E0D5E91E, $97D2D988,
57
    $09B64C2B, $7EB17CBD, $E7B82D07, $90BF1D91,
58
    $1DB71064, $6AB020F2, $F3B97148, $84BE41DE,
59
    $1ADAD47D, $6DDDE4EB, $F4D4B551, $83D385C7,
60
    $136C9856, $646BA8C0, $FD62F97A, $8A65C9EC,
61
    $14015C4F, $63066CD9, $FA0F3D63, $8D080DF5,
62
    $3B6E20C8, $4C69105E, $D56041E4, $A2677172,
63
    $3C03E4D1, $4B04D447, $D20D85FD, $A50AB56B,
64
    $35B5A8FA, $42B2986C, $DBBBC9D6, $ACBCF940,
65
    $32D86CE3, $45DF5C75, $DCD60DCF, $ABD13D59,
66
    $26D930AC, $51DE003A, $C8D75180, $BFD06116,
67
    $21B4F4B5, $56B3C423, $CFBA9599, $B8BDA50F,
68
    $2802B89E, $5F058808, $C60CD9B2, $B10BE924,
69
    $2F6F7C87, $58684C11, $C1611DAB, $B6662D3D,
70
 
71
    $76DC4190, $01DB7106, $98D220BC, $EFD5102A,
72
    $71B18589, $06B6B51F, $9FBFE4A5, $E8B8D433,
73
    $7807C9A2, $0F00F934, $9609A88E, $E10E9818,
74
    $7F6A0DBB, $086D3D2D, $91646C97, $E6635C01,
75
    $6B6B51F4, $1C6C6162, $856530D8, $F262004E,
76
    $6C0695ED, $1B01A57B, $8208F4C1, $F50FC457,
77
    $65B0D9C6, $12B7E950, $8BBEB8EA, $FCB9887C,
78
    $62DD1DDF, $15DA2D49, $8CD37CF3, $FBD44C65,
79
    $4DB26158, $3AB551CE, $A3BC0074, $D4BB30E2,
80
    $4ADFA541, $3DD895D7, $A4D1C46D, $D3D6F4FB,
81
    $4369E96A, $346ED9FC, $AD678846, $DA60B8D0,
82
    $44042D73, $33031DE5, $AA0A4C5F, $DD0D7CC9,
83
    $5005713C, $270241AA, $BE0B1010, $C90C2086,
84
    $5768B525, $206F85B3, $B966D409, $CE61E49F,
85
    $5EDEF90E, $29D9C998, $B0D09822, $C7D7A8B4,
86
    $59B33D17, $2EB40D81, $B7BD5C3B, $C0BA6CAD,
87
 
88
    $EDB88320, $9ABFB3B6, $03B6E20C, $74B1D29A,
89
    $EAD54739, $9DD277AF, $04DB2615, $73DC1683,
90
    $E3630B12, $94643B84, $0D6D6A3E, $7A6A5AA8,
91
    $E40ECF0B, $9309FF9D, $0A00AE27, $7D079EB1,
92
    $F00F9344, $8708A3D2, $1E01F268, $6906C2FE,
93
    $F762575D, $806567CB, $196C3671, $6E6B06E7,
94
    $FED41B76, $89D32BE0, $10DA7A5A, $67DD4ACC,
95
    $F9B9DF6F, $8EBEEFF9, $17B7BE43, $60B08ED5,
96
    $D6D6A3E8, $A1D1937E, $38D8C2C4, $4FDFF252,
97
    $D1BB67F1, $A6BC5767, $3FB506DD, $48B2364B,
98
    $D80D2BDA, $AF0A1B4C, $36034AF6, $41047A60,
99
    $DF60EFC3, $A867DF55, $316E8EEF, $4669BE79,
100
    $CB61B38C, $BC66831A, $256FD2A0, $5268E236,
101
    $CC0C7795, $BB0B4703, $220216B9, $5505262F,
102
    $C5BA3BBE, $B2BD0B28, $2BB45A92, $5CB36A04,
103
    $C2D7FFA7, $B5D0CF31, $2CD99E8B, $5BDEAE1D,
104
 
105
    $9B64C2B0, $EC63F226, $756AA39C, $026D930A,
106
    $9C0906A9, $EB0E363F, $72076785, $05005713,
107
    $95BF4A82, $E2B87A14, $7BB12BAE, $0CB61B38,
108
    $92D28E9B, $E5D5BE0D, $7CDCEFB7, $0BDBDF21,
109
    $86D3D2D4, $F1D4E242, $68DDB3F8, $1FDA836E,
110
    $81BE16CD, $F6B9265B, $6FB077E1, $18B74777,
111
    $88085AE6, $FF0F6A70, $66063BCA, $11010B5C,
112
    $8F659EFF, $F862AE69, $616BFFD3, $166CCF45,
113
    $A00AE278, $D70DD2EE, $4E048354, $3903B3C2,
114
    $A7672661, $D06016F7, $4969474D, $3E6E77DB,
115
    $AED16A4A, $D9D65ADC, $40DF0B66, $37D83BF0,
116
    $A9BCAE53, $DEBB9EC5, $47B2CF7F, $30B5FFE9,
117
    $BDBDF21C, $CABAC28A, $53B39330, $24B4A3A6,
118
    $BAD03605, $CDD70693, $54DE5729, $23D967BF,
119
    $B3667A2E, $C4614AB8, $5D681B02, $2A6F2B94,
120
    $B40BBE37, $C30C8EA1, $5A05DF1B, $2D02EF8D);
121
 
122
  // Use CalcCRC32 as a procedure so CRCValue can be passed in but
123
  // also returned.  This allows multiple calls to CalcCRC32 for
124
  // the "same" CRC-32 calculation.
125
  PROCEDURE CalcCRC32 (p:  pointer; ByteCount:  DWORD; VAR CRCValue:  DWORD);
126
    // The following is a little cryptic (but executes very quickly).
127
    // The algorithm is as follows:
128
    //  1.  exclusive-or the input byte with the low-order byte of
129
    //      the CRC register to get an INDEX
130
    //  2.  shift the CRC register eight bits to the right
131
    //  3.  exclusive-or the CRC register with the contents of
132
    //      Table[INDEX]
133
    //  4.  repeat steps 1 through 3 for all bytes
134
 
135
   VAR
136
    i:  DWORD;
137
    q:  ^BYTE;
138
  BEGIN
139
    q := p;
140
    FOR   i := 0 TO ByteCount-1 DO BEGIN
141
      CRCvalue := (CRCvalue SHR 8)  XOR
142
                  Table[ q^ XOR (CRCvalue AND $000000FF) ];
143
      INC(q)
144
    END
145
  END {CalcCRC32};
146
 
147
 
148
{$IFDEF StreamIO}    // Contemporary method using TMemoryStream
149
 
150
  // The CRC-32 value calculated here matches the one from the PKZIP program.
151
  // Use MemoryStream to read file in binary mode.
152
  PROCEDURE CalcFileCRC32 (FromName:  STRING; VAR CRCvalue:  DWORD;
153
            VAR TotalBytes:  TInteger8;
154
            VAR error:  WORD);
155
    VAR
156
      Stream:  TMemoryStream;
157
  BEGIN
158
    error := 0;
159
    CRCValue := $FFFFFFFF;
160
    Stream := TMemoryStream.Create;
161
    TRY
162
      TRY
163
        Stream.LoadFromFile(FromName);
164
        IF   Stream.Size > 0
165
        THEN CalcCRC32 (Stream.Memory, Stream.Size, CRCvalue)
166
      EXCEPT
167
        ON E: EReadError DO
168
         error := 1
169
      END;
170
 
171
      CRCvalue := NOT CRCvalue
172
    FINALLY
173
      Stream.Free
174
    END;
175
  END {CalcFileCRC32};
176
 
177
{$ELSE}           // "older" BlockRead method
178
 
179
  // The CRC-32 value calculated here matches the one from the PKZIP program.
180
  // Use BlockRead to read file in binary mode.
181
  PROCEDURE CalcFileCRC32 (FromName:  STRING; VAR CRCvalue:  DWORD;
182
            VAR TotalBytes:  TInteger8;
183
            VAR error:  WORD);
184
    CONST
185
      BufferSize = 32768;
186
 
187
    TYPE
188
      BufferIndex = 0..BufferSize-1;
189
      TBuffer     = ARRAY[BufferIndex] OF BYTE;
190
      pBuffer     = ^TBuffer;
191
 
192
    VAR
193
      BytesRead:  INTEGER;
194
      FromFile :  FILE;
195
      FromFile2:  THandle;
196
      IOBuffer :  pBuffer;
197
  BEGIN
198
    New(IOBuffer);
199
    TRY
200
      FileMode := 0;  {Turbo default is 2 for R/W; 0 is for R/O}
201
      CRCValue := $FFFFFFFF;
202
      if Length(FromName) >= MAX_PATH then
203
      begin
17 daniel-mar 204
        try
205
          MyASSIGNFile (FromFile2,FromName);
206
          MyRESET (FromFile2);
207
          error := GetLastError;
208
        except
209
          error := 1;
210
        end;
2 daniel-mar 211
      end
212
      else
213
      begin
214
        ASSIGN (FromFile,FromName);
215
        {$I-} RESET (FromFile,1); {$I+}
216
        error := IOResult;
217
      end;
218
      IF   error = 0
219
      THEN BEGIN
220
        TotalBytes := 0;
221
 
222
        REPEAT
223
          if Length(FromName) >= MAX_PATH then // [sic!]  "greater equal" is correct! The Delphi functions fail if the filename is 260 or greater, but Microsoft says MAX_PATH is the maximum (legal) length!
224
          begin
225
            MyBlockRead (FromFile2, IOBuffer^, BufferSize, BytesRead);
226
          end
227
          else
228
          begin
229
            {$I-}
230
            BlockRead (FromFile, IOBuffer^, BufferSize, BytesRead);
231
            {$I+}
232
          end;
233
          error := IOResult;
234
          IF   (error = 0) AND (BytesRead > 0)
235
          THEN BEGIN
236
            CalcCRC32 (IOBuffer, BytesRead, CRCvalue);
237
            TotalBytes := TotalBytes + BytesRead;  // can't use INC with COMP
238
          END
239
        UNTIL (BytesRead = 0) OR (error > 0);
240
 
241
        if Length(FromName) >= MAX_PATH then
242
        begin
243
          MyCLOSEFile (FromFile2)
244
        end
245
        else
246
        begin
247
          CLOSE (FromFile)
248
        end;
249
      END;
250
      CRCvalue := NOT CRCvalue
251
    FINALLY
252
      Dispose(IOBuffer)
253
    END
254
  END {CalcFileCRC32};
255
 
256
{$ENDIF}
257
 
258
END {CRC32}.
259