netty_unix_buffer.c — netty Source File
Architecture documentation for netty_unix_buffer.c, a c file in the netty codebase. 4 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR e658b854_3b29_546c_94d2_176ab5009705["netty_unix_buffer.c"] a7d65015_0594_5090_5390_74fe05dfdd3e["netty_unix_jni.h"] e658b854_3b29_546c_94d2_176ab5009705 --> a7d65015_0594_5090_5390_74fe05dfdd3e e811edce_3305_6244_830c_daac1b109259["netty_unix_util.h"] e658b854_3b29_546c_94d2_176ab5009705 --> e811edce_3305_6244_830c_daac1b109259 318c55be_179c_d036_70d8_23ee244d3c83["netty_unix_buffer.h"] e658b854_3b29_546c_94d2_176ab5009705 --> 318c55be_179c_d036_70d8_23ee244d3c83 89cfd132_669d_bc14_f916_80a38e3da8a5["netty_jni_util.h"] e658b854_3b29_546c_94d2_176ab5009705 --> 89cfd132_669d_bc14_f916_80a38e3da8a5 style e658b854_3b29_546c_94d2_176ab5009705 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
/*
* Copyright 2018 The Netty Project
*
* The Netty Project licenses this file to you under the Apache License,
* version 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at:
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
#include "netty_unix_jni.h"
#include "netty_unix_util.h"
#include "netty_unix_buffer.h"
#include "netty_jni_util.h"
#define BUFFER_CLASSNAME "io/netty/channel/unix/Buffer"
// JNI Registered Methods Begin
static jlong netty_unix_buffer_memoryAddress0(JNIEnv* env, jclass clazz, jobject buffer) {
return (jlong) (*env)->GetDirectBufferAddress(env, buffer);
}
static jint netty_unix_buffer_addressSize0(JNIEnv* env, jclass clazz) {
return (jint) sizeof(int*);
}
static jobject netty_unix_buffer_wrapMemoryAddress(JNIEnv* env, jclass clazz, jlong address, jint capacity) {
return (*env)->NewDirectByteBuffer(env, (void*) address, capacity);
}
// JNI Registered Methods End
// JNI Method Registration Table Begin
static const JNINativeMethod statically_referenced_fixed_method_table[] = {
{ "memoryAddress0", "(Ljava/nio/ByteBuffer;)J", (void *) netty_unix_buffer_memoryAddress0 },
{ "addressSize0", "()I", (void *) netty_unix_buffer_addressSize0 },
{ "wrapMemoryAddress","(JI)Ljava/nio/ByteBuffer;", (void *) netty_unix_buffer_wrapMemoryAddress },
};
static const jint statically_referenced_fixed_method_table_size = sizeof(statically_referenced_fixed_method_table) / sizeof(statically_referenced_fixed_method_table[0]);
// JNI Method Registration Table End
// IMPORTANT: If you add any NETTY_JNI_UTIL_LOAD_CLASS or NETTY_JNI_UTIL_FIND_CLASS calls you also need to update
// Unix to reflect that.
jint netty_unix_buffer_JNI_OnLoad(JNIEnv* env, const char* packagePrefix) {
// We must register the statically referenced methods first!
if (netty_jni_util_register_natives(env,
packagePrefix,
BUFFER_CLASSNAME,
statically_referenced_fixed_method_table,
statically_referenced_fixed_method_table_size) != 0) {
return JNI_ERR;
}
return NETTY_JNI_UTIL_JNI_VERSION;
}
void netty_unix_buffer_JNI_OnUnLoad(JNIEnv* env, const char* packagePrefix) {
netty_jni_util_unregister_natives(env, packagePrefix, BUFFER_CLASSNAME);
}
Domain
Dependencies
- netty_jni_util.h
- netty_unix_buffer.h
- netty_unix_jni.h
- netty_unix_util.h
Source
Frequently Asked Questions
What does netty_unix_buffer.c do?
netty_unix_buffer.c is a source file in the netty codebase, written in c. It belongs to the NativeTransport domain.
What does netty_unix_buffer.c depend on?
netty_unix_buffer.c imports 4 module(s): netty_jni_util.h, netty_unix_buffer.h, netty_unix_jni.h, netty_unix_util.h.
Where is netty_unix_buffer.c in the architecture?
netty_unix_buffer.c is located at transport-native-unix-common/src/main/c/netty_unix_buffer.c (domain: NativeTransport, directory: transport-native-unix-common/src/main/c).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free