View Javadoc
1   /*
2    * Copyright 2022 The Netty Project
3    *
4    * The Netty Project licenses this file to you under the Apache License,
5    * version 2.0 (the "License"); you may not use this file except in compliance
6    * with the License. You may obtain a copy of the License at:
7    *
8    *   https://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13   * License for the specific language governing permissions and limitations
14   * under the License.
15   */
16  package io.netty.channel.socket.nio;
17  
18  import io.netty.channel.socket.InternetProtocolFamily;
19  import io.netty.util.internal.PlatformDependent;
20  import io.netty.util.internal.SuppressJava6Requirement;
21  import io.netty.util.internal.logging.InternalLogger;
22  import io.netty.util.internal.logging.InternalLoggerFactory;
23  
24  import java.io.IOException;
25  import java.lang.reflect.InvocationTargetException;
26  import java.lang.reflect.Method;
27  import java.nio.channels.Channel;
28  import java.nio.channels.SocketChannel;
29  import java.nio.channels.spi.SelectorProvider;
30  
31  final class SelectorProviderUtil {
32      private static final InternalLogger logger = InternalLoggerFactory.getInstance(SelectorProviderUtil.class);
33  
34      @SuppressJava6Requirement(reason = "Usage guarded by java version check")
35      static Method findOpenMethod(String methodName) {
36          if (PlatformDependent.javaVersion() >= 15) {
37              try {
38                  return SelectorProvider.class.getMethod(methodName, java.net.ProtocolFamily.class);
39              } catch (Throwable e) {
40                  logger.debug("SelectorProvider.{}(ProtocolFamily) not available, will use default", methodName, e);
41              }
42          }
43          return null;
44      }
45  
46      @SuppressJava6Requirement(reason = "Usage guarded by java version check")
47      static <C extends Channel> C newChannel(Method method, SelectorProvider provider,
48                                                      InternetProtocolFamily family) throws IOException {
49          /**
50           *  Use the {@link SelectorProvider} to open {@link SocketChannel} and so remove condition in
51           *  {@link SelectorProvider#provider()} which is called by each SocketChannel.open() otherwise.
52           *
53           *  See <a href="https://github.com/netty/netty/issues/2308">#2308</a>.
54           */
55          if (family != null && method != null) {
56              try {
57                  @SuppressWarnings("unchecked")
58                  C channel = (C) method.invoke(
59                          provider, ProtocolFamilyConverter.convert(family));
60                  return channel;
61              } catch (InvocationTargetException e) {
62                  throw new IOException(e);
63              } catch (IllegalAccessException e) {
64                  throw new IOException(e);
65              }
66          }
67          return null;
68      }
69  
70      private SelectorProviderUtil() { }
71  }