1 /* 2 * Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * This code is free software; you can redistribute it and/or modify it 6 * under the terms of the GNU General Public License version 2 only, as 7 * published by the Free Software Foundation. Oracle designates this 8 * particular file as subject to the "Classpath" exception as provided 9 * by Oracle in the LICENSE file that accompanied this code. 10 * 11 * This code is distributed in the hope that it will be useful, but WITHOUT 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 14 * version 2 for more details (a copy is included in the LICENSE file that 15 * accompanied this code). 16 * 17 * You should have received a copy of the GNU General Public License version 18 * 2 along with this work; if not, write to the Free Software Foundation, 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 * 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 * or visit www.oracle.com if you need additional information or have any 23 * questions. 24 */ 25 26 package java.util.zip; 27 28 import java.lang.ref.Reference; 29 import java.nio.ByteBuffer; 30 import sun.nio.ch.DirectBuffer; 31 32 import jdk.internal.vm.annotation.IntrinsicCandidate; 33 34 /** 35 * A class that can be used to compute the Adler-32 checksum of a data 36 * stream. An Adler-32 checksum is almost as reliable as a CRC-32 but 37 * can be computed much faster. 38 * 39 * <p> Passing a {@code null} argument to a method in this class will cause 40 * a {@link NullPointerException} to be thrown.</p> 41 * 42 * @author David Connelly 43 * @since 1.1 44 */ 45 public class Adler32 implements Checksum { 46 47 private int adler = 1; 48 49 /** 50 * Creates a new Adler32 object. 51 */ Adler32()52 public Adler32() { 53 } 54 55 /** 56 * Updates the checksum with the specified byte (the low eight 57 * bits of the argument b). 58 */ 59 @Override update(int b)60 public void update(int b) { 61 adler = update(adler, b); 62 } 63 64 /** 65 * Updates the checksum with the specified array of bytes. 66 * 67 * @throws ArrayIndexOutOfBoundsException 68 * if {@code off} is negative, or {@code len} is negative, or 69 * {@code off+len} is negative or greater than the length of 70 * the array {@code b}. 71 */ 72 @Override update(byte[] b, int off, int len)73 public void update(byte[] b, int off, int len) { 74 if (b == null) { 75 throw new NullPointerException(); 76 } 77 if (off < 0 || len < 0 || off > b.length - len) { 78 throw new ArrayIndexOutOfBoundsException(); 79 } 80 adler = updateBytes(adler, b, off, len); 81 } 82 83 // Android-changed: method kept during jdk17u update for compatibility. 84 /** 85 * Updates the checksum with the specified array of bytes. 86 * 87 * @param b the byte array to update the checksum with 88 */ 89 @Override update(byte[] b)90 public void update(byte[] b) { 91 adler = updateBytes(adler, b, 0, b.length); 92 } 93 94 /** 95 * Updates the checksum with the bytes from the specified buffer. 96 * 97 * The checksum is updated with the remaining bytes in the buffer, starting 98 * at the buffer's position. Upon return, the buffer's position will be 99 * updated to its limit; its limit will not have been changed. 100 * 101 * @since 1.8 102 */ 103 @Override update(ByteBuffer buffer)104 public void update(ByteBuffer buffer) { 105 int pos = buffer.position(); 106 int limit = buffer.limit(); 107 assert (pos <= limit); 108 int rem = limit - pos; 109 if (rem <= 0) 110 return; 111 if (buffer.isDirect()) { 112 try { 113 adler = updateByteBuffer(adler, ((DirectBuffer)buffer).address(), pos, rem); 114 } finally { 115 Reference.reachabilityFence(buffer); 116 } 117 } else if (buffer.hasArray()) { 118 adler = updateBytes(adler, buffer.array(), pos + buffer.arrayOffset(), rem); 119 } else { 120 byte[] b = new byte[Math.min(buffer.remaining(), 4096)]; 121 while (buffer.hasRemaining()) { 122 int length = Math.min(buffer.remaining(), b.length); 123 buffer.get(b, 0, length); 124 update(b, 0, length); 125 } 126 } 127 buffer.position(limit); 128 } 129 130 /** 131 * Resets the checksum to initial value. 132 */ 133 @Override reset()134 public void reset() { 135 adler = 1; 136 } 137 138 /** 139 * Returns the checksum value. 140 */ 141 @Override getValue()142 public long getValue() { 143 return (long)adler & 0xffffffffL; 144 } 145 update(int adler, int b)146 private static native int update(int adler, int b); 147 148 @IntrinsicCandidate updateBytes(int adler, byte[] b, int off, int len)149 private static native int updateBytes(int adler, byte[] b, int off, 150 int len); 151 @IntrinsicCandidate updateByteBuffer(int adler, long addr, int off, int len)152 private static native int updateByteBuffer(int adler, long addr, 153 int off, int len); 154 } 155