Home / File/ netty_unix_limits.c — netty Source File

netty_unix_limits.c — netty Source File

Architecture documentation for netty_unix_limits.c, a c file in the netty codebase. 8 imports, 0 dependents.

File c NativeTransport 8 imports

Entity Profile

Dependency Diagram

graph LR
  e2be95ac_aaa8_ced5_66a9_a1e6249bee79["netty_unix_limits.c"]
  a7d65015_0594_5090_5390_74fe05dfdd3e["netty_unix_jni.h"]
  e2be95ac_aaa8_ced5_66a9_a1e6249bee79 --> a7d65015_0594_5090_5390_74fe05dfdd3e
  a664bf82_f13a_984a_5945_1d9b70e3f74c["netty_unix_limits.h"]
  e2be95ac_aaa8_ced5_66a9_a1e6249bee79 --> a664bf82_f13a_984a_5945_1d9b70e3f74c
  e811edce_3305_6244_830c_daac1b109259["netty_unix_util.h"]
  e2be95ac_aaa8_ced5_66a9_a1e6249bee79 --> e811edce_3305_6244_830c_daac1b109259
  89cfd132_669d_bc14_f916_80a38e3da8a5["netty_jni_util.h"]
  e2be95ac_aaa8_ced5_66a9_a1e6249bee79 --> 89cfd132_669d_bc14_f916_80a38e3da8a5
  8219beeb_c6fa_4d38_8fd5_18354def785a["limits.h"]
  e2be95ac_aaa8_ced5_66a9_a1e6249bee79 --> 8219beeb_c6fa_4d38_8fd5_18354def785a
  929444c6_83a0_72f2_6829_b63c20d5b933["stdio.h"]
  e2be95ac_aaa8_ced5_66a9_a1e6249bee79 --> 929444c6_83a0_72f2_6829_b63c20d5b933
  1cd991d2_f70c_b50c_8f2d_ba89cd654ec5["types.h"]
  e2be95ac_aaa8_ced5_66a9_a1e6249bee79 --> 1cd991d2_f70c_b50c_8f2d_ba89cd654ec5
  26653805_922e_c805_7cc7_2ce6bdab1620["un.h"]
  e2be95ac_aaa8_ced5_66a9_a1e6249bee79 --> 26653805_922e_c805_7cc7_2ce6bdab1620
  style e2be95ac_aaa8_ced5_66a9_a1e6249bee79 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

/*
 * Copyright 2016 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 <limits.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/un.h>
#include "netty_unix_jni.h"
#include "netty_unix_limits.h"
#include "netty_unix_util.h"
#include "netty_jni_util.h"

#define LIMITS_CLASSNAME "io/netty/channel/unix/LimitsStaticallyReferencedJniMethods"

// Define IOV_MAX if not found to limit the iov size on writev calls
// See https://github.com/netty/netty/issues/2647
#ifndef IOV_MAX
#define IOV_MAX 1024
#endif /* IOV_MAX */

// Define UIO_MAXIOV if not found
#ifndef UIO_MAXIOV
#define UIO_MAXIOV 1024
#endif /* UIO_MAXIOV */

// JNI Registered Methods Begin
static jlong netty_unix_limits_ssizeMax(JNIEnv* env, jclass clazz) {
    return SSIZE_MAX;
}

static jint netty_unix_limits_iovMax(JNIEnv* env, jclass clazz) {
    return IOV_MAX;
}

static jint netty_unix_limits_uioMaxIov(JNIEnv* env, jclass clazz) {
    return UIO_MAXIOV;
}

static jint netty_unix_limits_sizeOfjlong(JNIEnv* env, jclass clazz) {
    return sizeof(jlong);
}

static jint netty_unix_limits_udsSunPathSize(JNIEnv* env, jclass clazz) {
    struct sockaddr_un udsAddr;
    return sizeof(udsAddr.sun_path) / sizeof(udsAddr.sun_path[0]);
}
// JNI Registered Methods End

// JNI Method Registration Table Begin
static const JNINativeMethod statically_referenced_fixed_method_table[] = {
  { "ssizeMax", "()J", (void *) netty_unix_limits_ssizeMax },
  { "iovMax", "()I", (void *) netty_unix_limits_iovMax },
  { "uioMaxIov", "()I", (void *) netty_unix_limits_uioMaxIov },
  { "sizeOfjlong", "()I", (void *) netty_unix_limits_sizeOfjlong },
  { "udsSunPathSize", "()I", (void *) netty_unix_limits_udsSunPathSize }
};
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_limits_JNI_OnLoad(JNIEnv* env, const char* packagePrefix) {
    // We must register the statically referenced methods first!
    if (netty_jni_util_register_natives(env,
            packagePrefix,
            LIMITS_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_limits_JNI_OnUnLoad(JNIEnv* env, const char* packagePrefix) {
    netty_jni_util_unregister_natives(env, packagePrefix, LIMITS_CLASSNAME);
}

Dependencies

Frequently Asked Questions

What does netty_unix_limits.c do?
netty_unix_limits.c is a source file in the netty codebase, written in c. It belongs to the NativeTransport domain.
What does netty_unix_limits.c depend on?
netty_unix_limits.c imports 8 module(s): limits.h, netty_jni_util.h, netty_unix_jni.h, netty_unix_limits.h, netty_unix_util.h, stdio.h, types.h, un.h.
Where is netty_unix_limits.c in the architecture?
netty_unix_limits.c is located at transport-native-unix-common/src/main/c/netty_unix_limits.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