blob: 3dc180269cb71daaaf1af21b65644c6cdb6cee2a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "JNIHelp.h"
#include "jni.h"
#include "zlib.h"
static jlong Adler32_updateImpl(JNIEnv* env, jobject, jbyteArray buf, int off, int len, jlong crc) {
jbyte* b = (jbyte*) env->GetPrimitiveArrayCritical(buf, NULL);
if (b == NULL) {
jniThrowNullPointerException(env, NULL);
return 0;
}
jlong result = (jlong) adler32((uLong) crc, (Bytef *) (b + off), (uInt) len);
env->ReleasePrimitiveArrayCritical(buf, b, JNI_ABORT);
return result;
}
static jlong Adler32_updateByteImpl(JNIEnv*, jobject, jint val, jlong crc) {
Bytef bytefVal = val;
return adler32((uLong) crc, (Bytef *) (&bytefVal), 1);
}
static JNINativeMethod gMethods[] = {
{ "updateImpl", "([BIIJ)J", (void*) Adler32_updateImpl },
{ "updateByteImpl", "(IJ)J", (void*) Adler32_updateByteImpl },
};
int register_java_util_zip_Adler32(JNIEnv* env) {
return jniRegisterNativeMethods(env, "java/util/zip/Adler32", gMethods, NELEM(gMethods));
}