blob: 8f8188534e529c35321278232512da0a3513b969 [file] [log] [blame]
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +00001/*
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26#include "jni.h"
27#include "jni_util.h"
28#include "jvm.h"
29
30#include "io_util.h"
31#include "io_util_md.h"
32#include "java_io_FileOutputStream.h"
33
34#include <fcntl.h>
Piotr Jastrzebski3d438232015-05-05 09:57:00 +010035#include "JNIHelp.h"
36
37#define NATIVE_METHOD(className, functionName, signature) \
38{ #functionName, signature, (void*)(className ## _ ## functionName) }
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000039
40/*******************************************************************/
41/* BEGIN JNI ********* BEGIN JNI *********** BEGIN JNI ************/
42/*******************************************************************/
43
44jfieldID fos_fd; /* id for jobject 'fd' in java.io.FileOutputStream */
45
46/**************************************************************
47 * static methods to store field ID's in initializers
48 */
49
50JNIEXPORT void JNICALL
Piotr Jastrzebski3d438232015-05-05 09:57:00 +010051FileOutputStream_initIDs(JNIEnv *env, jclass fdClass) {
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000052 fos_fd = (*env)->GetFieldID(env, fdClass, "fd", "Ljava/io/FileDescriptor;");
53}
54
55/**************************************************************
56 * Output stream
57 */
58
59JNIEXPORT void JNICALL
Piotr Jastrzebski3d438232015-05-05 09:57:00 +010060FileOutputStream_open(JNIEnv *env, jobject this,
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000061 jstring path, jboolean append) {
62 fileOpen(env, this, path, fos_fd,
63 O_WRONLY | O_CREAT | (append ? O_APPEND : O_TRUNC));
64}
65
66JNIEXPORT void JNICALL
Piotr Jastrzebski3d438232015-05-05 09:57:00 +010067FileOutputStream_write(JNIEnv *env, jobject this, jint byte, jboolean append) {
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000068 writeSingle(env, this, byte, append, fos_fd);
69}
70
71JNIEXPORT void JNICALL
Piotr Jastrzebski3d438232015-05-05 09:57:00 +010072FileOutputStream_writeBytes(JNIEnv *env,
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000073 jobject this, jbyteArray bytes, jint off, jint len, jboolean append) {
74 writeBytes(env, this, bytes, off, len, append, fos_fd);
75}
76
77JNIEXPORT void JNICALL
Piotr Jastrzebski3d438232015-05-05 09:57:00 +010078FileOutputStream_close0(JNIEnv *env, jobject this) {
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000079 fileClose(env, this, fos_fd);
80}
Piotr Jastrzebski3d438232015-05-05 09:57:00 +010081
82static JNINativeMethod gMethods[] = {
83 NATIVE_METHOD(FileOutputStream, initIDs, "()V"),
84 NATIVE_METHOD(FileOutputStream, open, "(Ljava/lang/String;Z)V"),
85 NATIVE_METHOD(FileOutputStream, write, "(IZ)V"),
86 NATIVE_METHOD(FileOutputStream, writeBytes, "([BIIZ)V"),
87 NATIVE_METHOD(FileOutputStream, close0, "()V"),
88};
89
90void register_java_io_FileOutputStream(JNIEnv* env) {
91 jniRegisterNativeMethods(env, "java/io/FileOutputStream", gMethods, NELEM(gMethods));
92}