我正在试图弄清楚java如何将字节写入磁盘。
如果我查看Randomaccesfile实现,它有 声明了一个本机方法,并在调用write(byte [])时调用所述本机方法写入磁盘。
randomaccesfile的源代码:http://grepcode.com/file/repository.grepcode.com/java/root/jdk/openjdk/6-b27/java/io/RandomAccessFile.java#RandomAccessFile.writeBytes%28byte%5B%5D%2Cint%2Cint%29
private native void writeBytes(byte b[], int off, int len) throws IOException;
public void write(byte b[]) throws IOException {
writeBytes(b, 0, b.length);
}
我在OpenJDK中搜索了writeBytes并在io_util.c
内找到了它
这里的函数IO_Append(fd, buf+off, len);
和IO_Write(fd, buf+off, len);
被称为。
可以在io_util_md.h中的JDK中为Windows和Solaris找到这些函数
/*
* Route the routines
*/
#define IO_Sync fsync
#define IO_Read handleRead
#define IO_Write handleWrite
#define IO_Append handleWrite
#define IO_Available handleAvailable
#define IO_SetLength handleSetLength
为什么我不能为Linux找到相同的内容?io_append
和io_write
实际上做了什么?我无法找到它们的实现方式。
答案 0 :(得分:2)
似乎Solaris和Linux共享以下所有内容的本机代码库 http://hg.openjdk.java.net/jdk7/jdk7/jdk/
io_util_md.h定义(适用于Solaris和Linux)
#define IO_Append JVM_Write
#define IO_Write JVM_Write
现在JVM_Write
在热点代码库中定义,位于jvm.cpp:
JVM_LEAF(jint, JVM_Write(jint fd, char *buf, jint nbytes))
JVMWrapper2("JVM_Write (0x%x)", fd);
//%note jvm_r6
return (jint)os::write(fd, buf, nbytes);
JVM_END
调用OS依赖的写入函数。 Linux实现位于os_linux.inline.hpp
inline size_t os::write(int fd, const void *buf, unsigned int nBytes) {
size_t res;
RESTARTABLE((size_t) ::write(fd, buf, (size_t) nBytes), res);
return res;
}