org.glowroot.local.ui.TraceDetailHttpService Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2011-2015 the original author or 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 org.glowroot.local.ui;
import java.util.List;
import javax.annotation.Nullable;
import org.glowroot.shaded.netty.channel.ChannelFuture;
import org.glowroot.shaded.netty.channel.ChannelHandlerContext;
import org.glowroot.shaded.netty.handler.codec.http.DefaultFullHttpResponse;
import org.glowroot.shaded.netty.handler.codec.http.DefaultHttpResponse;
import org.glowroot.shaded.netty.handler.codec.http.FullHttpResponse;
import org.glowroot.shaded.netty.handler.codec.http.HttpHeaders;
import org.glowroot.shaded.netty.handler.codec.http.HttpHeaders.Names;
import org.glowroot.shaded.netty.handler.codec.http.HttpHeaders.Values;
import org.glowroot.shaded.netty.handler.codec.http.HttpRequest;
import org.glowroot.shaded.netty.handler.codec.http.HttpResponse;
import org.glowroot.shaded.netty.handler.codec.http.QueryStringDecoder;
import org.glowroot.shaded.slf4j.Logger;
import org.glowroot.shaded.slf4j.LoggerFactory;
import org.glowroot.common.ChunkSource;
import static org.glowroot.shaded.google.common.base.Preconditions.checkNotNull;
import static org.glowroot.shaded.netty.handler.codec.http.HttpResponseStatus.NOT_FOUND;
import static org.glowroot.shaded.netty.handler.codec.http.HttpResponseStatus.OK;
import static org.glowroot.shaded.netty.handler.codec.http.HttpVersion.HTTP_1_1;
class TraceDetailHttpService implements HttpService {
private static final Logger logger = LoggerFactory.getLogger(TraceDetailHttpService.class);
private final TraceCommonService traceCommonService;
TraceDetailHttpService(TraceCommonService traceCommonService) {
this.traceCommonService = traceCommonService;
}
@Override
public @Nullable FullHttpResponse handleRequest(ChannelHandlerContext ctx, HttpRequest request)
throws Exception {
QueryStringDecoder decoder = new QueryStringDecoder(request.getUri());
String path = decoder.path();
String traceComponent = path.substring(path.lastIndexOf('/') + 1);
List traceIds = decoder.parameters().get("trace-id");
checkNotNull(traceIds, "Missing trace id in query string: %s", request.getUri());
String traceId = traceIds.get(0);
logger.debug("handleRequest(): traceComponent={}, traceId={}", traceComponent, traceId);
ChunkSource chunkSource = getDetailChunkSource(traceComponent, traceId);
if (chunkSource == null) {
return new DefaultFullHttpResponse(HTTP_1_1, NOT_FOUND);
}
HttpResponse response = new DefaultHttpResponse(HTTP_1_1, OK);
response.headers().set(Names.TRANSFER_ENCODING, Values.CHUNKED);
response.headers().set(Names.CONTENT_TYPE, "application/json; charset=UTF-8");
boolean keepAlive = HttpHeaders.isKeepAlive(request);
if (keepAlive && !request.getProtocolVersion().isKeepAliveDefault()) {
response.headers().set(Names.CONNECTION, Values.KEEP_ALIVE);
}
HttpServices.preventCaching(response);
ctx.write(response);
ChannelFuture future = ctx.write(ChunkedInputs.from(chunkSource));
HttpServices.addErrorListener(future);
if (!keepAlive) {
HttpServices.addCloseListener(future);
}
// return null to indicate streaming
return null;
}
private @Nullable ChunkSource getDetailChunkSource(String traceComponent, String traceId)
throws Exception {
if (traceComponent.equals("entries")) {
return traceCommonService.getEntries(traceId);
}
if (traceComponent.equals("profile")) {
return traceCommonService.getProfile(traceId);
}
throw new IllegalStateException("Unexpected trace component: " + traceComponent);
}
}