src/java.base/windows/native/libjava/io_util_md.c
author ihse
Tue, 13 Feb 2018 10:37:33 +0100
branchihse-remove-mapfiles-branch
changeset 56106 40e61db323c2
parent 47289 6439a2eca58b
child 56721 01b558efd286
permissions -rw-r--r--
First stab at removing mapfiles.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
56106
40e61db323c2 First stab at removing mapfiles.
ihse
parents: 47289
diff changeset
     2
 * Copyright (c) 2001, 2018, 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: 798
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: 798
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: 798
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 798
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 798
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 "jni.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include "jni_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#include "jvm.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#include "io_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#include "io_util_md.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#include <stdio.h>
19032
e31afe87fb92 8016579: (process) IOException thrown by ProcessBuilder.start() method is incorrectly encoded
uta
parents: 16476
diff changeset
    32
#include <windows.h>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#include <wchar.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#include <io.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#include <fcntl.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
#include <errno.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
#include <string.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
#include <sys/types.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
#include <sys/stat.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
#include <limits.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
#include <wincon.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
19032
e31afe87fb92 8016579: (process) IOException thrown by ProcessBuilder.start() method is incorrectly encoded
uta
parents: 16476
diff changeset
    44
47
c8f0e41aea68 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin
parents: 45
diff changeset
    45
static DWORD MAX_INPUT_EVENTS = 2000;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
/* If this returns NULL then an exception is pending */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
WCHAR*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
fileToNTPath(JNIEnv *env, jobject file, jfieldID id) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    jstring path = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    if (file != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        path = (*env)->GetObjectField(env, file, id);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    return pathToNTPath(env, path, JNI_FALSE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
6885
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    57
/* Returns the working directory for the given drive, or NULL */
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    58
WCHAR*
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    59
currentDir(int di) {
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    60
    UINT dt;
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    61
    WCHAR root[4];
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    62
    // verify drive is valid as _wgetdcwd in the VC++ 2010 runtime
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    63
    // library does not handle invalid drives.
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    64
    root[0] = L'A' + (WCHAR)(di - 1);
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    65
    root[1] = L':';
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    66
    root[2] = L'\\';
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    67
    root[3] = L'\0';
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    68
    dt = GetDriveTypeW(root);
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    69
    if (dt == DRIVE_UNKNOWN || dt == DRIVE_NO_ROOT_DIR) {
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    70
        return NULL;
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    71
    } else {
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    72
        return _wgetdcwd(di, NULL, MAX_PATH);
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    73
    }
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    74
}
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    75
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
/* We cache the length of current working dir here to avoid
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
   calling _wgetcwd() every time we need to resolve a relative
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
   path. This piece of code needs to be revisited if chdir
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
   makes its way into java runtime.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
int
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
currentDirLength(const WCHAR* ps, int pathlen) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    WCHAR *dir;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    if (pathlen > 2 && ps[1] == L':' && ps[2] != L'\\') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        //drive-relative
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        WCHAR d = ps[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        int dirlen = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        int di = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        if ((d >= L'a') && (d <= L'z')) di = d - L'a' + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        else if ((d >= L'A') && (d <= L'Z')) di = d - L'A' + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        else return 0; /* invalid drive name. */
6885
5605d7d60c9c 6983520: java/io/pathNames/GeneralWin32.java fails with jdk7-b108 (win)
alanb
parents: 6690
diff changeset
    93
        dir = currentDir(di);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        if (dir != NULL){
8186
d0e2cc8b3073 7017454: Residual warnings in sun/nio/** and java/io native code (win64)
alanb
parents: 7668
diff changeset
    95
            dirlen = (int)wcslen(dir);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            free(dir);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        return dirlen;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        static int curDirLenCached = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        //relative to both drive and directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        if (curDirLenCached == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            int dirlen = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            dir = _wgetcwd(NULL, MAX_PATH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            if (dir != NULL) {
8186
d0e2cc8b3073 7017454: Residual warnings in sun/nio/** and java/io native code (win64)
alanb
parents: 7668
diff changeset
   106
                curDirLenCached = (int)wcslen(dir);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                free(dir);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        return curDirLenCached;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
785
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   114
/*
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   115
  The "abpathlen" is the size of the buffer needed by _wfullpath. If the
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   116
  "path" is a relative path, it is "the length of the current dir" + "the
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   117
  length of the path", if it's "absolute" already, it's the same as
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   118
  pathlen which is the length of "path".
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   119
 */
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   120
WCHAR* prefixAbpath(const WCHAR* path, int pathlen, int abpathlen) {
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   121
    WCHAR* pathbuf = NULL;
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   122
    WCHAR* abpath = NULL;
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   123
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   124
    abpathlen += 10;  //padding
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   125
    abpath = (WCHAR*)malloc(abpathlen * sizeof(WCHAR));
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   126
    if (abpath) {
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   127
        /* Collapse instances of "foo\.." and ensure absoluteness before
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   128
           going down to prefixing.
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   129
        */
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   130
        if (_wfullpath(abpath, path, abpathlen)) {
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   131
            pathbuf = getPrefixed(abpath, abpathlen);
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   132
        } else {
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   133
            /* _wfullpath fails if the pathlength exceeds 32k wchar.
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   134
               Instead of doing more fancy things we simply copy the
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   135
               ps into the return buffer, the subsequent win32 API will
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   136
               probably fail with FileNotFoundException, which is expected
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   137
            */
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   138
            pathbuf = (WCHAR*)malloc((pathlen + 6) * sizeof(WCHAR));
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   139
            if (pathbuf != 0) {
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   140
                wcscpy(pathbuf, path);
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   141
            }
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   142
        }
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   143
        free(abpath);
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   144
    }
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   145
    return pathbuf;
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   146
}
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   147
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
/* If this returns NULL then an exception is pending */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
WCHAR*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
pathToNTPath(JNIEnv *env, jstring path, jboolean throwFNFE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    int pathlen = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    WCHAR *pathbuf = NULL;
785
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   153
    int max_path = 248; /* CreateDirectoryW() has the limit of 248 */
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   154
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    WITH_UNICODE_STRING(env, path, ps) {
8186
d0e2cc8b3073 7017454: Residual warnings in sun/nio/** and java/io native code (win64)
alanb
parents: 7668
diff changeset
   156
        pathlen = (int)wcslen(ps);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        if (pathlen != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            if (pathlen > 2 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                (ps[0] == L'\\' && ps[1] == L'\\' ||   //UNC
785
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   160
                 ps[1] == L':' && ps[2] == L'\\'))     //absolute
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   161
            {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                 if (pathlen > max_path - 1) {
785
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   163
                     pathbuf = prefixAbpath(ps, pathlen, pathlen);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                 } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                     pathbuf = (WCHAR*)malloc((pathlen + 6) * sizeof(WCHAR));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                     if (pathbuf != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                         wcscpy(pathbuf, ps);
23561
babc1414a7e4 8035930: Check jdk/src/windows/native/java/io/io_util_md.c for JNI pending exceptions
msheppar
parents: 19381
diff changeset
   168
                     } else {
babc1414a7e4 8035930: Check jdk/src/windows/native/java/io/io_util_md.c for JNI pending exceptions
msheppar
parents: 19381
diff changeset
   169
                         JNU_ThrowOutOfMemoryError(env, "native memory allocation failed");
babc1414a7e4 8035930: Check jdk/src/windows/native/java/io/io_util_md.c for JNI pending exceptions
msheppar
parents: 19381
diff changeset
   170
                         return NULL;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                 }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                /* If the path came in as a relative path, need to verify if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                   its absolute form is bigger than max_path or not, if yes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                   need to (1)convert it to absolute and (2)prefix. This is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                   obviously a burden to all relative paths (The current dir/len
785
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   178
                   for "drive & directory" relative path is cached, so we only
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                   calculate it once but for "drive-relative path we call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                   _wgetdcwd() and wcslen() everytime), but a hit we have
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                   to take if we want to support relative path beyond max_path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                   There is no way to predict how long the absolute path will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                   (therefor allocate the sufficient memory block) before calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                   _wfullpath(), we have to get the length of "current" dir first.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
                */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                WCHAR *abpath = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
                int dirlen = currentDirLength(ps, pathlen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
                if (dirlen + pathlen + 1 > max_path - 1) {
785
36c29b2692f1 6481955: Uncanonicalized absolute filepath with length 248-260 no longer works (win)
sherman
parents: 47
diff changeset
   189
                    pathbuf = prefixAbpath(ps, pathlen, dirlen + pathlen);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
                    pathbuf = (WCHAR*)malloc((pathlen + 6) * sizeof(WCHAR));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                    if (pathbuf != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
                        wcscpy(pathbuf, ps);
23561
babc1414a7e4 8035930: Check jdk/src/windows/native/java/io/io_util_md.c for JNI pending exceptions
msheppar
parents: 19381
diff changeset
   194
                    } else {
babc1414a7e4 8035930: Check jdk/src/windows/native/java/io/io_util_md.c for JNI pending exceptions
msheppar
parents: 19381
diff changeset
   195
                        JNU_ThrowOutOfMemoryError(env, "native memory allocation failed");
babc1414a7e4 8035930: Check jdk/src/windows/native/java/io/io_util_md.c for JNI pending exceptions
msheppar
parents: 19381
diff changeset
   196
                        return NULL;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    } END_UNICODE_STRING(env, ps);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    if (pathlen == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        if (throwFNFE == JNI_TRUE) {
23561
babc1414a7e4 8035930: Check jdk/src/windows/native/java/io/io_util_md.c for JNI pending exceptions
msheppar
parents: 19381
diff changeset
   205
            if (!(*env)->ExceptionCheck(env)) {
babc1414a7e4 8035930: Check jdk/src/windows/native/java/io/io_util_md.c for JNI pending exceptions
msheppar
parents: 19381
diff changeset
   206
                throwFileNotFoundException(env, path);
babc1414a7e4 8035930: Check jdk/src/windows/native/java/io/io_util_md.c for JNI pending exceptions
msheppar
parents: 19381
diff changeset
   207
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
            return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
            pathbuf = (WCHAR*)malloc(sizeof(WCHAR));
23565
b28f771b8cbe 8035870: Check jdk/src/windows/native/java/io/WinNTFileSystem_md.c for JNI pending exceptions
msheppar
parents: 23561
diff changeset
   211
            if (pathbuf != NULL) {
b28f771b8cbe 8035870: Check jdk/src/windows/native/java/io/WinNTFileSystem_md.c for JNI pending exceptions
msheppar
parents: 23561
diff changeset
   212
                pathbuf[0] = L'\0';
b28f771b8cbe 8035870: Check jdk/src/windows/native/java/io/WinNTFileSystem_md.c for JNI pending exceptions
msheppar
parents: 23561
diff changeset
   213
            } else {
b28f771b8cbe 8035870: Check jdk/src/windows/native/java/io/WinNTFileSystem_md.c for JNI pending exceptions
msheppar
parents: 23561
diff changeset
   214
                JNU_ThrowOutOfMemoryError(env, 0);
b28f771b8cbe 8035870: Check jdk/src/windows/native/java/io/WinNTFileSystem_md.c for JNI pending exceptions
msheppar
parents: 23561
diff changeset
   215
                return NULL;
b28f771b8cbe 8035870: Check jdk/src/windows/native/java/io/WinNTFileSystem_md.c for JNI pending exceptions
msheppar
parents: 23561
diff changeset
   216
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    if (pathbuf == 0) {
23565
b28f771b8cbe 8035870: Check jdk/src/windows/native/java/io/WinNTFileSystem_md.c for JNI pending exceptions
msheppar
parents: 23561
diff changeset
   220
        JNU_ThrowOutOfMemoryError(env, 0);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    return pathbuf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
56106
40e61db323c2 First stab at removing mapfiles.
ihse
parents: 47289
diff changeset
   226
JNIEXPORT FD
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
winFileHandleOpen(JNIEnv *env, jstring path, int flags)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    const DWORD access =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        (flags & O_WRONLY) ?  GENERIC_WRITE :
47
c8f0e41aea68 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin
parents: 45
diff changeset
   231
        (flags & O_RDWR)   ? (GENERIC_READ | GENERIC_WRITE) :
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        GENERIC_READ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    const DWORD sharing =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        FILE_SHARE_READ | FILE_SHARE_WRITE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    const DWORD disposition =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        /* Note: O_TRUNC overrides O_CREAT */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        (flags & O_TRUNC) ? CREATE_ALWAYS :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        (flags & O_CREAT) ? OPEN_ALWAYS   :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        OPEN_EXISTING;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    const DWORD  maybeWriteThrough =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        (flags & (O_SYNC | O_DSYNC)) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        FILE_FLAG_WRITE_THROUGH :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        FILE_ATTRIBUTE_NORMAL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    const DWORD maybeDeleteOnClose =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        (flags & O_TEMPORARY) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        FILE_FLAG_DELETE_ON_CLOSE :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        FILE_ATTRIBUTE_NORMAL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    const DWORD flagsAndAttributes = maybeWriteThrough | maybeDeleteOnClose;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
    HANDLE h = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
14177
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   251
    WCHAR *pathbuf = pathToNTPath(env, path, JNI_TRUE);
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   252
    if (pathbuf == NULL) {
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   253
        /* Exception already pending */
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   254
        return -1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    }
14177
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   256
    h = CreateFileW(
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   257
        pathbuf,            /* Wide char path name */
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   258
        access,             /* Read and/or write permission */
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   259
        sharing,            /* File sharing flags */
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   260
        NULL,               /* Security attributes */
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   261
        disposition,        /* creation disposition */
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   262
        flagsAndAttributes, /* flags and attributes */
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   263
        NULL);
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   264
    free(pathbuf);
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   265
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    if (h == INVALID_HANDLE_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        throwFileNotFoundException(env, path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    return (jlong) h;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
void
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
fileOpen(JNIEnv *env, jobject this, jstring path, jfieldID fid, int flags)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
{
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   276
    FD h = winFileHandleOpen(env, path, flags);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    if (h >= 0) {
27263
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   278
        jobject fdobj;
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   279
        jboolean append;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        SET_FD(this, h, fid);
27263
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   281
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   282
        fdobj = (*env)->GetObjectField(env, this, fid);
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   283
        if (fdobj != NULL) {
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   284
            append = (flags & O_APPEND) == 0 ? JNI_FALSE : JNI_TRUE;
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   285
            (*env)->SetBooleanField(env, fdobj, IO_append_fdID, append);
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   286
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
/* These are functions that use a handle fd instead of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
   old C style int fd as is used in HPI layer */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
static int
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   294
handleNonSeekAvailable(FD, long *);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
static int
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   296
handleStdinAvailable(FD, long *);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
int
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   299
handleAvailable(FD fd, jlong *pbytes) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    HANDLE h = (HANDLE)fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    DWORD type = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    type = GetFileType(h);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    /* Handle is for keyboard or pipe */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    if (type == FILE_TYPE_CHAR || type == FILE_TYPE_PIPE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        int ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        long lpbytes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        HANDLE stdInHandle = GetStdHandle(STD_INPUT_HANDLE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        if (stdInHandle == h) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            ret = handleStdinAvailable(fd, &lpbytes); /* keyboard */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
            ret = handleNonSeekAvailable(fd, &lpbytes); /* pipe */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        (*pbytes) = (jlong)(lpbytes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    /* Handle is for regular file */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    if (type == FILE_TYPE_DISK) {
7519
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   319
        jlong current, end;
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   320
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   321
        LARGE_INTEGER filesize;
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   322
        current = handleLseek(fd, 0, SEEK_CUR);
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   323
        if (current < 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
            return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        }
7519
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   326
        if (GetFileSizeEx(h, &filesize) == 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
            return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        }
7519
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   329
        end = long_to_jlong(filesize.QuadPart);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        *pbytes = end - current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        return TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
static int
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   337
handleNonSeekAvailable(FD fd, long *pbytes) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    /* This is used for available on non-seekable devices
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * (like both named and anonymous pipes, such as pipes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     *  connected to an exec'd process).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * Standard Input is a special case.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    HANDLE han;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    if ((han = (HANDLE) fd) == INVALID_HANDLE_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    if (! PeekNamedPipe(han, NULL, 0, NULL, pbytes, NULL)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        /* PeekNamedPipe fails when at EOF.  In that case we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
         * simply make *pbytes = 0 which is consistent with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
         * behavior we get on Solaris when an fd is at EOF.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
         * The only alternative is to raise and Exception,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
         * which isn't really warranted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        if (GetLastError() != ERROR_BROKEN_PIPE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        *pbytes = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    return TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
static int
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   366
handleStdinAvailable(FD fd, long *pbytes) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    HANDLE han;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    DWORD numEventsRead = 0;    /* Number of events read from buffer */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    DWORD numEvents = 0;        /* Number of events in buffer */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    DWORD i = 0;                /* Loop index */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    DWORD curLength = 0;        /* Position marker */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    DWORD actualLength = 0;     /* Number of bytes readable */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
    BOOL error = FALSE;         /* Error holder */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    INPUT_RECORD *lpBuffer;     /* Pointer to records of input events */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    DWORD bufferSize = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    if ((han = GetStdHandle(STD_INPUT_HANDLE)) == INVALID_HANDLE_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    /* Construct an array of input records in the console buffer */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    error = GetNumberOfConsoleInputEvents(han, &numEvents);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
    if (error == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        return handleNonSeekAvailable(fd, pbytes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    /* lpBuffer must fit into 64K or else PeekConsoleInput fails */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
    if (numEvents > MAX_INPUT_EVENTS) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        numEvents = MAX_INPUT_EVENTS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    bufferSize = numEvents * sizeof(INPUT_RECORD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    if (bufferSize == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        bufferSize = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    lpBuffer = malloc(bufferSize);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    if (lpBuffer == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
        return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
    error = PeekConsoleInput(han, lpBuffer, numEvents, &numEventsRead);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
    if (error == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        free(lpBuffer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    /* Examine input records for the number of bytes available */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    for(i=0; i<numEvents; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        if (lpBuffer[i].EventType == KEY_EVENT) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
            KEY_EVENT_RECORD *keyRecord = (KEY_EVENT_RECORD *)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
                                          &(lpBuffer[i].Event);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
            if (keyRecord->bKeyDown == TRUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
                CHAR *keyPressed = (CHAR *) &(keyRecord->uChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
                curLength++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
                if (*keyPressed == '\r')
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                    actualLength = curLength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    if(lpBuffer != NULL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        free(lpBuffer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
    *pbytes = (long) actualLength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    return TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
 * This is documented to succeed on read-only files, but Win32's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
 * FlushFileBuffers functions fails with "access denied" in such a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
 * case.  So we only signal an error if the error is *not* "access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
 * denied".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   432
int
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   433
handleSync(FD fd) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * From the documentation:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     *     On Windows NT, the function FlushFileBuffers fails if hFile
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *     is a handle to console output. That is because console
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     *     output is not buffered. The function returns FALSE, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     *     GetLastError returns ERROR_INVALID_HANDLE.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * On the other hand, on Win95, it returns without error.  I cannot
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     * assume that 0, 1, and 2 are console, because if someone closes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     * System.out and then opens a file, they might get file descriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     * 1.  An error on *that* version of 1 should be reported, whereas
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * an error on System.out (which was the original 1) should be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * ignored.  So I use isatty() to ensure that such an error was due
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * to this bogosity, and if it was, I ignore the error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    HANDLE handle = (HANDLE)fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    if (!FlushFileBuffers(handle)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
        if (GetLastError() != ERROR_ACCESS_DENIED) {    /* from winerror.h */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
    return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
int
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   463
handleSetLength(FD fd, jlong length) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
    HANDLE h = (HANDLE)fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    long high = (long)(length >> 32);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
    DWORD ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
    if (h == (HANDLE)(-1)) return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    ret = SetFilePointer(h, (long)(length), &high, FILE_BEGIN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
    if (ret == 0xFFFFFFFF && GetLastError() != NO_ERROR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    if (SetEndOfFile(h) == FALSE) return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
JNIEXPORT
11116
3e486ce0019d 7030624: size_t usages in src/windows/native/java/io/io_util_md.c need to be re-visited
alanb
parents: 9035
diff changeset
   478
jint
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   479
handleRead(FD fd, void *buf, jint len)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    DWORD read = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
    BOOL result = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    HANDLE h = (HANDLE)fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    if (h == INVALID_HANDLE_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    result = ReadFile(h,          /* File handle to read */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
                      buf,        /* address to put data */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
                      len,        /* number of bytes to read */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
                      &read,      /* number of bytes read */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
                      NULL);      /* no overlapped struct */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    if (result == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        int error = GetLastError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        if (error == ERROR_BROKEN_PIPE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
            return 0; /* EOF */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
    }
11116
3e486ce0019d 7030624: size_t usages in src/windows/native/java/io/io_util_md.c need to be re-visited
alanb
parents: 9035
diff changeset
   499
    return (jint)read;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   502
static jint writeInternal(FD fd, const void *buf, jint len, jboolean append)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
    BOOL result = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    DWORD written = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
    HANDLE h = (HANDLE)fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
    if (h != INVALID_HANDLE_VALUE) {
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   508
        OVERLAPPED ov;
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   509
        LPOVERLAPPED lpOv;
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   510
        if (append == JNI_TRUE) {
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   511
            ov.Offset = (DWORD)0xFFFFFFFF;
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   512
            ov.OffsetHigh = (DWORD)0xFFFFFFFF;
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   513
            ov.hEvent = NULL;
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   514
            lpOv = &ov;
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   515
        } else {
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   516
            lpOv = NULL;
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   517
        }
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   518
        result = WriteFile(h,                /* File handle to write */
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   519
                           buf,              /* pointers to the buffers */
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   520
                           len,              /* number of bytes to write */
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   521
                           &written,         /* receives number of bytes written */
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   522
                           lpOv);            /* overlapped struct */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
    if ((h == INVALID_HANDLE_VALUE) || (result == 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    }
11116
3e486ce0019d 7030624: size_t usages in src/windows/native/java/io/io_util_md.c need to be re-visited
alanb
parents: 9035
diff changeset
   527
    return (jint)written;
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   528
}
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   529
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   530
jint handleWrite(FD fd, const void *buf, jint len) {
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   531
    return writeInternal(fd, buf, len, JNI_FALSE);
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   532
}
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   533
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   534
jint handleAppend(FD fd, const void *buf, jint len) {
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   535
    return writeInternal(fd, buf, len, JNI_TRUE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
47235
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   538
void
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
handleClose(JNIEnv *env, jobject this, jfieldID fid)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
{
47235
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   541
    jobject fileDescriptor = (*env)->GetObjectField(env, (this), (fid));
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   542
    if (fileDescriptor == NULL) {
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   543
        return;
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   544
    }
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   545
    fileDescriptorClose(env, fileDescriptor);
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   546
}
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   547
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   548
// Function to close the fd held by this FileDescriptor and set fd to -1.
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   549
void
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   550
fileDescriptorClose(JNIEnv *env, jobject this)
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   551
{
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   552
    FD fd = (*env)->GetLongField(env, this, IO_handle_fdID);
47289
6439a2eca58b 8188135: Fix VS 2010 build after "8187631: Refactor FileDescriptor close implementation"
goetz
parents: 47235
diff changeset
   553
    HANDLE h = (HANDLE)fd;
47235
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   554
    if ((*env)->ExceptionOccurred(env)) {
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   555
        return;
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   556
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
47
c8f0e41aea68 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin
parents: 45
diff changeset
   558
    if (h == INVALID_HANDLE_VALUE) {
47235
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   559
        return;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    /* Set the fd to -1 before closing it so that the timing window
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     * of other threads using the wrong fd (closed but recycled fd,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     * that gets re-opened with some other filename) is reduced.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     * Practically the chance of its occurance is low, however, we are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * taking extra precaution over here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     */
47235
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   568
    (*env)->SetLongField(env, this, IO_handle_fdID, -1);
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   569
    if ((*env)->ExceptionOccurred(env)) {
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   570
        return;
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   571
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
    if (CloseHandle(h) == 0) { /* Returns zero on failure */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        JNU_ThrowIOExceptionWithLastError(env, "close failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
56106
40e61db323c2 First stab at removing mapfiles.
ihse
parents: 47289
diff changeset
   578
JNIEXPORT jlong
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   579
handleLseek(FD fd, jlong offset, jint whence)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
{
7519
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   581
    LARGE_INTEGER pos, distance;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
    DWORD lowPos = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
    long highPos = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
    DWORD op = FILE_CURRENT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
    HANDLE h = (HANDLE)fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
    if (whence == SEEK_END) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
        op = FILE_END;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    if (whence == SEEK_CUR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
        op = FILE_CURRENT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
    if (whence == SEEK_SET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        op = FILE_BEGIN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
7519
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   597
    distance.QuadPart = offset;
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   598
    if (SetFilePointerEx(h, distance, &pos, op) == 0) {
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   599
        return -1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    }
7519
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   601
    return long_to_jlong(pos.QuadPart);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
}
34890
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   603
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   604
jlong
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   605
handleGetLength(FD fd) {
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   606
    HANDLE h = (HANDLE) fd;
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   607
    LARGE_INTEGER length;
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   608
    if (GetFileSizeEx(h, &length) != 0) {
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   609
        return long_to_jlong(length.QuadPart);
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   610
    } else {
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   611
        return -1;
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   612
    }
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   613
}