Adler32.java 3.27 KB
Newer Older
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
/* Adler.java - Computes Adler32 data checksum of a data stream
   Copyright (C) 1999, 2000 Free Software Foundation, Inc.

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
 
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA.

As a special exception, if you link this library with other files to
produce an executable, this library does not by itself cause the
resulting executable to be covered by the GNU General Public License.
This exception does not however invalidate any other reasons why the
executable file might be covered by the GNU General Public License. */
Tom Tromey committed
26 27 28 29 30 31 32 33 34 35

package java.util.zip;

/*
 * Written using on-line Java Platform 1.2 API Specification, as well
 * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).
 * The actual Adler32 algorithm is taken from RFC 1950.
 * Status:  Believed complete and correct.
 */

36 37 38 39 40 41 42 43 44 45 46 47 48
/**
 * Computes Adler32 data checksum of a data stream.
 * The actual Adler32 algorithm is described in RFC 1950
 * (ZLIB Compressed Data Format Specification version 3.3).
 * Can be used to get the CRC32 over a stream if used with checked input/output
 * streams.
 *
 * @see InflaterInputStream
 * @see InflaterOutputStream
 *
 * @author Per Bothner
 * @date April 6, 1999.
 */
Tom Tromey committed
49 50 51
public class Adler32 implements Checksum
{

52 53 54
  /** largest prime smaller than 65536 */
  private static int BASE = 65521;
 
55 56
  private int s1;
  private int s2;
Tom Tromey committed
57

58 59 60
  /**
   * Creates an Adler32 data checksum.
   */
Tom Tromey committed
61 62 63 64 65
  public Adler32 ()
  {
    reset();
  }

66 67 68
  /**
   * Resets the Adler32 data checksum as if no update was ever called.
   */
Tom Tromey committed
69 70
  public void reset () { s1 = 1;  s2 = 0; }

71 72 73 74 75
  /**
   * Adds one byte to the data checksum.
   *
   * @param bval the data value to add. The high byte of the int is ignored.
   */
Tom Tromey committed
76 77 78 79 80 81
  public void update (int bval)
  {
    s1 = (s1 + (bval & 0xFF)) % BASE;
    s2 = (s1 + s2) % BASE;
  }

82 83 84
  /**
   * Adds the complete byte array to the data checksum.
   */
Tom Tromey committed
85 86 87 88 89
  public void update (byte[] buffer)
  {
    update(buffer, 0, buffer.length);
  }

90 91 92 93 94 95 96
  /**
   * Adds the byte array to the data checksum.
   *
   * @param buf the buffer which contains the data
   * @param off the offset in the buffer where the data starts
   * @param len the length of the data
   */
Tom Tromey committed
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
  public void update (byte[] buf, int off, int len)
  {
    int s1 = this.s1;
    int s2 = this.s2;
    while (len > 0)
      {
	// We can defer the modulo operation.
	int n = 4000;
	if (n > len)
	  n = len;
	len -= n;
	while (--n >= 0)
	  {
	    s1 = s1 + (buf[off++] & 0xFF);
	    s2 = s2 + s1;
	  }
	s1 %= BASE;
	s2 %= BASE;
      }
    this.s1 = s1;
    this.s2 = s2;
  }

120 121 122
  /**
   * Returns the Adler32 data checksum computed so far.
   */
Tom Tromey committed
123 124 125 126 127
  public long getValue()
  {
    return ((long) s2 << 16) + s1;
  }
}