author | alanb |
Fri, 02 Nov 2012 15:50:11 +0000 | |
changeset 14342 | 8435a30053c1 |
parent 13799 | b2b716be6e3e |
child 22597 | 7515a991bb37 |
permissions | -rw-r--r-- |
2057
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
1 |
/* |
12538
211d6e82fe51
7130404: [macosx] "os.arch" value should be "x86_64" for compatibility with Apple JDK6
jmelvin
parents:
12047
diff
changeset
|
2 |
* Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. |
2057
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
4 |
* |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2057
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2057
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
10 |
* |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
15 |
* accompanied this code). |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
16 |
* |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
17 |
* You should have received a copy of the GNU General Public License version |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
20 |
* |
5506 | 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. |
|
2057
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
24 |
*/ |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
25 |
|
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
26 |
package sun.nio.ch; |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
27 |
|
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
28 |
import java.nio.channels.spi.AsynchronousChannelProvider; |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
29 |
import java.security.AccessController; |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
30 |
import sun.security.action.GetPropertyAction; |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
31 |
|
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
32 |
/** |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
33 |
* Creates this platform's default asynchronous channel provider |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
34 |
*/ |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
35 |
|
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
36 |
public class DefaultAsynchronousChannelProvider { |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
37 |
|
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
38 |
/** |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
39 |
* Prevent instantiation. |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
40 |
*/ |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
41 |
private DefaultAsynchronousChannelProvider() { } |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
42 |
|
13799
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
43 |
@SuppressWarnings("unchecked") |
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
44 |
private static AsynchronousChannelProvider createProvider(String cn) { |
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
45 |
Class<AsynchronousChannelProvider> c; |
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
46 |
try { |
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
47 |
c = (Class<AsynchronousChannelProvider>)Class.forName(cn); |
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
48 |
} catch (ClassNotFoundException x) { |
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
49 |
throw new AssertionError(x); |
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
50 |
} |
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
51 |
try { |
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
52 |
return c.newInstance(); |
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
53 |
} catch (IllegalAccessException | InstantiationException x) { |
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
54 |
throw new AssertionError(x); |
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
55 |
} |
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
56 |
|
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
57 |
} |
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
58 |
|
2057
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
59 |
/** |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
60 |
* Returns the default AsynchronousChannelProvider. |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
61 |
*/ |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
62 |
public static AsynchronousChannelProvider create() { |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
63 |
String osname = AccessController |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
64 |
.doPrivileged(new GetPropertyAction("os.name")); |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
65 |
if (osname.equals("SunOS")) |
13799
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
66 |
return createProvider("sun.nio.ch.SolarisAsynchronousChannelProvider"); |
2057
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
67 |
if (osname.equals("Linux")) |
13799
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
68 |
return createProvider("sun.nio.ch.LinuxAsynchronousChannelProvider"); |
12538
211d6e82fe51
7130404: [macosx] "os.arch" value should be "x86_64" for compatibility with Apple JDK6
jmelvin
parents:
12047
diff
changeset
|
69 |
if (osname.contains("OS X")) |
13799
b2b716be6e3e
7197637: (ch) sun.nio.ch.Default* cause providers for other platforms to be included in rt.jar
alanb
parents:
12538
diff
changeset
|
70 |
return createProvider("sun.nio.ch.BsdAsynchronousChannelProvider"); |
2057
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
71 |
throw new InternalError("platform not recognized"); |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
72 |
} |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
diff
changeset
|
73 |
} |