blob: 42f581aed6495d93f5b803549467db16fbbef78a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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
*
* 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 org.apache.shardingsphere.elasticjob.restful.pipeline;
import io.netty.channel.ChannelHandler.Sharable;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelInboundHandlerAdapter;
import io.netty.handler.codec.http.FullHttpResponse;
import io.netty.handler.codec.http.HttpHeaderNames;
import io.netty.handler.codec.http.HttpResponseStatus;
import io.netty.handler.codec.http.HttpUtil;
import io.netty.util.ReferenceCountUtil;
import org.apache.shardingsphere.elasticjob.restful.handler.HandleContext;
import org.apache.shardingsphere.elasticjob.restful.handler.Handler;
import org.apache.shardingsphere.elasticjob.restful.serializer.ResponseBodySerializer;
import org.apache.shardingsphere.elasticjob.restful.serializer.ResponseBodySerializerFactory;
import java.lang.reflect.InvocationTargetException;
/**
* The handler which actually executes handle method and creates HTTP response for responding.
* If an exception occurred when executing handle method, this handler would pass it to Handler named {@link ExceptionHandling}.
*/
@Sharable
public final class HandleMethodExecutor extends ChannelInboundHandlerAdapter {
@SuppressWarnings({"unchecked", "NullableProblems"})
@Override
public void channelRead(final ChannelHandlerContext ctx, final Object msg) throws Exception {
HandleContext<Handler> handleContext = (HandleContext<Handler>) msg;
try {
Handler handler = handleContext.getMappingContext().payload();
Object[] args = handleContext.getArgs();
Object handleResult = handler.execute(args);
FullHttpResponse httpResponse = handleContext.getHttpResponse();
if (null != handleResult) {
String mimeType = HttpUtil.getMimeType(handler.getProducing()).toString();
ResponseBodySerializer serializer = ResponseBodySerializerFactory.getResponseBodySerializer(mimeType);
byte[] bodyBytes = serializer.serialize(handleResult);
populateHttpResponse(httpResponse, handler.getProducing(), bodyBytes, handler.getHttpStatusCode());
} else {
populateHttpResponse(httpResponse, handler.getProducing(), new byte[0], handler.getHttpStatusCode());
}
ctx.writeAndFlush(httpResponse);
} finally {
ReferenceCountUtil.release(handleContext.getHttpRequest());
}
}
private void populateHttpResponse(final FullHttpResponse httpResponse, final String producingContentType, final byte[] bodyBytes, final int statusCode) {
HttpResponseStatus httpResponseStatus = HttpResponseStatus.valueOf(statusCode);
httpResponse.setStatus(httpResponseStatus);
httpResponse.headers().set(HttpHeaderNames.CONTENT_TYPE, producingContentType);
httpResponse.content().writeBytes(bodyBytes);
HttpUtil.setContentLength(httpResponse, httpResponse.content().readableBytes());
HttpUtil.setKeepAlive(httpResponse, true);
}
@Override
public void exceptionCaught(final ChannelHandlerContext ctx, final Throwable cause) {
if (cause instanceof InvocationTargetException) {
ctx.fireExceptionCaught(cause.getCause());
} else {
ctx.fireExceptionCaught(cause);
}
}
}