src/java.base/windows/native/libjava/io_util_md.c
author igerasim
Wed, 21 Aug 2019 13:49:16 -0700
changeset 57826 bf4c808a4488
parent 53144 41779d3b85e1
permissions -rw-r--r--
8211360: Change #if DEF to #if defined(DEF) Reviewed-by: bpb, vtewari
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
49440
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
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);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
                 }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                /* If the path came in as a relative path, need to verify if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                   its absolute form is bigger than max_path or not, if yes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                   need to (1)convert it to absolute and (2)prefix. This is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                   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
   175
                   for "drive & directory" relative path is cached, so we only
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                   calculate it once but for "drive-relative path we call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                   _wgetdcwd() and wcslen() everytime), but a hit we have
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                   to take if we want to support relative path beyond max_path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                   There is no way to predict how long the absolute path will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                   (therefor allocate the sufficient memory block) before calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                   _wfullpath(), we have to get the length of "current" dir first.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                WCHAR *abpath = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                int dirlen = currentDirLength(ps, pathlen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
                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
   186
                    pathbuf = prefixAbpath(ps, pathlen, dirlen + pathlen);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
                    pathbuf = (WCHAR*)malloc((pathlen + 6) * sizeof(WCHAR));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                    if (pathbuf != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                        wcscpy(pathbuf, ps);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    } END_UNICODE_STRING(env, ps);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    if (pathlen == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        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
   199
            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
   200
                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
   201
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
            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
   205
            if (pathbuf != NULL) {
b28f771b8cbe 8035870: Check jdk/src/windows/native/java/io/WinNTFileSystem_md.c for JNI pending exceptions
msheppar
parents: 23561
diff changeset
   206
                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
   207
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    if (pathbuf == 0) {
51044
68646e6522ca 8207060: Memory leak when malloc fails within WITH_UNICODE_STRING block
igerasim
parents: 50901
diff changeset
   211
        JNU_ThrowOutOfMemoryError(env, "native memory allocation failed");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    return pathbuf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
52095
c459186b9584 8212001: Verify exported symbols in java.base (libjava)
prappo
parents: 51044
diff changeset
   216
FD winFileHandleOpen(JNIEnv *env, jstring path, int flags)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    const DWORD access =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        (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
   220
        (flags & O_RDWR)   ? (GENERIC_READ | GENERIC_WRITE) :
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        GENERIC_READ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    const DWORD sharing =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        FILE_SHARE_READ | FILE_SHARE_WRITE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    const DWORD disposition =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        /* Note: O_TRUNC overrides O_CREAT */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        (flags & O_TRUNC) ? CREATE_ALWAYS :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        (flags & O_CREAT) ? OPEN_ALWAYS   :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        OPEN_EXISTING;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    const DWORD  maybeWriteThrough =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        (flags & (O_SYNC | O_DSYNC)) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        FILE_FLAG_WRITE_THROUGH :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        FILE_ATTRIBUTE_NORMAL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    const DWORD maybeDeleteOnClose =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        (flags & O_TEMPORARY) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        FILE_FLAG_DELETE_ON_CLOSE :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        FILE_ATTRIBUTE_NORMAL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    const DWORD flagsAndAttributes = maybeWriteThrough | maybeDeleteOnClose;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    HANDLE h = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
14177
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   240
    WCHAR *pathbuf = pathToNTPath(env, path, JNI_TRUE);
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   241
    if (pathbuf == NULL) {
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   242
        /* Exception already pending */
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   243
        return -1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    }
14177
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   245
    h = CreateFileW(
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   246
        pathbuf,            /* Wide char path name */
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   247
        access,             /* Read and/or write permission */
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   248
        sharing,            /* File sharing flags */
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   249
        NULL,               /* Security attributes */
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   250
        disposition,        /* creation disposition */
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   251
        flagsAndAttributes, /* flags and attributes */
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   252
        NULL);
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   253
    free(pathbuf);
007c2f91d22b 7186817: Remove Windows 95/98/ME Support
dxu
parents: 11116
diff changeset
   254
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    if (h == INVALID_HANDLE_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        throwFileNotFoundException(env, path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    return (jlong) h;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
void
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
fileOpen(JNIEnv *env, jobject this, jstring path, jfieldID fid, int flags)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
{
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   265
    FD h = winFileHandleOpen(env, path, flags);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    if (h >= 0) {
27263
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   267
        jobject fdobj;
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   268
        jboolean append;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        SET_FD(this, h, fid);
27263
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   270
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   271
        fdobj = (*env)->GetObjectField(env, this, fid);
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   272
        if (fdobj != NULL) {
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   273
            append = (flags & O_APPEND) == 0 ? JNI_FALSE : JNI_TRUE;
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   274
            (*env)->SetBooleanField(env, fdobj, IO_append_fdID, append);
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
   275
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
/* These are functions that use a handle fd instead of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
   old C style int fd as is used in HPI layer */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
static int
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   283
handleNonSeekAvailable(FD, long *);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
static int
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   285
handleStdinAvailable(FD, long *);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
int
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   288
handleAvailable(FD fd, jlong *pbytes) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    HANDLE h = (HANDLE)fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    DWORD type = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    type = GetFileType(h);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    /* Handle is for keyboard or pipe */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    if (type == FILE_TYPE_CHAR || type == FILE_TYPE_PIPE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        int ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        long lpbytes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        HANDLE stdInHandle = GetStdHandle(STD_INPUT_HANDLE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        if (stdInHandle == h) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
            ret = handleStdinAvailable(fd, &lpbytes); /* keyboard */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            ret = handleNonSeekAvailable(fd, &lpbytes); /* pipe */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        (*pbytes) = (jlong)(lpbytes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    /* Handle is for regular file */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    if (type == FILE_TYPE_DISK) {
7519
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   308
        jlong current, end;
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   309
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   310
        LARGE_INTEGER filesize;
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   311
        current = handleLseek(fd, 0, SEEK_CUR);
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   312
        if (current < 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
            return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        }
7519
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   315
        if (GetFileSizeEx(h, &filesize) == 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
            return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        }
7519
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   318
        end = long_to_jlong(filesize.QuadPart);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        *pbytes = end - current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        return TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
static int
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   326
handleNonSeekAvailable(FD fd, long *pbytes) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    /* This is used for available on non-seekable devices
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * (like both named and anonymous pipes, such as pipes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     *  connected to an exec'd process).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * Standard Input is a special case.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    HANDLE han;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    if ((han = (HANDLE) fd) == INVALID_HANDLE_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    if (! PeekNamedPipe(han, NULL, 0, NULL, pbytes, NULL)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        /* PeekNamedPipe fails when at EOF.  In that case we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
         * simply make *pbytes = 0 which is consistent with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
         * behavior we get on Solaris when an fd is at EOF.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
         * The only alternative is to raise and Exception,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
         * which isn't really warranted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        if (GetLastError() != ERROR_BROKEN_PIPE) {
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
        *pbytes = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    return TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
static int
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   355
handleStdinAvailable(FD fd, long *pbytes) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
    HANDLE han;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    DWORD numEventsRead = 0;    /* Number of events read from buffer */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    DWORD numEvents = 0;        /* Number of events in buffer */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    DWORD i = 0;                /* Loop index */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    DWORD curLength = 0;        /* Position marker */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    DWORD actualLength = 0;     /* Number of bytes readable */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    BOOL error = FALSE;         /* Error holder */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
    INPUT_RECORD *lpBuffer;     /* Pointer to records of input events */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
    DWORD bufferSize = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    if ((han = GetStdHandle(STD_INPUT_HANDLE)) == INVALID_HANDLE_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    /* Construct an array of input records in the console buffer */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    error = GetNumberOfConsoleInputEvents(han, &numEvents);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    if (error == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        return handleNonSeekAvailable(fd, pbytes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    /* lpBuffer must fit into 64K or else PeekConsoleInput fails */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    if (numEvents > MAX_INPUT_EVENTS) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        numEvents = MAX_INPUT_EVENTS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    bufferSize = numEvents * sizeof(INPUT_RECORD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    if (bufferSize == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        bufferSize = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    lpBuffer = malloc(bufferSize);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    if (lpBuffer == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    error = PeekConsoleInput(han, lpBuffer, numEvents, &numEventsRead);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
    if (error == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        free(lpBuffer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    /* Examine input records for the number of bytes available */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    for(i=0; i<numEvents; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
        if (lpBuffer[i].EventType == KEY_EVENT) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
            KEY_EVENT_RECORD *keyRecord = (KEY_EVENT_RECORD *)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                                          &(lpBuffer[i].Event);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            if (keyRecord->bKeyDown == TRUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
                CHAR *keyPressed = (CHAR *) &(keyRecord->uChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
                curLength++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
                if (*keyPressed == '\r')
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
                    actualLength = curLength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
    if(lpBuffer != NULL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        free(lpBuffer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    *pbytes = (long) actualLength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
    return TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
 * This is documented to succeed on read-only files, but Win32's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
 * FlushFileBuffers functions fails with "access denied" in such a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
 * case.  So we only signal an error if the error is *not* "access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
 * denied".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   421
int
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   422
handleSync(FD fd) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * From the documentation:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     *     On Windows NT, the function FlushFileBuffers fails if hFile
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     *     is a handle to console output. That is because console
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     *     output is not buffered. The function returns FALSE, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     *     GetLastError returns ERROR_INVALID_HANDLE.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * On the other hand, on Win95, it returns without error.  I cannot
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * assume that 0, 1, and 2 are console, because if someone closes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * System.out and then opens a file, they might get file descriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * 1.  An error on *that* version of 1 should be reported, whereas
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * an error on System.out (which was the original 1) should be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     * ignored.  So I use isatty() to ensure that such an error was due
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * to this bogosity, and if it was, I ignore the error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    HANDLE handle = (HANDLE)fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
    if (!FlushFileBuffers(handle)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        if (GetLastError() != ERROR_ACCESS_DENIED) {    /* from winerror.h */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
50901
9f62267e79df 8204310: Simpler RandomAccessFile.setLength() on Windows
igerasim
parents: 50549
diff changeset
   450
jint
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   451
handleSetLength(FD fd, jlong length) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    HANDLE h = (HANDLE)fd;
50901
9f62267e79df 8204310: Simpler RandomAccessFile.setLength() on Windows
igerasim
parents: 50549
diff changeset
   453
    FILE_END_OF_FILE_INFO eofInfo;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
50901
9f62267e79df 8204310: Simpler RandomAccessFile.setLength() on Windows
igerasim
parents: 50549
diff changeset
   455
    eofInfo.EndOfFile.QuadPart = length;
9f62267e79df 8204310: Simpler RandomAccessFile.setLength() on Windows
igerasim
parents: 50549
diff changeset
   456
9f62267e79df 8204310: Simpler RandomAccessFile.setLength() on Windows
igerasim
parents: 50549
diff changeset
   457
    if (h == INVALID_HANDLE_VALUE) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    }
50901
9f62267e79df 8204310: Simpler RandomAccessFile.setLength() on Windows
igerasim
parents: 50549
diff changeset
   460
    if (!SetFileInformationByHandle(h, FileEndOfFileInfo, &eofInfo,
9f62267e79df 8204310: Simpler RandomAccessFile.setLength() on Windows
igerasim
parents: 50549
diff changeset
   461
            sizeof(FILE_END_OF_FILE_INFO))) {
9f62267e79df 8204310: Simpler RandomAccessFile.setLength() on Windows
igerasim
parents: 50549
diff changeset
   462
        return -1;
9f62267e79df 8204310: Simpler RandomAccessFile.setLength() on Windows
igerasim
parents: 50549
diff changeset
   463
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
    return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
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
   468
jint
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   469
handleRead(FD fd, void *buf, jint len)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    DWORD read = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    BOOL result = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    HANDLE h = (HANDLE)fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    if (h == INVALID_HANDLE_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
    result = ReadFile(h,          /* File handle to read */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
                      buf,        /* address to put data */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
                      len,        /* number of bytes to read */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
                      &read,      /* number of bytes read */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
                      NULL);      /* no overlapped struct */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
    if (result == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        int error = GetLastError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
        if (error == ERROR_BROKEN_PIPE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
            return 0; /* EOF */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    }
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
   489
    return (jint)read;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   492
static jint writeInternal(FD fd, const void *buf, jint len, jboolean append)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
    BOOL result = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
    DWORD written = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
    HANDLE h = (HANDLE)fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
    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
   498
        OVERLAPPED ov;
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   499
        LPOVERLAPPED lpOv;
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   500
        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
   501
            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
   502
            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
   503
            ov.hEvent = NULL;
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   504
            lpOv = &ov;
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   505
        } else {
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   506
            lpOv = NULL;
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   507
        }
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   508
        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
   509
                           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
   510
                           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
   511
                           &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
   512
                           lpOv);            /* overlapped struct */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
    if ((h == INVALID_HANDLE_VALUE) || (result == 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    }
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
   517
    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
   518
}
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   519
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   520
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
   521
    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
   522
}
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 6885
diff changeset
   523
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   524
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
   525
    return writeInternal(fd, buf, len, JNI_TRUE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
47235
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   528
// 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
   529
void
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   530
fileDescriptorClose(JNIEnv *env, jobject this)
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   531
{
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   532
    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
   533
    HANDLE h = (HANDLE)fd;
47235
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   534
    if ((*env)->ExceptionOccurred(env)) {
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   535
        return;
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   536
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
47
c8f0e41aea68 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin
parents: 45
diff changeset
   538
    if (h == INVALID_HANDLE_VALUE) {
47235
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   539
        return;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    /* Set the fd to -1 before closing it so that the timing window
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * of other threads using the wrong fd (closed but recycled fd,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     * that gets re-opened with some other filename) is reduced.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     * Practically the chance of its occurance is low, however, we are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * taking extra precaution over here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     */
47235
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   548
    (*env)->SetLongField(env, this, IO_handle_fdID, -1);
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   549
    if ((*env)->ExceptionOccurred(env)) {
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   550
        return;
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   551
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
    if (CloseHandle(h) == 0) { /* Returns zero on failure */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        JNU_ThrowIOExceptionWithLastError(env, "close failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
49440
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 47289
diff changeset
   558
JNIEXPORT jlong JNICALL
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 14177
diff changeset
   559
handleLseek(FD fd, jlong offset, jint whence)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
{
7519
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   561
    LARGE_INTEGER pos, distance;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    DWORD op = FILE_CURRENT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
    HANDLE h = (HANDLE)fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
    if (whence == SEEK_END) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
        op = FILE_END;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    if (whence == SEEK_CUR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        op = FILE_CURRENT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
    if (whence == SEEK_SET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        op = FILE_BEGIN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
7519
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   575
    distance.QuadPart = offset;
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   576
    if (SetFilePointerEx(h, distance, &pos, op) == 0) {
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   577
        return -1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
    }
7519
1488bb354081 6402006: FileInputStream.available() returns negative values when reading a large file
mchung
parents: 7515
diff changeset
   579
    return long_to_jlong(pos.QuadPart);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
}
34890
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   581
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   582
jlong
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   583
handleGetLength(FD fd) {
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   584
    HANDLE h = (HANDLE) fd;
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   585
    LARGE_INTEGER length;
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   586
    if (GetFileSizeEx(h, &length) != 0) {
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   587
        return long_to_jlong(length.QuadPart);
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   588
    } else {
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   589
        return -1;
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   590
    }
0e8281ef3550 4823133: RandomAccessFile.length() is not thread-safe
vtewari
parents: 27263
diff changeset
   591
}