jdk/src/windows/native/sun/nio/ch/IOUtil.c
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 5506 202f599c92aa
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2000-2003 Sun Microsystems, Inc.  All Rights Reserved.
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
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
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
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 <io.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
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
#include "sun_nio_ch_IOUtil.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
/* field id for jlong 'handle' in java.io.FileDescriptor used for file fds */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
static jfieldID handle_fdID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
/* field id for jint 'fd' in java.io.FileDescriptor used for socket fds */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
static jfieldID fd_fdID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
/* false for 95/98/ME, true for NT/W2K */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
static jboolean onNT = JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
JNIEXPORT jboolean JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
Java_sun_security_provider_NativeSeedGenerator_nativeGenerateSeed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
(JNIEnv *env, jclass clazz, jbyteArray randArray);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
/**************************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * static method to store field IDs in initializers
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
Java_sun_nio_ch_IOUtil_initIDs(JNIEnv *env, jclass clazz)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    OSVERSIONINFO ver;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    ver.dwOSVersionInfoSize = sizeof(ver);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    GetVersionEx(&ver);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    if (ver.dwPlatformId == VER_PLATFORM_WIN32_NT) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        onNT = JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    clazz = (*env)->FindClass(env, "java/io/FileDescriptor");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    fd_fdID = (*env)->GetFieldID(env, clazz, "fd", "I");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    handle_fdID = (*env)->GetFieldID(env, clazz, "handle", "J");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
/**************************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * IOUtil.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
JNIEXPORT jboolean JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
Java_sun_nio_ch_IOUtil_randomBytes(JNIEnv *env, jclass clazz,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
                                  jbyteArray randArray)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        Java_sun_security_provider_NativeSeedGenerator_nativeGenerateSeed(env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
                                                                    clazz,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                                                                    randArray);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
jint
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
convertReturnVal(JNIEnv *env, jint n, jboolean reading)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    if (n > 0) /* Number of bytes written */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    if (n == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        if (reading) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            return IOS_EOF; /* EOF is -1 in javaland */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    JNU_ThrowIOExceptionWithLastError(env, "Read/write failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
jlong
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
convertLongReturnVal(JNIEnv *env, jlong n, jboolean reading)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    if (n > 0) /* Number of bytes written */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    if (n == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        if (reading) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            return IOS_EOF; /* EOF is -1 in javaland */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    JNU_ThrowIOExceptionWithLastError(env, "Read/write failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
JNIEXPORT jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
Java_sun_nio_ch_IOUtil_fdVal(JNIEnv *env, jclass clazz, jobject fdo)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    return fdval(env, fdo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
Java_sun_nio_ch_IOUtil_setfdVal(JNIEnv *env, jclass clazz, jobject fdo, jint val)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    (*env)->SetIntField(env, fdo, fd_fdID, val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
#define SET_BLOCKING 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
#define SET_NONBLOCKING 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
Java_sun_nio_ch_IOUtil_configureBlocking(JNIEnv *env, jclass clazz,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
                                        jobject fdo, jboolean blocking)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    u_long argp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    int result = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    jint fd = fdval(env, fdo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    if (blocking == JNI_FALSE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        argp = SET_NONBLOCKING;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        argp = SET_BLOCKING;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        /* Blocking fd cannot be registered with EventSelect */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        WSAEventSelect(fd, NULL, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    result = ioctlsocket(fd, FIONBIO, &argp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    if (result == SOCKET_ERROR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        int error = WSAGetLastError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        handleSocketError(env, (jint)error);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
/* Note: Drain uses the int fd value. It is currently not called
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
   on windows.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
JNIEXPORT jboolean JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
Java_sun_nio_ch_IOUtil_drain(JNIEnv *env, jclass cl, jint fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    DWORD read = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    int totalRead = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    BOOL result = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    HANDLE h = (HANDLE)_get_osfhandle(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    char buf[128];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    if (h == INVALID_HANDLE_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        JNU_ThrowIOExceptionWithLastError(env, "Read failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        result = ReadFile(h,          /* File handle to read */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                          (LPVOID)&buf,    /* address to put data */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                          128,        /* number of bytes to read */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                          &read,      /* number of bytes read */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                          NULL);      /* no overlapped struct */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        if (result == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            int error = GetLastError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            if (error == ERROR_NO_DATA) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                return (totalRead > 0) ? JNI_TRUE : JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            JNU_ThrowIOExceptionWithLastError(env, "Drain");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        if (read > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            totalRead += read;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    return (totalRead > 0) ? JNI_TRUE : JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
/* Note: This function returns the int fd value from file descriptor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
   It is mostly used for sockets which should use the int fd value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
jint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
fdval(JNIEnv *env, jobject fdo)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    return (*env)->GetIntField(env, fdo, fd_fdID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
jlong
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
handleval(JNIEnv *env, jobject fdo)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    return (*env)->GetLongField(env, fdo, handle_fdID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
jboolean
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
isNT()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    return onNT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
}