Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.base/macosx/classes/sun/nio/ch/KQueue.java
41137 views
1
/*
2
* Copyright (c) 2012, 2018, 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.IOException;
29
import jdk.internal.misc.Unsafe;
30
31
/**
32
* Provides access to the BSD kqueue facility.
33
*/
34
35
class KQueue {
36
private KQueue() { }
37
38
private static final Unsafe unsafe = Unsafe.getUnsafe();
39
40
/**
41
* struct kevent {
42
* uintptr_t ident; // identifier for this event, usually the fd
43
* int16_t filter; // filter for event
44
* uint16_t flags; // general flags
45
* uint32_t fflags; // filter-specific flags
46
* intptr_t data; // filter-specific data
47
* void *udata; // opaque user data identifier
48
* };
49
*/
50
private static final int SIZEOF_KQUEUEEVENT = keventSize();
51
private static final int OFFSET_IDENT = identOffset();
52
private static final int OFFSET_FILTER = filterOffset();
53
private static final int OFFSET_FLAGS = flagsOffset();
54
55
// filters
56
static final int EVFILT_READ = -1;
57
static final int EVFILT_WRITE = -2;
58
59
// flags
60
static final int EV_ADD = 0x0001;
61
static final int EV_DELETE = 0x0002;
62
static final int EV_ONESHOT = 0x0010;
63
static final int EV_CLEAR = 0x0020;
64
65
/**
66
* Allocates a poll array to handle up to {@code count} events.
67
*/
68
static long allocatePollArray(int count) {
69
return unsafe.allocateMemory(count * SIZEOF_KQUEUEEVENT);
70
}
71
72
/**
73
* Free a poll array
74
*/
75
static void freePollArray(long address) {
76
unsafe.freeMemory(address);
77
}
78
79
/**
80
* Returns kevent[i].
81
*/
82
static long getEvent(long address, int i) {
83
return address + (SIZEOF_KQUEUEEVENT*i);
84
}
85
86
/**
87
* Returns the file descriptor from a kevent (assuming it is in the ident field)
88
*/
89
static int getDescriptor(long address) {
90
return unsafe.getInt(address + OFFSET_IDENT);
91
}
92
93
static short getFilter(long address) {
94
return unsafe.getShort(address + OFFSET_FILTER);
95
}
96
97
static short getFlags(long address) {
98
return unsafe.getShort(address + OFFSET_FLAGS);
99
}
100
101
// -- Native methods --
102
103
private static native int keventSize();
104
105
private static native int identOffset();
106
107
private static native int filterOffset();
108
109
private static native int flagsOffset();
110
111
static native int create() throws IOException;
112
113
static native int register(int kqfd, int fd, int filter, int flags);
114
115
static native int poll(int kqfd, long pollAddress, int nevents, long timeout)
116
throws IOException;
117
118
static {
119
IOUtil.load();
120
}
121
}
122
123