Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/jdk17u
Path: blob/master/src/java.base/windows/classes/sun/nio/ch/FileDispatcherImpl.java
67773 views
1
/*
2
* Copyright (c) 2000, 2021, 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 sun.nio.ch;
27
28
import java.io.FileDescriptor;
29
import java.io.IOException;
30
import jdk.internal.access.SharedSecrets;
31
import jdk.internal.access.JavaIOFileDescriptorAccess;
32
import sun.security.action.GetPropertyAction;
33
import java.io.File;
34
import java.nio.CharBuffer;
35
36
class FileDispatcherImpl extends FileDispatcher {
37
38
private static final JavaIOFileDescriptorAccess fdAccess =
39
SharedSecrets.getJavaIOFileDescriptorAccess();
40
41
// set to true if fast file transmission (TransmitFile) is enabled
42
private static final boolean fastFileTransfer;
43
44
FileDispatcherImpl() { }
45
46
@Override
47
boolean needsPositionLock() {
48
return true;
49
}
50
51
int read(FileDescriptor fd, long address, int len)
52
throws IOException
53
{
54
return read0(fd, address, len);
55
}
56
57
int pread(FileDescriptor fd, long address, int len, long position)
58
throws IOException
59
{
60
return pread0(fd, address, len, position);
61
}
62
63
long readv(FileDescriptor fd, long address, int len) throws IOException {
64
return readv0(fd, address, len);
65
}
66
67
int write(FileDescriptor fd, long address, int len) throws IOException {
68
return write0(fd, address, len, fdAccess.getAppend(fd));
69
}
70
71
int pwrite(FileDescriptor fd, long address, int len, long position)
72
throws IOException
73
{
74
return pwrite0(fd, address, len, position);
75
}
76
77
long writev(FileDescriptor fd, long address, int len) throws IOException {
78
return writev0(fd, address, len, fdAccess.getAppend(fd));
79
}
80
81
long seek(FileDescriptor fd, long offset) throws IOException {
82
return seek0(fd, offset);
83
}
84
85
int force(FileDescriptor fd, boolean metaData) throws IOException {
86
return force0(fd, metaData);
87
}
88
89
int truncate(FileDescriptor fd, long size) throws IOException {
90
return truncate0(fd, size);
91
}
92
93
long size(FileDescriptor fd) throws IOException {
94
return size0(fd);
95
}
96
97
int lock(FileDescriptor fd, boolean blocking, long pos, long size,
98
boolean shared) throws IOException
99
{
100
return lock0(fd, blocking, pos, size, shared);
101
}
102
103
void release(FileDescriptor fd, long pos, long size) throws IOException {
104
release0(fd, pos, size);
105
}
106
107
void close(FileDescriptor fd) throws IOException {
108
fdAccess.close(fd);
109
}
110
111
FileDescriptor duplicateForMapping(FileDescriptor fd) throws IOException {
112
// on Windows we need to keep a handle to the file
113
FileDescriptor result = new FileDescriptor();
114
long handle = duplicateHandle(fdAccess.getHandle(fd));
115
fdAccess.setHandle(result, handle);
116
fdAccess.registerCleanup(result);
117
return result;
118
}
119
120
boolean canTransferToDirectly(java.nio.channels.SelectableChannel sc) {
121
return fastFileTransfer && sc.isBlocking();
122
}
123
124
boolean transferToDirectlyNeedsPositionLock() {
125
return true;
126
}
127
128
boolean canTransferToFromOverlappedMap() {
129
return true;
130
}
131
132
int setDirectIO(FileDescriptor fd, String path) {
133
int result = -1;
134
String filePath = path.substring(0, path.lastIndexOf(File.separator));
135
CharBuffer buffer = CharBuffer.allocate(filePath.length());
136
buffer.put(filePath);
137
try {
138
result = setDirect0(fd, buffer);
139
} catch (IOException e) {
140
throw new UnsupportedOperationException
141
("Error setting up DirectIO", e);
142
}
143
return result;
144
}
145
146
static boolean isFastFileTransferRequested() {
147
String fileTransferProp = GetPropertyAction
148
.privilegedGetProperty("jdk.nio.enableFastFileTransfer", "false");
149
return fileTransferProp.isEmpty() ? true : Boolean.parseBoolean(fileTransferProp);
150
}
151
152
static {
153
IOUtil.load();
154
fastFileTransfer = isFastFileTransferRequested();
155
}
156
157
//-- Native methods
158
159
static native int read0(FileDescriptor fd, long address, int len)
160
throws IOException;
161
162
static native int pread0(FileDescriptor fd, long address, int len,
163
long position) throws IOException;
164
165
static native long readv0(FileDescriptor fd, long address, int len)
166
throws IOException;
167
168
static native int write0(FileDescriptor fd, long address, int len, boolean append)
169
throws IOException;
170
171
static native int pwrite0(FileDescriptor fd, long address, int len,
172
long position) throws IOException;
173
174
static native long writev0(FileDescriptor fd, long address, int len, boolean append)
175
throws IOException;
176
177
static native long seek0(FileDescriptor fd, long offset) throws IOException;
178
179
static native int force0(FileDescriptor fd, boolean metaData)
180
throws IOException;
181
182
static native int truncate0(FileDescriptor fd, long size)
183
throws IOException;
184
185
static native long size0(FileDescriptor fd) throws IOException;
186
187
static native int lock0(FileDescriptor fd, boolean blocking, long pos,
188
long size, boolean shared) throws IOException;
189
190
static native void release0(FileDescriptor fd, long pos, long size)
191
throws IOException;
192
193
static native void close0(FileDescriptor fd) throws IOException;
194
195
static native long duplicateHandle(long fd) throws IOException;
196
197
static native int setDirect0(FileDescriptor fd, CharBuffer buffer) throws IOException;
198
}
199
200