reactor.netty.http.server.logging.AccessLogArgProviderH3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reactor-netty-http Show documentation
Show all versions of reactor-netty-http Show documentation
HTTP functionality for the Reactor Netty library
/*
* Copyright (c) 2024 VMware, Inc. or its affiliates, All Rights Reserved.
*
* 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
*
* 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 reactor.netty.http.server.logging;
import io.netty.incubator.codec.http3.Http3HeadersFrame;
import reactor.util.annotation.Nullable;
import java.net.SocketAddress;
import java.util.Objects;
final class AccessLogArgProviderH3 extends AbstractAccessLogArgProvider {
static final String H3_PROTOCOL_NAME = "HTTP/3.0";
Http3HeadersFrame requestHeaders;
Http3HeadersFrame responseHeaders;
AccessLogArgProviderH3(@Nullable SocketAddress remoteAddress) {
super(remoteAddress);
}
AccessLogArgProviderH3 requestHeaders(Http3HeadersFrame requestHeaders) {
this.requestHeaders = Objects.requireNonNull(requestHeaders, "requestHeaders");
onRequest();
return get();
}
AccessLogArgProviderH3 responseHeaders(Http3HeadersFrame responseHeaders) {
this.responseHeaders = Objects.requireNonNull(responseHeaders, "responseHeaders");
return get();
}
@Override
@Nullable
public CharSequence status() {
return responseHeaders == null ? null : responseHeaders.headers().status();
}
@Override
@Nullable
public CharSequence requestHeader(CharSequence name) {
Objects.requireNonNull(name, "name");
return requestHeaders == null ? null : requestHeaders.headers().get(name);
}
@Override
@Nullable
public CharSequence responseHeader(CharSequence name) {
Objects.requireNonNull(name, "name");
return responseHeaders == null ? null : responseHeaders.headers().get(name);
}
@Override
void onRequest() {
super.onRequest();
if (requestHeaders != null) {
super.method = requestHeaders.headers().method();
super.uri = requestHeaders.headers().path();
super.protocol = H3_PROTOCOL_NAME;
}
}
@Override
void clear() {
super.clear();
this.requestHeaders = null;
this.responseHeaders = null;
}
@Override
public AccessLogArgProviderH3 get() {
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy