1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
|
/* Copyright (C) 2012 Brian P. Hinz
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*/
package com.tigervnc.network;
import java.io.IOException;
import java.net.SocketAddress;
import java.nio.*;
import java.nio.channels.*;
import java.nio.channels.spi.SelectorProvider;
import java.util.Set;
import java.util.Iterator;
import com.tigervnc.rdr.Exception;
public class SocketDescriptor implements FileDescriptor {
public SocketDescriptor() throws Exception {
DefaultSelectorProvider();
try {
channel = SocketChannel.open();
channel.configureBlocking(false);
writeSelector = Selector.open();
readSelector = Selector.open();
} catch (IOException e) {
throw new Exception(e.getMessage());
}
try {
channel.register(writeSelector, SelectionKey.OP_WRITE);
channel.register(readSelector, SelectionKey.OP_READ);
} catch (java.nio.channels.ClosedChannelException e) {
throw new Exception(e.getMessage());
}
}
public void shutdown() throws IOException {
try {
channel.socket().shutdownInput();
channel.socket().shutdownOutput();
} catch(IOException e) {
throw new IOException(e.getMessage());
}
}
public void close() throws IOException {
try {
channel.close();
} catch(IOException e) {
throw new IOException(e.getMessage());
}
}
private static SelectorProvider DefaultSelectorProvider() {
// kqueue() selector provider on OS X is not working, fall back to select() for now
String os = System.getProperty("os.name");
if (os.startsWith("Mac OS X"))
System.setProperty("java.nio.channels.spi.SelectorProvider","sun.nio.ch.PollSelectorProvider");
return SelectorProvider.provider();
}
synchronized public int read(byte[] buf, int bufPtr, int length) throws Exception {
int n;
ByteBuffer b = ByteBuffer.allocate(length);
try {
n = channel.read(b);
} catch (java.io.IOException e) {
throw new Exception(e.getMessage());
}
if (n <= 0)
return (n == 0) ? -1 : 0;
b.flip();
b.get(buf, bufPtr, n);
b.clear();
return n;
}
synchronized public int write(byte[] buf, int bufPtr, int length) throws Exception {
int n;
ByteBuffer b = ByteBuffer.allocate(length);
b.put(buf, bufPtr, length);
b.flip();
try {
n = channel.write(b);
} catch (java.io.IOException e) {
throw new Exception(e.getMessage());
}
b.clear();
return n;
}
synchronized public int select(int interestOps, Integer timeout) throws Exception {
int n;
Selector selector;
if ((interestOps & SelectionKey.OP_READ) != 0) {
selector = readSelector;
} else {
selector = writeSelector;
}
selector.selectedKeys().clear();
try {
if (timeout == null) {
n = selector.select();
} else {
int tv = timeout.intValue();
switch(tv) {
case 0:
n = selector.selectNow();
break;
default:
n = selector.select((long)tv);
break;
}
}
} catch (java.io.IOException e) {
throw new Exception(e.getMessage());
}
return n;
}
public int write(ByteBuffer buf) throws Exception {
int n = 0;
try {
n = channel.write(buf);
} catch (java.io.IOException e) {
throw new Exception(e.getMessage());
}
return n;
}
public long write(ByteBuffer[] buf, int offset, int length)
throws IOException
{
long n = 0;
try {
n = channel.write(buf, offset, length);
} catch (java.io.IOException e) {
throw new Exception(e.getMessage());
}
return n;
}
public int read(ByteBuffer buf) throws IOException {
int n = 0;
try {
n = channel.read(buf);
} catch (java.io.IOException e) {
throw new Exception(e.getMessage());
}
return n;
}
public long read(ByteBuffer[] buf, int offset, int length)
throws IOException
{
long n = 0;
try {
n = channel.read(buf, offset, length);
} catch (java.io.IOException e) {
throw new Exception(e.getMessage());
}
return n;
}
public java.net.Socket socket() {
return channel.socket();
}
public SocketAddress getRemoteAddress() throws IOException {
if (isConnected())
return channel.socket().getRemoteSocketAddress();
return null;
}
public SocketAddress getLocalAddress() throws IOException {
if (isConnected())
return channel.socket().getLocalSocketAddress();
return null;
}
public boolean isConnectionPending() {
return channel.isConnectionPending();
}
public boolean connect(SocketAddress remote) throws IOException {
return channel.connect(remote);
}
public boolean finishConnect() throws IOException {
return channel.finishConnect();
}
public boolean isConnected() {
return channel.isConnected();
}
protected void implConfigureBlocking(boolean block) throws IOException {
channel.configureBlocking(block);
}
protected synchronized void implCloseSelectableChannel() throws IOException {
channel.close();
notifyAll();
}
protected void setChannel(SocketChannel channel_) {
try {
if (channel != null)
channel.close();
if (readSelector != null)
readSelector.close();
if (writeSelector != null)
writeSelector.close();
channel = channel_;
channel.configureBlocking(false);
writeSelector = Selector.open();
readSelector = Selector.open();
} catch (java.io.IOException e) {
throw new Exception(e.getMessage());
}
try {
channel.register(writeSelector, SelectionKey.OP_WRITE);
channel.register(readSelector, SelectionKey.OP_READ);
} catch (java.nio.channels.ClosedChannelException e) {
System.out.println(e.toString());
}
}
protected SocketChannel channel;
protected Selector writeSelector;
protected Selector readSelector;
}
|