jdk/src/windows/native/sun/nio/ch/SocketDispatcher.c
author alanb
Mon, 20 Feb 2012 18:55:10 +0000
changeset 11909 a1a7165ac1fa
parent 7668 d4a77089c587
child 13017 2e79ad4fea09
permissions -rw-r--r--
6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win] Reviewed-by: chegar, coffeys
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 5804
diff changeset
     2
 * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#include <windows.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include <winsock2.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#include <ctype.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#include "jni.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#include "jni_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#include "jvm.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#include "jlong.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#include "sun_nio_ch_SocketDispatcher.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#include "nio.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#include "nio_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
/**************************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * SocketDispatcher.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
JNIEXPORT jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
Java_sun_nio_ch_SocketDispatcher_read0(JNIEnv *env, jclass clazz, jobject fdo,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
                                      jlong address, jint len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    /* set up */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    int i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    DWORD read = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    DWORD flags = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    jint fd = fdval(env, fdo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    WSABUF buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
5804
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
    53
    /* limit size */
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
    54
    if (len > MAX_BUFFER_SIZE)
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
    55
        len = MAX_BUFFER_SIZE;
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
    56
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    /* destination buffer and size */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    buf.buf = (char *)address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    buf.len = (u_long)len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    /* read into the buffers */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    i = WSARecv((SOCKET)fd, /* Socket */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
            &buf,           /* pointers to the buffers */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            (DWORD)1,       /* number of buffers to process */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            &read,          /* receives number of bytes read */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            &flags,         /* no flags */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            0,              /* no overlapped sockets */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            0);             /* no completion routine */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    if (i == SOCKET_ERROR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        int theErr = (jint)WSAGetLastError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        if (theErr == WSAEWOULDBLOCK) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            return IOS_UNAVAILABLE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        JNU_ThrowIOExceptionWithLastError(env, "Read failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    return convertReturnVal(env, (jint)read, JNI_TRUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
JNIEXPORT jlong JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
Java_sun_nio_ch_SocketDispatcher_readv0(JNIEnv *env, jclass clazz, jobject fdo,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
                                       jlong address, jint len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    /* set up */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    int i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    DWORD read = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    DWORD flags = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    jint fd = fdval(env, fdo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    struct iovec *iovp = (struct iovec *)address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    WSABUF *bufs = malloc(len * sizeof(WSABUF));
5804
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
    93
    jint rem = MAX_BUFFER_SIZE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    if (bufs == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        JNU_ThrowOutOfMemoryError(env, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    if ((isNT() == JNI_FALSE) && (len > 16)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        len = 16;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    /* copy iovec into WSABUF */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    for(i=0; i<len; i++) {
5804
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   106
        jint iov_len = iovp[i].iov_len;
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   107
        if (iov_len > rem)
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   108
            iov_len = rem;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        bufs[i].buf = (char *)iovp[i].iov_base;
5804
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   110
        bufs[i].len = (u_long)iov_len;
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   111
        rem -= iov_len;
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   112
        if (rem == 0) {
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   113
            len = i+1;
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   114
            break;
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   115
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    /* read into the buffers */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    i = WSARecv((SOCKET)fd, /* Socket */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            bufs,           /* pointers to the buffers */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            (DWORD)len,     /* number of buffers to process */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            &read,          /* receives number of bytes read */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            &flags,         /* no flags */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            0,              /* no overlapped sockets */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            0);             /* no completion routine */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    /* clean up */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    free(bufs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    if (i != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        int theErr = (jint)WSAGetLastError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        if (theErr == WSAEWOULDBLOCK) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            return IOS_UNAVAILABLE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        JNU_ThrowIOExceptionWithLastError(env, "Vector read failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    return convertLongReturnVal(env, (jlong)read, JNI_TRUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
JNIEXPORT jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
Java_sun_nio_ch_SocketDispatcher_write0(JNIEnv *env, jclass clazz, jobject fdo,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                                       jlong address, jint len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    /* set up */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    int i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    DWORD written = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    jint fd = fdval(env, fdo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    WSABUF buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
5804
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   152
    /* limit size */
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   153
    if (len > MAX_BUFFER_SIZE)
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   154
        len = MAX_BUFFER_SIZE;
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   155
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    /* copy iovec into WSABUF */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    buf.buf = (char *)address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    buf.len = (u_long)len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    /* read into the buffers */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    i = WSASend((SOCKET)fd, /* Socket */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            &buf,           /* pointers to the buffers */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            (DWORD)1,       /* number of buffers to process */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            &written,       /* receives number of bytes written */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
            0,              /* no flags */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            0,              /* no overlapped sockets */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            0);             /* no completion routine */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    if (i == SOCKET_ERROR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        int theErr = (jint)WSAGetLastError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        if (theErr == WSAEWOULDBLOCK) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            return IOS_UNAVAILABLE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        JNU_ThrowIOExceptionWithLastError(env, "Write failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    return convertReturnVal(env, (jint)written, JNI_FALSE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
JNIEXPORT jlong JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
Java_sun_nio_ch_SocketDispatcher_writev0(JNIEnv *env, jclass clazz,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                                         jobject fdo, jlong address, jint len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    /* set up */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    int i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    DWORD written = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    jint fd = fdval(env, fdo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    struct iovec *iovp = (struct iovec *)address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    WSABUF *bufs = malloc(len * sizeof(WSABUF));
5804
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   191
    jint rem = MAX_BUFFER_SIZE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    if (bufs == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        JNU_ThrowOutOfMemoryError(env, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    if ((isNT() == JNI_FALSE) && (len > 16)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        len = 16;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    /* copy iovec into WSABUF */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    for(i=0; i<len; i++) {
5804
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   204
        jint iov_len = iovp[i].iov_len;
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   205
        if (iov_len > rem)
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   206
            iov_len = rem;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        bufs[i].buf = (char *)iovp[i].iov_base;
5804
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   208
        bufs[i].len = (u_long)iov_len;
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   209
        rem -= iov_len;
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   210
        if (rem == 0) {
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   211
            len = i+1;
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   212
            break;
faf9bd47d6ce 6395224: (so) SocketChannel writer blocked on large buffer is not preempted by close method (vista)
alanb
parents: 5506
diff changeset
   213
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    /* read into the buffers */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    i = WSASend((SOCKET)fd, /* Socket */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
            bufs,           /* pointers to the buffers */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            (DWORD)len,     /* number of buffers to process */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            &written,       /* receives number of bytes written */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            0,              /* no flags */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            0,              /* no overlapped sockets */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            0);             /* no completion routine */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    /* clean up */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    free(bufs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    if (i != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        int theErr = (jint)WSAGetLastError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        if (theErr == WSAEWOULDBLOCK) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            return IOS_UNAVAILABLE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        JNU_ThrowIOExceptionWithLastError(env, "Vector write failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    return convertLongReturnVal(env, (jlong)written, JNI_FALSE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
JNIEXPORT void JNICALL
11909
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   241
Java_sun_nio_ch_SocketDispatcher_preClose0(JNIEnv *env, jclass clazz,
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   242
                                           jobject fdo)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    jint fd = fdval(env, fdo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    struct linger l;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    int len = sizeof(l);
11909
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   247
    if (getsockopt(fd, SOL_SOCKET, SO_LINGER, (char *)&l, &len) == 0) {
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   248
        if (l.l_onoff == 0) {
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   249
            WSASendDisconnect(fd, NULL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
}
11909
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   253
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   254
JNIEXPORT void JNICALL
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   255
Java_sun_nio_ch_SocketDispatcher_close0(JNIEnv *env, jclass clazz,
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   256
                                         jobject fdo)
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   257
{
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   258
    jint fd = fdval(env, fdo);
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   259
    if (closesocket(fd) == SOCKET_ERROR) {
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   260
        JNU_ThrowIOExceptionWithLastError(env, "Socket close failed");
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   261
    }
a1a7165ac1fa 6346658: (se) Selector briefly spins when asynchronously closing a registered channel [win]
alanb
parents: 7668
diff changeset
   262
}