reactor.ipc.netty.http.HttpOperations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reactor-netty Show documentation
Show all versions of reactor-netty Show documentation
Reactive Streams Netty driver
/*
* Copyright (c) 2011-2018 Pivotal Software Inc, 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
*
* 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 reactor.ipc.netty.http;
import java.io.IOException;
import java.nio.channels.FileChannel;
import java.nio.file.Path;
import java.util.Objects;
import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
import java.util.function.BiFunction;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufHolder;
import io.netty.channel.Channel;
import io.netty.channel.ChannelHandler;
import io.netty.channel.ChannelInboundHandler;
import io.netty.channel.CombinedChannelDuplexHandler;
import io.netty.handler.codec.ByteToMessageCodec;
import io.netty.handler.codec.ByteToMessageDecoder;
import io.netty.handler.codec.http.FullHttpMessage;
import io.netty.handler.codec.http.HttpChunkedInput;
import io.netty.handler.codec.http.HttpContent;
import io.netty.handler.codec.http.HttpHeaderNames;
import io.netty.handler.codec.http.HttpMessage;
import io.netty.handler.codec.http.HttpUtil;
import io.netty.handler.codec.http.LastHttpContent;
import io.netty.handler.stream.ChunkedInput;
import io.netty.handler.stream.ChunkedNioFile;
import org.reactivestreams.Publisher;
import reactor.core.Exceptions;
import reactor.core.publisher.Mono;
import reactor.ipc.netty.FutureMono;
import reactor.ipc.netty.NettyContext;
import reactor.ipc.netty.NettyInbound;
import reactor.ipc.netty.NettyOutbound;
import reactor.ipc.netty.NettyPipeline;
import reactor.ipc.netty.channel.ChannelOperations;
import reactor.ipc.netty.channel.ContextHandler;
import reactor.ipc.netty.channel.data.AbstractFileChunkedStrategy;
import reactor.ipc.netty.channel.data.FileChunkedStrategy;
/**
* An HTTP ready {@link ChannelOperations} with state management for status and headers
* (first HTTP response packet).
*
* @author Stephane Maldini
*/
public abstract class HttpOperations
extends ChannelOperations implements HttpInfos {
volatile int statusAndHeadersSent = 0;
static final int READY = 0;
static final int HEADERS_SENT = 1;
static final int BODY_SENT = 2;
protected HttpOperations(Channel ioChannel,
HttpOperations replaced) {
super(ioChannel, replaced);
this.statusAndHeadersSent = replaced.statusAndHeadersSent;
}
protected HttpOperations(Channel ioChannel,
BiFunction super INBOUND, ? super OUTBOUND, ? extends Publisher> handler,
ContextHandler> context) {
super(ioChannel, handler, context);
//reset channel to manual read if re-used
ioChannel.config().setAutoRead(false);
}
/**
* Has headers been sent
*
* @return true if headers have been sent
*/
public final boolean hasSentHeaders() {
return statusAndHeadersSent != READY;
}
@Override
public boolean isWebsocket() {
return false;
}
//@Override
//TODO document this
public NettyOutbound sendHeaders() {
if (hasSentHeaders()) {
return this;
}
return then(Mono.empty());
}
@Override
public Mono then() {
if (hasSentHeaders()) {
return Mono.empty();
}
return FutureMono.deferFuture(() -> {
if (markSentHeaders()) {
HttpMessage msg;
if (HttpUtil.isContentLengthSet(outboundHttpMessage())) {
outboundHttpMessage().headers()
.remove(HttpHeaderNames.TRANSFER_ENCODING);
if (HttpUtil.getContentLength(outboundHttpMessage(), 0) == 0) {
msg = newFullEmptyBodyMessage();
}
else {
msg = outboundHttpMessage();
}
}
else {
msg = outboundHttpMessage();
}
preSendHeadersAndStatus();
return channel().writeAndFlush(msg);
}
else {
return channel().newSucceededFuture();
}
});
}
protected abstract void preSendHeadersAndStatus();
protected abstract HttpMessage newFullEmptyBodyMessage();
@Override
public final NettyOutbound sendFile(Path file, long position, long count) {
Objects.requireNonNull(file);
if (hasSentHeaders()) {
return super.sendFile(file, position, count);
}
if (!HttpUtil.isTransferEncodingChunked(outboundHttpMessage()) && !HttpUtil.isContentLengthSet(
outboundHttpMessage()) && count < Integer.MAX_VALUE) {
outboundHttpMessage().headers()
.setInt(HttpHeaderNames.CONTENT_LENGTH, (int) count);
}
else if (!HttpUtil.isContentLengthSet(outboundHttpMessage())) {
outboundHttpMessage().headers()
.remove(HttpHeaderNames.CONTENT_LENGTH)
.remove(HttpHeaderNames.TRANSFER_ENCODING);
HttpUtil.setTransferEncodingChunked(outboundHttpMessage(), true);
}
return super.sendFile(file, position, count);
}
@Override
public FileChunkedStrategy getFileChunkedStrategy() {
return new AbstractFileChunkedStrategy() {
@Override
public ChunkedInput chunkFile(FileChannel fileChannel) {
try {
//TODO tune the chunk size
return new HttpChunkedInput(new ChunkedNioFile(fileChannel, 1024));
}
catch (IOException e) {
throw Exceptions.propagate(e);
}
}
@Override
public void afterWrite(NettyContext context) {
markSentBody();
}
};
}
@Override
public String toString() {
if (isWebsocket()) {
return "ws:" + uri();
}
return method().name() + ":" + uri();
}
@Override
public HttpOperations addHandler(String name, ChannelHandler handler) {
super.addHandler(name, handler);
if(channel().pipeline().context(handler) == null){
return this;
}
autoAddHttpExtractor(this, name, handler);
return this;
}
static void autoAddHttpExtractor(NettyContext c, String name, ChannelHandler
handler){
if (handler instanceof ByteToMessageDecoder
|| handler instanceof ByteToMessageCodec
|| handler instanceof CombinedChannelDuplexHandler) {
String extractorName = name+"$extractor";
if(c.channel().pipeline().context(extractorName) != null){
return;
}
c.channel().pipeline().addBefore(name, extractorName, HTTP_EXTRACTOR);
if(NettyContext.isPersistent(c.channel())){
c.onClose(() -> c.removeHandler(extractorName));
}
}
}
/**
* Mark the headers sent
*
* @return true if marked for the first time
*/
protected final boolean markSentHeaders() {
return HTTP_STATE.compareAndSet(this, READY, HEADERS_SENT);
}
/**
* Mark the body sent
*
* @return true if marked for the first time
*/
protected final boolean markSentBody() {
return HTTP_STATE.compareAndSet(this, HEADERS_SENT, BODY_SENT);
}
/**
* Mark the headers and body sent
*
* @return true if marked for the first time
*/
protected final boolean markSentHeaderAndBody() {
return HTTP_STATE.compareAndSet(this, READY, BODY_SENT);
}
/**
* Outbound Netty HttpMessage
*
* @return Outbound Netty HttpMessage
*/
protected abstract HttpMessage outboundHttpMessage();
final static AtomicIntegerFieldUpdater HTTP_STATE =
AtomicIntegerFieldUpdater.newUpdater(HttpOperations.class,
"statusAndHeadersSent");
final static ChannelInboundHandler HTTP_EXTRACTOR = NettyPipeline.inboundHandler(
(ctx, msg) -> {
if (msg instanceof ByteBufHolder) {
ByteBuf bb = ((ByteBufHolder) msg).content();
if(msg instanceof FullHttpMessage){
// TODO convert into 2 messages if FullHttpMessage
ctx.fireChannelRead(msg);
}
else {
ctx.fireChannelRead(bb);
if (msg instanceof LastHttpContent) {
ctx.fireChannelRead(LastHttpContent.EMPTY_LAST_CONTENT);
}
}
}
else {
ctx.fireChannelRead(msg);
}
}
);
}