ChannelInitializerExtensions.java — netty Source File
Architecture documentation for ChannelInitializerExtensions.java, a java file in the netty codebase.
Entity Profile
Relationship Graph
Source Code
/*
* Copyright 2023 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.
*/
package io.netty.bootstrap;
import io.netty.util.internal.SystemPropertyUtil;
import io.netty.util.internal.logging.InternalLogger;
import io.netty.util.internal.logging.InternalLoggerFactory;
import java.lang.ref.WeakReference;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.ServiceLoader;
/**
* The configurable facade that decides what {@link ChannelInitializerExtension}s to load and where to find them.
*/
abstract class ChannelInitializerExtensions {
private static final InternalLogger logger = InternalLoggerFactory.getInstance(ChannelInitializerExtensions.class);
private static volatile ChannelInitializerExtensions implementation;
private ChannelInitializerExtensions() {
}
/**
* Get the configuration extensions, which is a no-op implementation by default,
* or a service-loading implementation if the {@code io.netty.bootstrap.extensions} system property is
* {@code serviceload}.
*/
static ChannelInitializerExtensions getExtensions() {
ChannelInitializerExtensions impl = implementation;
if (impl == null) {
synchronized (ChannelInitializerExtensions.class) {
impl = implementation;
if (impl != null) {
return impl;
}
String extensionProp = SystemPropertyUtil.get(ChannelInitializerExtension.EXTENSIONS_SYSTEM_PROPERTY);
logger.debug("-Dio.netty.bootstrap.extensions: {}", extensionProp);
if ("serviceload".equalsIgnoreCase(extensionProp)) {
impl = new ServiceLoadingExtensions(true);
} else if ("log".equalsIgnoreCase(extensionProp)) {
impl = new ServiceLoadingExtensions(false);
} else {
impl = new EmptyExtensions();
// ... (68 more lines)
Domain
Subdomains
Source
Frequently Asked Questions
What does ChannelInitializerExtensions.java do?
ChannelInitializerExtensions.java is a source file in the netty codebase, written in java. It belongs to the Buffer domain, Search subdomain.
Where is ChannelInitializerExtensions.java in the architecture?
ChannelInitializerExtensions.java is located at transport/src/main/java/io/netty/bootstrap/ChannelInitializerExtensions.java (domain: Buffer, subdomain: Search, directory: transport/src/main/java/io/netty/bootstrap).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free