jdk/src/java.base/share/native/libjava/io_util.h
author igerasim
Tue, 28 Oct 2014 15:36:27 +0300
changeset 27263 819f5f87d485
parent 27184 2996674bd701
permissions -rw-r--r--
8023173: FileDescriptor should respect append flag Reviewed-by: martin, alanb, rriggs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
27184
2996674bd701 8057777: Cleanup of old and unused VM interfaces
fparain
parents: 25859
diff changeset
     2
 * Copyright (c) 1997, 2014, 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: 1773
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: 1773
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: 1773
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1773
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1773
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
extern jfieldID IO_fd_fdID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
extern jfieldID IO_handle_fdID;
27263
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 27184
diff changeset
    31
extern jfieldID IO_append_fdID;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    33
#ifdef _ALLBSD_SOURCE
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    34
#include <fcntl.h>
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    35
#ifndef O_SYNC
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    36
#define O_SYNC  O_FSYNC
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    37
#endif
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    38
#ifndef O_DSYNC
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    39
#define O_DSYNC O_FSYNC
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    40
#endif
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    41
#elif !defined(O_DSYNC) || !defined(O_SYNC)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
#define O_SYNC  (0x0800)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
#define O_DSYNC (0x2000)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * IO helper functions
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 2
diff changeset
    50
jint readSingle(JNIEnv *env, jobject this, jfieldID fid);
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 2
diff changeset
    51
jint readBytes(JNIEnv *env, jobject this, jbyteArray bytes, jint off,
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 2
diff changeset
    52
               jint len, jfieldID fid);
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 5506
diff changeset
    53
void writeSingle(JNIEnv *env, jobject this, jint byte, jboolean append, jfieldID fid);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
void writeBytes(JNIEnv *env, jobject this, jbyteArray bytes, jint off,
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 5506
diff changeset
    55
                jint len, jboolean append, jfieldID fid);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
void fileOpen(JNIEnv *env, jobject this, jstring path, jfieldID fid, int flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
void throwFileNotFoundException(JNIEnv *env, jstring path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * Macros for managing platform strings.  The typical usage pattern is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *     WITH_PLATFORM_STRING(env, string, var) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *         doSomethingWith(var);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *     } END_PLATFORM_STRING(env, var);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *  where  env      is the prevailing JNIEnv,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *         string   is a JNI reference to a java.lang.String object, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *         var      is the char * variable that will point to the string,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *                  after being converted into the platform encoding.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * The related macro WITH_FIELD_PLATFORM_STRING first extracts the string from
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * a given field of a given object:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *     WITH_FIELD_PLATFORM_STRING(env, object, id, var) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *         doSomethingWith(var);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *     } END_PLATFORM_STRING(env, var);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *  where  env      is the prevailing JNIEnv,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 *         object   is a jobject,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *         id       is the field ID of the String field to be extracted, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *         var      is the char * variable that will point to the string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * Uses of these macros may be nested as long as each WITH_.._STRING macro
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * declares a unique variable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
#define WITH_PLATFORM_STRING(env, strexp, var)                                \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    if (1) {                                                                  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        const char *var;                                                      \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        jstring _##var##str = (strexp);                                       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        if (_##var##str == NULL) {                                            \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            JNU_ThrowNullPointerException((env), NULL);                       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            goto _##var##end;                                                 \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        }                                                                     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        var = JNU_GetStringPlatformChars((env), _##var##str, NULL);           \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        if (var == NULL) goto _##var##end;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
#define WITH_FIELD_PLATFORM_STRING(env, object, id, var)                      \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    WITH_PLATFORM_STRING(env,                                                 \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                         ((object == NULL)                                    \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                          ? NULL                                              \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                          : (*(env))->GetObjectField((env), (object), (id))), \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                         var)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
#define END_PLATFORM_STRING(env, var)                                         \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        JNU_ReleaseStringPlatformChars(env, _##var##str, var);                \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    _##var##end: ;                                                            \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    } else ((void)NULL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
   110
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
/* Macros for transforming Java Strings into native Unicode strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * Works analogously to WITH_PLATFORM_STRING.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
#define WITH_UNICODE_STRING(env, strexp, var)                                 \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    if (1) {                                                                  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        const jchar *var;                                                     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        jstring _##var##str = (strexp);                                       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        if (_##var##str == NULL) {                                            \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            JNU_ThrowNullPointerException((env), NULL);                       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            goto _##var##end;                                                 \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        }                                                                     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        var = (*(env))->GetStringChars((env), _##var##str, NULL);             \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        if (var == NULL) goto _##var##end;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
#define END_UNICODE_STRING(env, var)                                          \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        (*(env))->ReleaseStringChars(env, _##var##str, var);                  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    _##var##end: ;                                                            \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    } else ((void)NULL)