24
24
import java .nio .channels .NotYetBoundException ;
25
25
import java .nio .channels .NotYetConnectedException ;
26
26
import java .nio .channels .spi .AbstractInterruptibleChannel ;
27
-
28
- import org .eclipse .jdt .annotation .NonNull ;
27
+ import java .util .Objects ;
29
28
30
29
/**
31
30
* Helper methods when working with {@link AbstractInterruptibleChannel} subclasses.
@@ -53,8 +52,8 @@ interface EndMethod {
53
52
* @param exception An optional exception that was caught in the try-catch-finally block.
54
53
* @throws AsynchronousCloseException on error.
55
54
*/
56
- static void endInterruptable (AbstractInterruptibleChannel channel , EndMethod end ,
57
- boolean complete , Exception exception ) throws AsynchronousCloseException {
55
+ static void endInterruptable (AFSomeSocketChannel channel , EndMethod end , boolean complete ,
56
+ Exception exception ) throws AsynchronousCloseException {
58
57
if (!complete ) {
59
58
if (exception instanceof ClosedChannelException ) {
60
59
// we already have caught a valid exception; we don't need to throw one from within "end"
@@ -68,8 +67,8 @@ static void endInterruptable(AbstractInterruptibleChannel channel, EndMethod end
68
67
}
69
68
}
70
69
71
- private static <T extends Exception > T closeAndThrow (AbstractInterruptibleChannel channel ,
72
- @ NonNull T exc ) {
70
+ private static <T extends Exception > T closeAndThrow (AFSomeSocketChannel channel , T exc ) {
71
+ Objects . requireNonNull ( exc );
73
72
if (channel .isOpen ()) {
74
73
try {
75
74
channel .close ();
@@ -99,14 +98,27 @@ static IOException ioExceptionOrThrowRuntimeException(Exception exception) {
99
98
* @param e The exception
100
99
* @return The exception.
101
100
*/
102
- @ SuppressWarnings ("null " )
103
- static Exception handleException (AbstractInterruptibleChannel channel , IOException e ) {
101
+ @ SuppressWarnings ("PMD.CognitiveComplexity " )
102
+ static Exception handleException (AFSomeSocketChannel channel , IOException e ) {
104
103
if (e instanceof NotConnectedSocketException ) {
105
104
return (NotYetConnectedException ) new NotYetConnectedException ().initCause (e );
106
105
} else if (e instanceof NotBoundSocketException ) {
107
106
return (NotYetBoundException ) new NotYetBoundException ().initCause (e );
108
107
}
109
108
109
+ if (e instanceof InvalidArgumentSocketException ) {
110
+ if (channel instanceof AFServerSocketChannel <?>) {
111
+ AFServerSocketChannel <?> sc = (AFServerSocketChannel <?>) channel ;
112
+ if (!sc .socket ().isBound ()) {
113
+ return (NotYetBoundException ) new NotYetBoundException ().initCause (e );
114
+ }
115
+ } else if (channel instanceof AFSocketChannel <?>) {
116
+ if (!((AFSocketChannel <?>) channel ).socket ().isConnected ()) {
117
+ return (NotYetConnectedException ) new NotYetConnectedException ().initCause (e );
118
+ }
119
+ }
120
+ }
121
+
110
122
if (e instanceof SocketClosedException || e instanceof ClosedChannelException
111
123
|| e instanceof BrokenPipeSocketException ) {
112
124
Thread t = Thread .currentThread ();
0 commit comments