8324048: (fc) Make FileKey fields final

Reviewed-by: djelinski, alanb, jpai
This commit is contained in:
Brian Burkhalter 2024-08-23 16:32:14 +00:00
parent a461369f16
commit 23dc3b0246
4 changed files with 43 additions and 56 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2005, 2023, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -33,15 +33,18 @@ import java.io.IOException;
*/
public class FileKey {
private long st_dev; // ID of device
private long st_ino; // Inode number
private final long st_dev; // ID of device
private final long st_ino; // Inode number
private FileKey() { }
private FileKey(long st_dev, long st_ino) {
this.st_dev = st_dev;
this.st_ino = st_ino;
}
public static FileKey create(FileDescriptor fd) throws IOException {
FileKey fk = new FileKey();
fk.init(fd);
return fk;
long finfo[] = new long[2];
init(fd, finfo);
return new FileKey(finfo[0], finfo[1]);
}
@Override
@ -59,10 +62,10 @@ public class FileKey {
&& (this.st_ino == other.st_ino);
}
private native void init(FileDescriptor fd) throws IOException;
private static native void initIDs();
private static native void init(FileDescriptor fd, long[] finfo)
throws IOException;
static {
initIDs();
IOUtil.load();
}
}

View file

@ -30,29 +30,21 @@
#include "nio_util.h"
#include "sun_nio_ch_FileKey.h"
static jfieldID key_st_dev; /* id for FileKey.st_dev */
static jfieldID key_st_ino; /* id for FileKey.st_ino */
JNIEXPORT void JNICALL
Java_sun_nio_ch_FileKey_initIDs(JNIEnv *env, jclass clazz)
{
CHECK_NULL(key_st_dev = (*env)->GetFieldID(env, clazz, "st_dev", "J"));
CHECK_NULL(key_st_ino = (*env)->GetFieldID(env, clazz, "st_ino", "J"));
}
JNIEXPORT void JNICALL
Java_sun_nio_ch_FileKey_init(JNIEnv *env, jobject this, jobject fdo)
Java_sun_nio_ch_FileKey_init(JNIEnv* env, jclass clazz, jobject fdo,
jlongArray finfo)
{
struct stat fbuf;
int res;
jlong deviceAndInode[2];
RESTARTABLE(fstat(fdval(env, fdo), &fbuf), res);
int fd = fdval(env, fdo);
RESTARTABLE(fstat(fd, &fbuf), res);
if (res < 0) {
JNU_ThrowIOExceptionWithLastError(env, "fstat failed");
} else {
(*env)->SetLongField(env, this, key_st_dev, (jlong)fbuf.st_dev);
(*env)->SetLongField(env, this, key_st_ino, (jlong)fbuf.st_ino);
deviceAndInode[0] = (jlong)fbuf.st_dev;
deviceAndInode[1] = (jlong)fbuf.st_ino;
(*env)->SetLongArrayRegion(env, finfo, 0, 2, deviceAndInode);
}
}