All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.servicetalk.http.netty.ReadOnlyHttpServerConfig Maven / Gradle / Ivy

The newest version!
/*
 * Copyright © 2018-2019 Apple Inc. and the ServiceTalk project authors
 *
 * Licensed 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
 *
 *   http://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.servicetalk.http.netty;

import io.servicetalk.http.api.HttpLifecycleObserver;
import io.servicetalk.tcp.netty.internal.ReadOnlyTcpServerConfig;

import javax.annotation.Nullable;

final class ReadOnlyHttpServerConfig {

    private final ReadOnlyTcpServerConfig tcpConfig;
    @Nullable
    private final H1ProtocolConfig h1Config;
    @Nullable
    private final H2ProtocolConfig h2Config;
    private final boolean allowDropTrailers;
    @Nullable
    private final HttpLifecycleObserver lifecycleObserver;

    ReadOnlyHttpServerConfig(final HttpServerConfig from) {
        final HttpConfig configs = from.httpConfig();
        tcpConfig = from.tcpConfig().asReadOnly();
        h1Config = configs.h1Config();
        h2Config = configs.h2Config();
        allowDropTrailers = configs.allowDropTrailersReadFromTransport();
        lifecycleObserver = from.lifecycleObserver();
    }

    ReadOnlyTcpServerConfig tcpConfig() {
        return tcpConfig;
    }

    @Nullable
    H1ProtocolConfig h1Config() {
        return h1Config;
    }

    @Nullable
    H2ProtocolConfig h2Config() {
        return h2Config;
    }

    boolean allowDropTrailersReadFromTransport() {
        return allowDropTrailers;
    }

    boolean isH2PriorKnowledge() {
        return h2Config != null && h1Config == null && !tcpConfig.isAlpnConfigured();
    }

    @Nullable
    HttpLifecycleObserver lifecycleObserver() {
        return lifecycleObserver;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy