java_nio_VMDirectByteBuffer.c 4.54 KB
Newer Older
Tom Tromey committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
/* java_nio_VMDirectByteBuffer.c - Native methods for VMDirectByteBuffer
   Copyright (C) 2004, 2005  Free Software Foundation, Inc.

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
 
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */

#include <config.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>

#include <jni.h>
#include <jcl.h>

#include "java_nio_VMDirectByteBuffer.h"

JNIEXPORT jobject JNICALL
Java_java_nio_VMDirectByteBuffer_allocate
  (JNIEnv * env, jclass clazz __attribute__ ((__unused__)), jint capacity)
{
  void *buffer;

  buffer = malloc (capacity);

  if (buffer == NULL)
    {
      JCL_ThrowException (env, "java/lang/OutOfMemoryError",
			  "unable to allocate memory for direct byte buffer");
      return 0;
    }

63 64
  memset (buffer, 0, capacity);

Tom Tromey committed
65
  return JCL_NewRawDataObject (env, buffer);
Tom Tromey committed
66 67 68 69 70 71
}

JNIEXPORT void JNICALL
Java_java_nio_VMDirectByteBuffer_free
  (JNIEnv * env, jclass clazz __attribute__ ((__unused__)), jobject address)
{
Tom Tromey committed
72
  free (JCL_GetRawData (env, address));
Tom Tromey committed
73 74 75
}

JNIEXPORT jbyte JNICALL
Tom Tromey committed
76
Java_java_nio_VMDirectByteBuffer_get__Lgnu_classpath_Pointer_2I
Tom Tromey committed
77 78 79
  (JNIEnv * env, jclass clazz __attribute__ ((__unused__)),
   jobject address, jint index)
{
Tom Tromey committed
80
  return ((jbyte *) JCL_GetRawData (env, address))[index];
Tom Tromey committed
81 82 83
}

JNIEXPORT void JNICALL
Tom Tromey committed
84
Java_java_nio_VMDirectByteBuffer_put__Lgnu_classpath_Pointer_2IB
Tom Tromey committed
85 86 87
  (JNIEnv * env, jclass clazz __attribute__ ((__unused__)),
   jobject address, jint index, jbyte value)
{
Tom Tromey committed
88
  jbyte *pointer = (jbyte *) JCL_GetRawData (env, address) + index;
Tom Tromey committed
89 90 91 92
  *pointer = value;
}

JNIEXPORT void JNICALL
Tom Tromey committed
93
Java_java_nio_VMDirectByteBuffer_get__Lgnu_classpath_Pointer_2I_3BII
Tom Tromey committed
94 95 96
  (JNIEnv * env, jclass clazz __attribute__ ((__unused__)),
   jobject address, jint index, jbyteArray dst, jint dst_offset, jint dst_len)
{
Tom Tromey committed
97
  jbyte *src = (jbyte *) JCL_GetRawData (env, address) + index;
98 99
  jbyte *_dst = (*env)->GetByteArrayElements (env, dst, NULL);
  memcpy (_dst + dst_offset, src, dst_len);
Tom Tromey committed
100 101 102 103 104 105 106 107
  (*env)->ReleaseByteArrayElements (env, dst, _dst, 0);
}

JNIEXPORT void JNICALL
Java_java_nio_VMDirectByteBuffer_put__Lgnu_classpath_Pointer_2I_3BII
  (JNIEnv *env, jclass clazz __attribute__ ((__unused__)),
   jobject address, jint index, jbyteArray src, jint src_offset, jint src_len)
{
108 109 110
  jbyte *_src = (*env)->GetByteArrayElements (env, src, NULL);
  jbyte *dst = (jbyte *)JCL_GetRawData (env, address);
  memcpy (dst + index, _src + src_offset, src_len);
Tom Tromey committed
111
  (*env)->ReleaseByteArrayElements (env, src, _src, 0);
Tom Tromey committed
112 113 114 115 116 117 118
}

JNIEXPORT void JNICALL
Java_java_nio_VMDirectByteBuffer_shiftDown
  (JNIEnv * env, jclass clazz __attribute__ ((__unused__)),
   jobject address, jint dst_offset, jint src_offset, jint count)
{
Tom Tromey committed
119 120
  jbyte *dst = (jbyte *) JCL_GetRawData (env, address) + dst_offset;
  jbyte *src = (jbyte *) JCL_GetRawData (env, address) + src_offset;
Tom Tromey committed
121 122 123 124 125 126 127 128
  memmove (dst, src, count);
}

JNIEXPORT jobject JNICALL
Java_java_nio_VMDirectByteBuffer_adjustAddress
  (JNIEnv * env, jclass clazz __attribute__ ((__unused__)),
   jobject address, jint offset)
{
Tom Tromey committed
129
  return JCL_NewRawDataObject (env, (jbyte *) JCL_GetRawData (env, address) + offset);
Tom Tromey committed
130
}