hedgewars/adler32.pas
author koda
Sat, 31 Jul 2010 10:53:54 +0200
branchexperimental3D
changeset 3690 c247dee9e1c0
parent 3526 a1d2180fef42
child 3695 c11abf387a7d
permissions -rw-r--r--
applying smaxx patch where it should be
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3690
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
     1
unit Adler32;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
     2
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
     3
{ZLib - Adler32 checksum function}
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
     4
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
     5
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
     6
interface
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
     7
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
     8
(*************************************************************************
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
     9
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    10
 DESCRIPTION     :  ZLib - Adler32 checksum function
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    11
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    12
 REQUIREMENTS    :  TP5-7, D1-D7/D9-D10/D12, FPC, VP
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    13
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    14
 EXTERNAL DATA   :  ---
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    15
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    16
 MEMORY USAGE    :  ---
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    17
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    18
 DISPLAY MODE    :  ---
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    19
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    20
 REFERENCES      :  RFC 1950 (http://tools.ietf.org/html/rfc1950)
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    21
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    22
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    23
 Version  Date      Author      Modification
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    24
 -------  --------  -------     ------------------------------------------
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    25
 0.10     30.08.03  W.Ehrhardt  Initial version based on MD5 layout
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    26
 2.10     30.08.03  we          Common vers., XL versions for Win32
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    27
 2.20     27.09.03  we          FPC/go32v2
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    28
 2.30     05.10.03  we          STD.INC, TP5.0
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    29
 2.40     10.10.03  we          common version, english comments
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    30
 3.00     01.12.03  we          Common version 3.0
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    31
 3.01     22.05.05  we          Adler32UpdateXL (i,n: integer)
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    32
 3.02     17.12.05  we          Force $I- in Adler32File
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    33
 3.03     07.08.06  we          $ifdef BIT32: (const fname: shortstring...)
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    34
 3.04     10.02.07  we          Adler32File: no eof, XL and filemode via $ifdef
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    35
 3.05     04.07.07  we          BASM16: speed-up factor 15
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    36
 3.06     12.11.08  we          uses BTypes, Ptr2Inc and/or Str255
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    37
 3.07     25.04.09  we          updated RFC URL(s)
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    38
 3.08     19.07.09  we          D12 fix: assign with typecast string(fname)
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    39
**************************************************************************)
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    40
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    41
(*-------------------------------------------------------------------------
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    42
 (C) Copyright 2002-2009 Wolfgang Ehrhardt
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    43
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    44
 This software is provided 'as-is', without any express or implied warranty.
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    45
 In no event will the authors be held liable for any damages arising from
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    46
 the use of this software.
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    47
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    48
 Permission is granted to anyone to use this software for any purpose,
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    49
 including commercial applications, and to alter it and redistribute it
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    50
 freely, subject to the following restrictions:
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    51
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    52
 1. The origin of this software must not be misrepresented; you must not
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    53
    claim that you wrote the original software. If you use this software in
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    54
    a product, an acknowledgment in the product documentation would be
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    55
    appreciated but is not required.
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    56
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    57
 2. Altered source versions must be plainly marked as such, and must not be
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    58
    misrepresented as being the original software.
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    59
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    60
 3. This notice may not be removed or altered from any source distribution.
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    61
----------------------------------------------------------------------------*)
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    62
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    63
(*
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    64
As per the license above, noting that this implementation of adler32 was stripped of everything we didn't need.
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    65
That means no btypes, file loading, and the assembly version disabled.
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    66
*)
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    67
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    68
procedure Adler32Update(var adler: longint; Msg: pointer; Len: longint);
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    69
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    70
implementation
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    71
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    72
(*
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    73
$ifdef BASM16
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    74
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    75
procedure Adler32Update(var adler: longint; Msg: pointer; Len: longint);
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    76
  //-update Adler32 with Msg data
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    77
const
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    78
  BASE = 65521; // max. prime < 65536 
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    79
  NMAX =  5552; // max. n with 255n(n+1)/2 + (n+1)(BASE-1) < 2^32
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    80
type
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    81
  LH    = packed record
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    82
            L,H: word;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    83
          end;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    84
var
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    85
  s1,s2: longint;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    86
  n: integer;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    87
begin
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    88
  s1 := LH(adler).L;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    89
  s2 := LH(adler).H;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    90
  while Len > 0 do begin
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    91
    if Len<NMAX then n := Len else n := NMAX;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    92
    //BASM increases speed from about 52 cyc/byte to about 3.7 cyc/byte
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    93
    asm
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    94
                    mov  cx,[n]
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    95
            db $66; mov  ax,word ptr [s1]
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    96
            db $66; mov  di,word ptr [s2]
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    97
                    les  si,[msg]
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    98
      @@1:  db $66, $26, $0f, $b6, $1c      // movzx ebx,es:[si]
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
    99
                    inc  si
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   100
            db $66; add  ax,bx              // inc(s1, pByte(Msg)^)
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   101
            db $66; add  di,ax              // inc(s2, s1
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   102
                    dec  cx
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   103
                    jnz  @@1
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   104
            db $66; sub  cx,cx
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   105
                    mov  cx,BASE
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   106
            db $66; sub  dx,dx
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   107
            db $66; div  cx
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   108
            db $66; mov  word ptr [s1],dx   // s1 := s1 mod BASE
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   109
            db $66; sub  dx,dx
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   110
            db $66; mov  ax,di
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   111
            db $66; div  cx
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   112
            db $66; mov  word ptr [s2],dx   // s2 := s2 mod BASE
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   113
                    mov  word ptr [msg],si  // save offset for next chunk
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   114
    end;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   115
    dec(len, n);
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   116
  end;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   117
  LH(adler).L := word(s1);
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   118
  LH(adler).H := word(s2);
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   119
end;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   120
*)
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   121
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   122
procedure Adler32Update(var adler: longint; Msg: pointer; Len: longint);
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   123
  {-update Adler32 with Msg data}
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   124
const
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   125
  BASE = 65521; {max. prime < 65536 }
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   126
  NMAX =  3854; {max. n with 255n(n+1)/2 + (n+1)(BASE-1) < 2^31}
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   127
type
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   128
  LH    = packed record
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   129
            L,H: word;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   130
          end;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   131
var
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   132
  s1,s2: longint;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   133
  i,n: integer;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   134
begin
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   135
  s1 := LH(adler).L;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   136
  s2 := LH(adler).H;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   137
  while Len > 0 do begin
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   138
    if Len<NMAX then n := Len else n := NMAX;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   139
    for i:=1 to n do begin
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   140
      inc(s1, pByte(Msg)^);
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   141
      inc(Msg);
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   142
      inc(s2, s1);
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   143
    end;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   144
    s1 := s1 mod BASE;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   145
    s2 := s2 mod BASE;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   146
    dec(len, n);
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   147
  end;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   148
  LH(adler).L := word(s1);
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   149
  LH(adler).H := word(s2);
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   150
end;
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   151
c247dee9e1c0 applying smaxx patch where it should be
koda
parents: 3526
diff changeset
   152
end.