Java tutorial
/* * Copyright 2013 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 co.freeside.betamax.proxy.netty; import java.io.*; import java.util.Map; import co.freeside.betamax.message.AbstractMessage; import com.google.common.base.Joiner; import com.google.common.collect.*; import io.netty.buffer.*; import io.netty.handler.codec.http.*; import static io.netty.buffer.Unpooled.copiedBuffer; public abstract class NettyMessageAdapter<T extends HttpMessage> extends AbstractMessage { protected final T delegate; private final Multimap<String, String> headers = LinkedHashMultimap.create(); private final CompositeByteBuf body = Unpooled.compositeBuffer(); protected NettyMessageAdapter(T delegate) { this.delegate = delegate; copyHeaders(delegate); } /** * LittleProxy will use multiple request / response objects and sometimes * subsequent ones will contain additional headers. */ public void copyHeaders(HttpMessage httpMessage) { for (String name : httpMessage.headers().names()) { for (String value : httpMessage.headers().getAll(name)) { if (!headers.containsEntry(name, value)) { headers.put(name, value); } } } } public void append(HttpContent chunk) throws IOException { body.addComponent(copiedBuffer(chunk.content())); body.writerIndex(body.writerIndex() + chunk.content().readableBytes()); } @Override public Map<String, String> getHeaders() { ImmutableMap.Builder<String, String> builder = ImmutableMap.builder(); for (String name : headers.keySet()) { builder.put(name, getHeader(name)); } return builder.build(); } @Override public String getHeader(String name) { return Joiner.on(", ").join(headers.get(name)); } @Override public void addHeader(String name, String value) { headers.put(name, value); } @Override public boolean hasBody() { return body.capacity() > 0; } @Override protected InputStream getBodyAsStream() throws IOException { //Copy the body into a new ByteBuf so that it can be consumed multiple times. return new ByteBufInputStream(Unpooled.copiedBuffer(body)); } }