Fix most inspector warnings
Motivation: It's good to minimize potentially broken windows. Modifications: Fix most inspector warnings from our profile Update IntObjectHashMap Result: Cleaner code
This commit is contained in:
parent
7a05a617f6
commit
d0912f2709
@ -1,65 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
~ Copyright 2012 The Netty Project
|
||||
~
|
||||
~ The Netty Project 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.
|
||||
-->
|
||||
<FindBugsFilter>
|
||||
<!-- Tests -->
|
||||
<Match>
|
||||
<Class name="~.*Test(\$[^\$]+)*"/>
|
||||
</Match>
|
||||
<!-- Generated code -->
|
||||
<Match>
|
||||
<Class name="~.*\.LocalTimeProtocol(\$[^\$]+)*"/>
|
||||
</Match>
|
||||
<!-- Noise -->
|
||||
<Match>
|
||||
<Bug code="Co,SF"
|
||||
category="I18N"
|
||||
pattern="REC_CATCH_EXCEPTION,UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR,DB_DUPLICATE_SWITCH_CLAUSES,VO_VOLATILE_REFERENCE_TO_ARRAY" />
|
||||
</Match>
|
||||
<!-- Known false positives -->
|
||||
<Match>
|
||||
<Class name="~.*Channel(Group)?Future"/>
|
||||
<Method name="~await.*"/>
|
||||
<Bug pattern="PS_PUBLIC_SEMAPHORES"/>
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="~.*SelectorLoop"/>
|
||||
<Method name="run"/>
|
||||
<Bug code="ESync"/>
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="~.*Channel"/>
|
||||
<Or>
|
||||
<Method name="setClosed"/>
|
||||
<Method name="setInterestOpsNow"/>
|
||||
</Or>
|
||||
<Bug pattern="USM_USELESS_SUBCLASS_METHOD"/>
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="~.*HttpTunnelingChannelHandler"/>
|
||||
<Method name="~await.*"/>
|
||||
<Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE,RV_RETURN_VALUE_IGNORED2"/>
|
||||
</Match>
|
||||
<!-- Known issues that don't matter -->
|
||||
<Match>
|
||||
<Or>
|
||||
<Class name="~.*\.util\.internal\.Concurrent[A-Za-z]*HashMap(\$[^\$]+)*"/>
|
||||
<Class name="~.*\.util\.internal\..*TransferQueue(\$[^\$]+)*"/>
|
||||
<Class name="~.*\.util\.internal\.MapBackedSet"/>
|
||||
</Or>
|
||||
<Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED,SE_BAD_FIELD"/>
|
||||
</Match>
|
||||
</FindBugsFilter>
|
@ -37,7 +37,6 @@ public abstract class AbstractReferenceCountedByteBuf extends AbstractByteBuf {
|
||||
refCntUpdater = updater;
|
||||
}
|
||||
|
||||
@SuppressWarnings("FieldMayBeFinal")
|
||||
private volatile int refCnt = 1;
|
||||
|
||||
protected AbstractReferenceCountedByteBuf(int maxCapacity) {
|
||||
|
@ -189,7 +189,7 @@ public class ByteBufInputStream extends InputStream implements DataInput {
|
||||
|
||||
loop: while (true) {
|
||||
if (!buffer.isReadable()) {
|
||||
return (lineBuf.length() > 0) ? lineBuf.toString() : null;
|
||||
return lineBuf.length() > 0 ? lineBuf.toString() : null;
|
||||
}
|
||||
|
||||
int c = buffer.readUnsignedByte();
|
||||
@ -198,7 +198,7 @@ public class ByteBufInputStream extends InputStream implements DataInput {
|
||||
break loop;
|
||||
|
||||
case '\r':
|
||||
if (buffer.isReadable() && buffer.getUnsignedByte(buffer.readerIndex()) == '\n') {
|
||||
if (buffer.isReadable() && (char) buffer.getUnsignedByte(buffer.readerIndex()) == '\n') {
|
||||
buffer.skipBytes(1);
|
||||
}
|
||||
break loop;
|
||||
|
@ -289,7 +289,6 @@ public class CompositeByteBuf extends AbstractReferenceCountedByteBuf {
|
||||
ByteBuf consolidated = allocBuffer(capacity);
|
||||
|
||||
// We're not using foreach to avoid creating an iterator.
|
||||
// noinspection ForLoopReplaceableByForEach
|
||||
for (int i = 0; i < numComponents; i ++) {
|
||||
Component c = components.get(i);
|
||||
ByteBuf b = c.buf;
|
||||
@ -1098,7 +1097,6 @@ public class CompositeByteBuf extends AbstractReferenceCountedByteBuf {
|
||||
} else {
|
||||
int count = 0;
|
||||
int componentsCount = components.size();
|
||||
//noinspection ForLoopReplaceableByForEach
|
||||
for (int i = 0; i < componentsCount; i++) {
|
||||
Component c = components.get(i);
|
||||
count += c.buf.nioBufferCount();
|
||||
|
@ -41,7 +41,7 @@ final class FixedCompositeByteBuf extends AbstractReferenceCountedByteBuf {
|
||||
private final Object[] buffers;
|
||||
private final boolean direct;
|
||||
|
||||
public FixedCompositeByteBuf(ByteBufAllocator allocator, ByteBuf... buffers) {
|
||||
FixedCompositeByteBuf(ByteBufAllocator allocator, ByteBuf... buffers) {
|
||||
super(Integer.MAX_VALUE);
|
||||
if (buffers.length == 0) {
|
||||
this.buffers = EMPTY;
|
||||
@ -204,7 +204,6 @@ final class FixedCompositeByteBuf extends AbstractReferenceCountedByteBuf {
|
||||
|
||||
private Component findComponent(int index) {
|
||||
int readable = 0;
|
||||
//noinspection ForLoopReplaceableByForEach
|
||||
for (int i = 0 ; i < buffers.length; i++) {
|
||||
Component comp = null;
|
||||
ByteBuf b;
|
||||
@ -545,7 +544,6 @@ final class FixedCompositeByteBuf extends AbstractReferenceCountedByteBuf {
|
||||
|
||||
@Override
|
||||
protected void deallocate() {
|
||||
//noinspection ForLoopReplaceableByForEach
|
||||
for (int i = 0; i < buffers.length; i++) {
|
||||
buffer(i).release();
|
||||
}
|
||||
|
@ -147,7 +147,6 @@ abstract class PooledByteBuf<T> extends AbstractReferenceCountedByteBuf {
|
||||
}
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
private void recycle() {
|
||||
recyclerHandle.recycle(this);
|
||||
}
|
||||
|
@ -308,7 +308,7 @@ final class PooledDirectByteBuf extends PooledByteBuf<ByteBuffer> {
|
||||
tmpBuf.clear().position(index).limit(index + length);
|
||||
try {
|
||||
return in.read(tmpBuf);
|
||||
} catch (ClosedChannelException e) {
|
||||
} catch (ClosedChannelException ignored) {
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
@ -232,7 +232,7 @@ final class PooledHeapByteBuf extends PooledByteBuf<byte[]> {
|
||||
index = idx(index);
|
||||
try {
|
||||
return in.read((ByteBuffer) internalNioBuffer().clear().position(index).limit(index + length));
|
||||
} catch (ClosedChannelException e) {
|
||||
} catch (ClosedChannelException ignored) {
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
@ -309,7 +309,7 @@ final class PooledUnsafeDirectByteBuf extends PooledByteBuf<ByteBuffer> {
|
||||
tmpBuf.clear().position(index).limit(index + length);
|
||||
try {
|
||||
return in.read(tmpBuf);
|
||||
} catch (ClosedChannelException e) {
|
||||
} catch (ClosedChannelException ignored) {
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ class ReadOnlyByteBufferBuf extends AbstractReferenceCountedByteBuf {
|
||||
private final ByteBufAllocator allocator;
|
||||
private ByteBuffer tmpNioBuf;
|
||||
|
||||
public ReadOnlyByteBufferBuf(ByteBufAllocator allocator, ByteBuffer buffer) {
|
||||
ReadOnlyByteBufferBuf(ByteBufAllocator allocator, ByteBuffer buffer) {
|
||||
super(buffer.remaining());
|
||||
if (!buffer.isReadOnly()) {
|
||||
throw new IllegalArgumentException("must be a readonly buffer: " + StringUtil.simpleClassName(buffer));
|
||||
@ -276,7 +276,7 @@ class ReadOnlyByteBufferBuf extends AbstractReferenceCountedByteBuf {
|
||||
ByteBuffer src;
|
||||
try {
|
||||
src = (ByteBuffer) internalNioBuffer().clear().position(index).limit(index + length);
|
||||
} catch (IllegalArgumentException e) {
|
||||
} catch (IllegalArgumentException ignored) {
|
||||
throw new IndexOutOfBoundsException("Too many bytes to read - Need " + (index + length));
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,7 @@ final class ReadOnlyUnsafeDirectByteBuf extends ReadOnlyByteBufferBuf {
|
||||
private static final boolean NATIVE_ORDER = ByteOrder.nativeOrder() == ByteOrder.BIG_ENDIAN;
|
||||
private final long memoryAddress;
|
||||
|
||||
public ReadOnlyUnsafeDirectByteBuf(ByteBufAllocator allocator, ByteBuffer buffer) {
|
||||
ReadOnlyUnsafeDirectByteBuf(ByteBufAllocator allocator, ByteBuffer buffer) {
|
||||
super(allocator, buffer);
|
||||
memoryAddress = PlatformDependent.directBufferAddress(buffer);
|
||||
}
|
||||
|
@ -39,7 +39,7 @@ public class SlicedByteBuf extends AbstractDerivedByteBuf {
|
||||
public SlicedByteBuf(ByteBuf buffer, int index, int length) {
|
||||
super(length);
|
||||
if (index < 0 || index > buffer.capacity() - length) {
|
||||
throw new IndexOutOfBoundsException(buffer.toString() + ".slice(" + index + ", " + length + ')');
|
||||
throw new IndexOutOfBoundsException(buffer + ".slice(" + index + ", " + length + ')');
|
||||
}
|
||||
|
||||
if (buffer instanceof SlicedByteBuf) {
|
||||
|
@ -535,7 +535,7 @@ public class UnpooledDirectByteBuf extends AbstractReferenceCountedByteBuf {
|
||||
tmpBuf.clear().position(index).limit(index + length);
|
||||
try {
|
||||
return in.read(tmpNioBuf);
|
||||
} catch (ClosedChannelException e) {
|
||||
} catch (ClosedChannelException ignored) {
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
@ -556,7 +556,7 @@ public class UnpooledDirectByteBuf extends AbstractReferenceCountedByteBuf {
|
||||
ByteBuffer src;
|
||||
try {
|
||||
src = (ByteBuffer) buffer.duplicate().clear().position(index).limit(index + length);
|
||||
} catch (IllegalArgumentException e) {
|
||||
} catch (IllegalArgumentException ignored) {
|
||||
throw new IndexOutOfBoundsException("Too many bytes to read - Need " + (index + length));
|
||||
}
|
||||
|
||||
|
@ -254,7 +254,7 @@ public class UnpooledHeapByteBuf extends AbstractReferenceCountedByteBuf {
|
||||
ensureAccessible();
|
||||
try {
|
||||
return in.read((ByteBuffer) internalNioBuffer().clear().position(index).limit(index + length));
|
||||
} catch (ClosedChannelException e) {
|
||||
} catch (ClosedChannelException ignored) {
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
@ -444,7 +444,7 @@ public class UnpooledUnsafeDirectByteBuf extends AbstractReferenceCountedByteBuf
|
||||
tmpBuf.clear().position(index).limit(index + length);
|
||||
try {
|
||||
return in.read(tmpBuf);
|
||||
} catch (ClosedChannelException e) {
|
||||
} catch (ClosedChannelException ignored) {
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
@ -773,6 +773,7 @@ public class WrappedByteBuf extends ByteBuf {
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("EqualsWhichDoesntCheckParameterClass")
|
||||
public boolean equals(Object obj) {
|
||||
return buf.equals(obj);
|
||||
}
|
||||
|
@ -18,10 +18,8 @@ package io.netty.buffer;
|
||||
import io.netty.util.CharsetUtil;
|
||||
import io.netty.util.IllegalReferenceCountException;
|
||||
import org.junit.After;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Assume;
|
||||
import org.junit.Before;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.io.ByteArrayInputStream;
|
||||
@ -1477,6 +1475,7 @@ public abstract class AbstractByteBufTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
@SuppressWarnings("ObjectEqualsNull")
|
||||
public void testEquals() {
|
||||
assertFalse(buffer.equals(null));
|
||||
assertFalse(buffer.equals(new Object()));
|
||||
@ -1728,7 +1727,6 @@ public abstract class AbstractByteBufTest {
|
||||
assertThat(lastIndex.get(), is(CAPACITY / 4));
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
public void testInternalNioBuffer() {
|
||||
testInternalNioBuffer(128);
|
||||
@ -1796,7 +1794,7 @@ public abstract class AbstractByteBufTest {
|
||||
return;
|
||||
}
|
||||
}
|
||||
Assert.assertArrayEquals(bytes, channel.writtenBytes());
|
||||
assertArrayEquals(bytes, channel.writtenBytes());
|
||||
latch.countDown();
|
||||
}
|
||||
try {
|
||||
@ -1850,7 +1848,7 @@ public abstract class AbstractByteBufTest {
|
||||
return;
|
||||
}
|
||||
}
|
||||
Assert.assertArrayEquals(bytes, out.toByteArray());
|
||||
assertArrayEquals(bytes, out.toByteArray());
|
||||
latch.countDown();
|
||||
}
|
||||
try {
|
||||
@ -1899,11 +1897,11 @@ public abstract class AbstractByteBufTest {
|
||||
byte[] array = new byte[8];
|
||||
buf.readBytes(array);
|
||||
|
||||
Assert.assertArrayEquals(bytes, array);
|
||||
assertArrayEquals(bytes, array);
|
||||
|
||||
Arrays.fill(array, (byte) 0);
|
||||
buf.getBytes(0, array);
|
||||
Assert.assertArrayEquals(bytes, array);
|
||||
assertArrayEquals(bytes, array);
|
||||
|
||||
latch.countDown();
|
||||
}
|
||||
@ -1929,6 +1927,7 @@ public abstract class AbstractByteBufTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
@SuppressWarnings("ForLoopThatDoesntUseLoopVariable")
|
||||
public void testNioBufferExposeOnlyRegion() {
|
||||
final ByteBuf buffer = releaseLater(newBuffer(8));
|
||||
byte[] data = new byte[8];
|
||||
|
@ -71,8 +71,7 @@ public abstract class AbstractCompositeByteBufTest extends AbstractByteBufTest {
|
||||
buffers.add(EMPTY_BUFFER);
|
||||
}
|
||||
|
||||
buffer = Unpooled.wrappedBuffer(
|
||||
Integer.MAX_VALUE, buffers.toArray(new ByteBuf[buffers.size()])).order(order);
|
||||
buffer = wrappedBuffer(Integer.MAX_VALUE, buffers.toArray(new ByteBuf[buffers.size()])).order(order);
|
||||
|
||||
// Truncate to the requested capacity.
|
||||
buffer.capacity(length);
|
||||
@ -802,7 +801,7 @@ public abstract class AbstractCompositeByteBufTest extends AbstractByteBufTest {
|
||||
CompositeByteBuf cbuf = releaseLater(compositeBuffer());
|
||||
int len = 8 * 4;
|
||||
for (int i = 0; i < len; i += 4) {
|
||||
ByteBuf buf = Unpooled.buffer().writeInt(i);
|
||||
ByteBuf buf = buffer().writeInt(i);
|
||||
cbuf.capacity(cbuf.writerIndex()).addComponent(buf).writerIndex(i + 4);
|
||||
}
|
||||
cbuf.writeByte(1);
|
||||
|
@ -15,7 +15,6 @@
|
||||
*/
|
||||
package io.netty.buffer;
|
||||
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
@ -44,14 +43,6 @@ public class DuplicateByteBufTest extends AbstractByteBufTest {
|
||||
new DuplicatedByteBuf(null);
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
// Test which shows bug
|
||||
// https://github.com/netty/netty/issues/1802
|
||||
public void testInternalNioBuffer() {
|
||||
super.testInternalNioBuffer();
|
||||
}
|
||||
|
||||
// See https://github.com/netty/netty/issues/1800
|
||||
@Test
|
||||
public void testIncreaseCapacityWrapped() {
|
||||
|
@ -46,15 +46,15 @@ public class ReadOnlyByteBufTest {
|
||||
@Test
|
||||
public void testUnwrap() {
|
||||
ByteBuf buf = buffer(1);
|
||||
assertSame(buf, Unpooled.unmodifiableBuffer(buf).unwrap());
|
||||
assertSame(buf, unmodifiableBuffer(buf).unwrap());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void shouldHaveSameByteOrder() {
|
||||
ByteBuf buf = buffer(1);
|
||||
assertSame(BIG_ENDIAN, Unpooled.unmodifiableBuffer(buf).order());
|
||||
assertSame(BIG_ENDIAN, unmodifiableBuffer(buf).order());
|
||||
buf = buf.order(LITTLE_ENDIAN);
|
||||
assertSame(LITTLE_ENDIAN, Unpooled.unmodifiableBuffer(buf).order());
|
||||
assertSame(LITTLE_ENDIAN, unmodifiableBuffer(buf).order());
|
||||
}
|
||||
|
||||
@Test
|
||||
|
@ -445,8 +445,8 @@ public class UnpooledTest {
|
||||
assertEquals(4, buffer.readInt());
|
||||
assertFalse(buffer.isReadable());
|
||||
|
||||
assertEquals(0, Unpooled.copyInt(null).capacity());
|
||||
assertEquals(0, Unpooled.copyInt(EMPTY_INTS).capacity());
|
||||
assertEquals(0, copyInt(null).capacity());
|
||||
assertEquals(0, copyInt(EMPTY_INTS).capacity());
|
||||
}
|
||||
|
||||
@Test
|
||||
@ -465,8 +465,8 @@ public class UnpooledTest {
|
||||
assertEquals(4, buffer.readShort());
|
||||
assertFalse(buffer.isReadable());
|
||||
|
||||
assertEquals(0, Unpooled.copyShort((short[]) null).capacity());
|
||||
assertEquals(0, Unpooled.copyShort(EMPTY_SHORTS).capacity());
|
||||
assertEquals(0, copyShort((short[]) null).capacity());
|
||||
assertEquals(0, copyShort(EMPTY_SHORTS).capacity());
|
||||
}
|
||||
|
||||
@Test
|
||||
@ -477,8 +477,8 @@ public class UnpooledTest {
|
||||
assertEquals(4, buffer.readShort());
|
||||
assertFalse(buffer.isReadable());
|
||||
|
||||
assertEquals(0, Unpooled.copyShort((int[]) null).capacity());
|
||||
assertEquals(0, Unpooled.copyShort(EMPTY_INTS).capacity());
|
||||
assertEquals(0, copyShort((int[]) null).capacity());
|
||||
assertEquals(0, copyShort(EMPTY_INTS).capacity());
|
||||
}
|
||||
|
||||
@Test
|
||||
@ -497,8 +497,8 @@ public class UnpooledTest {
|
||||
assertEquals(4, buffer.readMedium());
|
||||
assertFalse(buffer.isReadable());
|
||||
|
||||
assertEquals(0, Unpooled.copyMedium(null).capacity());
|
||||
assertEquals(0, Unpooled.copyMedium(EMPTY_INTS).capacity());
|
||||
assertEquals(0, copyMedium(null).capacity());
|
||||
assertEquals(0, copyMedium(EMPTY_INTS).capacity());
|
||||
}
|
||||
|
||||
@Test
|
||||
@ -517,8 +517,8 @@ public class UnpooledTest {
|
||||
assertEquals(4, buffer.readLong());
|
||||
assertFalse(buffer.isReadable());
|
||||
|
||||
assertEquals(0, Unpooled.copyLong(null).capacity());
|
||||
assertEquals(0, Unpooled.copyLong(EMPTY_LONGS).capacity());
|
||||
assertEquals(0, copyLong(null).capacity());
|
||||
assertEquals(0, copyLong(EMPTY_LONGS).capacity());
|
||||
}
|
||||
|
||||
@Test
|
||||
@ -537,8 +537,8 @@ public class UnpooledTest {
|
||||
assertEquals(4, buffer.readFloat(), 0.01);
|
||||
assertFalse(buffer.isReadable());
|
||||
|
||||
assertEquals(0, Unpooled.copyFloat(null).capacity());
|
||||
assertEquals(0, Unpooled.copyFloat(EMPTY_FLOATS).capacity());
|
||||
assertEquals(0, copyFloat(null).capacity());
|
||||
assertEquals(0, copyFloat(EMPTY_FLOATS).capacity());
|
||||
}
|
||||
|
||||
@Test
|
||||
@ -557,8 +557,8 @@ public class UnpooledTest {
|
||||
assertEquals(4, buffer.readDouble(), 0.01);
|
||||
assertFalse(buffer.isReadable());
|
||||
|
||||
assertEquals(0, Unpooled.copyDouble(null).capacity());
|
||||
assertEquals(0, Unpooled.copyDouble(EMPTY_DOUBLES).capacity());
|
||||
assertEquals(0, copyDouble(null).capacity());
|
||||
assertEquals(0, copyDouble(EMPTY_DOUBLES).capacity());
|
||||
}
|
||||
|
||||
@Test
|
||||
@ -569,8 +569,8 @@ public class UnpooledTest {
|
||||
assertFalse(buffer.readBoolean());
|
||||
assertFalse(buffer.isReadable());
|
||||
|
||||
assertEquals(0, Unpooled.copyBoolean(null).capacity());
|
||||
assertEquals(0, Unpooled.copyBoolean(EMPTY_BOOLEANS).capacity());
|
||||
assertEquals(0, copyBoolean(null).capacity());
|
||||
assertEquals(0, copyBoolean(EMPTY_BOOLEANS).capacity());
|
||||
}
|
||||
|
||||
@Test
|
||||
|
@ -20,6 +20,8 @@ import io.netty.handler.codec.DecoderException;
|
||||
|
||||
public final class DnsResponseException extends DecoderException {
|
||||
|
||||
private static final long serialVersionUID = -8519053051363525286L;
|
||||
|
||||
private final DnsResponseCode code;
|
||||
|
||||
public DnsResponseException(DnsResponseCode code) {
|
||||
|
@ -124,6 +124,7 @@ public class HttpContentCompressor extends HttpContentEncoder {
|
||||
wrapper, compressionLevel, windowBits, memLevel)));
|
||||
}
|
||||
|
||||
@SuppressWarnings("FloatingPointEquality")
|
||||
protected ZlibWrapper determineWrapper(String acceptEncoding) {
|
||||
float starQ = -1.0f;
|
||||
float gzipQ = -1.0f;
|
||||
|
@ -1203,6 +1203,7 @@ public abstract class HttpHeaders implements Iterable<Map.Entry<String, String>>
|
||||
}
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
private static void encode(CharSequence key, CharSequence value, ByteBuf buf) {
|
||||
encodeAscii(key, buf);
|
||||
buf.writeBytes(HEADER_SEPERATOR);
|
||||
|
@ -24,6 +24,7 @@ import io.netty.handler.codec.AsciiString;
|
||||
import io.netty.handler.codec.DecoderResult;
|
||||
import io.netty.handler.codec.ReplayingDecoder;
|
||||
import io.netty.handler.codec.TooLongFrameException;
|
||||
import io.netty.handler.codec.http.HttpObjectDecoder.State;
|
||||
import io.netty.util.internal.AppendableCharSequence;
|
||||
|
||||
import java.util.List;
|
||||
@ -101,7 +102,7 @@ import static io.netty.buffer.ByteBufUtil.*;
|
||||
* To implement the decoder of such a derived protocol, extend this class and
|
||||
* implement all abstract methods properly.
|
||||
*/
|
||||
public abstract class HttpObjectDecoder extends ReplayingDecoder<HttpObjectDecoder.State> {
|
||||
public abstract class HttpObjectDecoder extends ReplayingDecoder<State> {
|
||||
|
||||
private final int maxInitialLineLength;
|
||||
private final int maxHeaderSize;
|
||||
|
@ -266,7 +266,7 @@ public final class CorsConfig {
|
||||
* @return {@link Builder} to support method chaining.
|
||||
*/
|
||||
public static Builder withOrigin(final String origin) {
|
||||
if (origin.equals("*")) {
|
||||
if ("*".equals(origin)) {
|
||||
return new Builder();
|
||||
}
|
||||
return new Builder(origin);
|
||||
|
@ -18,7 +18,7 @@ package io.netty.handler.codec.http.multipart;
|
||||
import java.io.Serializable;
|
||||
import java.util.Comparator;
|
||||
|
||||
final class CaseIgnoringComparator implements Comparator<String>, Serializable {
|
||||
final class CaseIgnoringComparator implements Comparator<CharSequence>, Serializable {
|
||||
|
||||
private static final long serialVersionUID = 4582133183775373862L;
|
||||
|
||||
@ -28,8 +28,26 @@ final class CaseIgnoringComparator implements Comparator<String>, Serializable {
|
||||
}
|
||||
|
||||
@Override
|
||||
public int compare(String o1, String o2) {
|
||||
return o1.compareToIgnoreCase(o2);
|
||||
public int compare(CharSequence o1, CharSequence o2) {
|
||||
int o1Length = o1.length();
|
||||
int o2Length = o2.length();
|
||||
int min = Math.min(o1Length, o2Length);
|
||||
for (int i = 0; i < min; i++) {
|
||||
char c1 = o1.charAt(i);
|
||||
char c2 = o2.charAt(i);
|
||||
if (c1 != c2) {
|
||||
c1 = Character.toUpperCase(c1);
|
||||
c2 = Character.toUpperCase(c2);
|
||||
if (c1 != c2) {
|
||||
c1 = Character.toLowerCase(c1);
|
||||
c2 = Character.toLowerCase(c2);
|
||||
if (c1 != c2) {
|
||||
return c1 - c2;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return o1Length - o2Length;
|
||||
}
|
||||
|
||||
private Object readResolve() {
|
||||
|
@ -22,8 +22,10 @@ import io.netty.util.internal.PlatformDependent;
|
||||
import java.io.IOException;
|
||||
import java.nio.charset.Charset;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
|
||||
/**
|
||||
* Default factory giving Attribute and FileUpload according to constructor
|
||||
@ -145,7 +147,7 @@ public class DefaultHttpDataFactory implements HttpDataFactory {
|
||||
private static void checkHttpDataSize(HttpData data) {
|
||||
try {
|
||||
data.checkSize(data.length());
|
||||
} catch (IOException e) {
|
||||
} catch (IOException ignored) {
|
||||
throw new IllegalArgumentException("Attribute bigger than maxSize allowed");
|
||||
}
|
||||
}
|
||||
@ -235,15 +237,18 @@ public class DefaultHttpDataFactory implements HttpDataFactory {
|
||||
|
||||
@Override
|
||||
public void cleanAllHttpData() {
|
||||
for (HttpRequest request : requestFileDeleteMap.keySet()) {
|
||||
List<HttpData> fileToDelete = requestFileDeleteMap.get(request);
|
||||
Iterator<Entry<HttpRequest, List<HttpData>>> i = requestFileDeleteMap.entrySet().iterator();
|
||||
while (i.hasNext()) {
|
||||
Entry<HttpRequest, List<HttpData>> e = i.next();
|
||||
i.remove();
|
||||
|
||||
List<HttpData> fileToDelete = e.getValue();
|
||||
if (fileToDelete != null) {
|
||||
for (HttpData data: fileToDelete) {
|
||||
for (HttpData data : fileToDelete) {
|
||||
data.delete();
|
||||
}
|
||||
fileToDelete.clear();
|
||||
}
|
||||
requestFileDeleteMap.remove(request);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -106,7 +106,7 @@ public class HttpPostMultipartRequestDecoder implements InterfaceHttpPostRequest
|
||||
/**
|
||||
* Used in Multipart
|
||||
*/
|
||||
private Map<String, Attribute> currentFieldAttributes;
|
||||
private Map<CharSequence, Attribute> currentFieldAttributes;
|
||||
|
||||
/**
|
||||
* The current FileUpload that is currently in decode process
|
||||
@ -516,7 +516,7 @@ public class HttpPostMultipartRequestDecoder implements InterfaceHttpPostRequest
|
||||
// load data
|
||||
try {
|
||||
loadFieldMultipart(multipartDataBoundary);
|
||||
} catch (NotEnoughDataDecoderException e) {
|
||||
} catch (NotEnoughDataDecoderException ignored) {
|
||||
return null;
|
||||
}
|
||||
Attribute finalAttribute = currentAttribute;
|
||||
@ -561,7 +561,7 @@ public class HttpPostMultipartRequestDecoder implements InterfaceHttpPostRequest
|
||||
SeekAheadOptimize sao;
|
||||
try {
|
||||
sao = new SeekAheadOptimize(undecodedChunk);
|
||||
} catch (SeekAheadNoBackArrayException e) {
|
||||
} catch (SeekAheadNoBackArrayException ignored) {
|
||||
try {
|
||||
skipControlCharactersStandard();
|
||||
} catch (IndexOutOfBoundsException e1) {
|
||||
@ -608,7 +608,7 @@ public class HttpPostMultipartRequestDecoder implements InterfaceHttpPostRequest
|
||||
int readerIndex = undecodedChunk.readerIndex();
|
||||
try {
|
||||
skipControlCharacters();
|
||||
} catch (NotEnoughDataDecoderException e1) {
|
||||
} catch (NotEnoughDataDecoderException ignored) {
|
||||
undecodedChunk.readerIndex(readerIndex);
|
||||
return null;
|
||||
}
|
||||
@ -616,7 +616,7 @@ public class HttpPostMultipartRequestDecoder implements InterfaceHttpPostRequest
|
||||
String newline;
|
||||
try {
|
||||
newline = readDelimiter(delimiter);
|
||||
} catch (NotEnoughDataDecoderException e) {
|
||||
} catch (NotEnoughDataDecoderException ignored) {
|
||||
undecodedChunk.readerIndex(readerIndex);
|
||||
return null;
|
||||
}
|
||||
@ -648,7 +648,7 @@ public class HttpPostMultipartRequestDecoder implements InterfaceHttpPostRequest
|
||||
private InterfaceHttpData findMultipartDisposition() {
|
||||
int readerIndex = undecodedChunk.readerIndex();
|
||||
if (currentStatus == MultiPartStatus.DISPOSITION) {
|
||||
currentFieldAttributes = new TreeMap<String, Attribute>(CaseIgnoringComparator.INSTANCE);
|
||||
currentFieldAttributes = new TreeMap<CharSequence, Attribute>(CaseIgnoringComparator.INSTANCE);
|
||||
}
|
||||
// read many lines until empty line with newline found! Store all data
|
||||
while (!skipOneLine()) {
|
||||
@ -656,7 +656,7 @@ public class HttpPostMultipartRequestDecoder implements InterfaceHttpPostRequest
|
||||
try {
|
||||
skipControlCharacters();
|
||||
newline = readLine();
|
||||
} catch (NotEnoughDataDecoderException e) {
|
||||
} catch (NotEnoughDataDecoderException ignored) {
|
||||
undecodedChunk.readerIndex(readerIndex);
|
||||
return null;
|
||||
}
|
||||
@ -842,7 +842,7 @@ public class HttpPostMultipartRequestDecoder implements InterfaceHttpPostRequest
|
||||
size = lengthAttribute != null ? Long.parseLong(lengthAttribute.getValue()) : 0L;
|
||||
} catch (IOException e) {
|
||||
throw new ErrorDataDecoderException(e);
|
||||
} catch (NumberFormatException e) {
|
||||
} catch (NumberFormatException ignored) {
|
||||
size = 0;
|
||||
}
|
||||
try {
|
||||
@ -991,7 +991,7 @@ public class HttpPostMultipartRequestDecoder implements InterfaceHttpPostRequest
|
||||
SeekAheadOptimize sao;
|
||||
try {
|
||||
sao = new SeekAheadOptimize(undecodedChunk);
|
||||
} catch (SeekAheadNoBackArrayException e1) {
|
||||
} catch (SeekAheadNoBackArrayException ignored) {
|
||||
return readLineStandard();
|
||||
}
|
||||
int readerIndex = undecodedChunk.readerIndex();
|
||||
@ -1142,7 +1142,7 @@ public class HttpPostMultipartRequestDecoder implements InterfaceHttpPostRequest
|
||||
SeekAheadOptimize sao;
|
||||
try {
|
||||
sao = new SeekAheadOptimize(undecodedChunk);
|
||||
} catch (SeekAheadNoBackArrayException e1) {
|
||||
} catch (SeekAheadNoBackArrayException ignored) {
|
||||
return readDelimiterStandard(delimiter);
|
||||
}
|
||||
int readerIndex = undecodedChunk.readerIndex();
|
||||
@ -1371,7 +1371,7 @@ public class HttpPostMultipartRequestDecoder implements InterfaceHttpPostRequest
|
||||
SeekAheadOptimize sao;
|
||||
try {
|
||||
sao = new SeekAheadOptimize(undecodedChunk);
|
||||
} catch (SeekAheadNoBackArrayException e1) {
|
||||
} catch (SeekAheadNoBackArrayException ignored) {
|
||||
readFileUploadByteMultipartStandard(delimiter);
|
||||
return;
|
||||
}
|
||||
@ -1592,7 +1592,7 @@ public class HttpPostMultipartRequestDecoder implements InterfaceHttpPostRequest
|
||||
SeekAheadOptimize sao;
|
||||
try {
|
||||
sao = new SeekAheadOptimize(undecodedChunk);
|
||||
} catch (SeekAheadNoBackArrayException e1) {
|
||||
} catch (SeekAheadNoBackArrayException ignored) {
|
||||
loadFieldMultipartStandard(delimiter);
|
||||
return;
|
||||
}
|
||||
@ -1699,6 +1699,7 @@ public class HttpPostMultipartRequestDecoder implements InterfaceHttpPostRequest
|
||||
*
|
||||
* @return the cleaned String
|
||||
*/
|
||||
@SuppressWarnings("IfStatementWithIdenticalBranches")
|
||||
private static String cleanString(String field) {
|
||||
StringBuilder sb = new StringBuilder(field.length());
|
||||
for (int i = 0; i < field.length(); i++) {
|
||||
|
@ -156,7 +156,8 @@ public class HttpPostRequestDecoder implements InterfaceHttpPostRequestDecoder {
|
||||
String[] headerContentType = splitHeaderContentType(contentType);
|
||||
if (headerContentType[0].toLowerCase().startsWith(
|
||||
HttpHeaders.Values.MULTIPART_FORM_DATA)) {
|
||||
int mrank = 1, crank = 2;
|
||||
int mrank;
|
||||
int crank;
|
||||
if (headerContentType[1].toLowerCase().startsWith(
|
||||
HttpHeaders.Values.BOUNDARY)) {
|
||||
mrank = 1;
|
||||
|
@ -511,7 +511,7 @@ public class HttpPostStandardRequestDecoder implements InterfaceHttpPostRequestD
|
||||
SeekAheadOptimize sao;
|
||||
try {
|
||||
sao = new SeekAheadOptimize(undecodedChunk);
|
||||
} catch (SeekAheadNoBackArrayException e1) {
|
||||
} catch (SeekAheadNoBackArrayException ignored) {
|
||||
parseBodyAttributesStandard();
|
||||
return;
|
||||
}
|
||||
@ -659,11 +659,11 @@ public class HttpPostStandardRequestDecoder implements InterfaceHttpPostRequestD
|
||||
SeekAheadOptimize sao;
|
||||
try {
|
||||
sao = new SeekAheadOptimize(undecodedChunk);
|
||||
} catch (SeekAheadNoBackArrayException e) {
|
||||
} catch (SeekAheadNoBackArrayException ignored) {
|
||||
try {
|
||||
skipControlCharactersStandard();
|
||||
} catch (IndexOutOfBoundsException e1) {
|
||||
throw new NotEnoughDataDecoderException(e1);
|
||||
} catch (IndexOutOfBoundsException e) {
|
||||
throw new NotEnoughDataDecoderException(e);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
@ -55,7 +55,7 @@ public interface InterfaceHttpPostRequestDecoder {
|
||||
* @throws HttpPostRequestDecoder.NotEnoughDataDecoderException
|
||||
* Need more chunks
|
||||
*/
|
||||
List<InterfaceHttpData> getBodyHttpDatas() throws HttpPostRequestDecoder.NotEnoughDataDecoderException;
|
||||
List<InterfaceHttpData> getBodyHttpDatas();
|
||||
|
||||
/**
|
||||
* This getMethod returns a List of all HttpDatas with the given name from
|
||||
@ -68,7 +68,7 @@ public interface InterfaceHttpPostRequestDecoder {
|
||||
* @throws HttpPostRequestDecoder.NotEnoughDataDecoderException
|
||||
* need more chunks
|
||||
*/
|
||||
List<InterfaceHttpData> getBodyHttpDatas(String name) throws HttpPostRequestDecoder.NotEnoughDataDecoderException;
|
||||
List<InterfaceHttpData> getBodyHttpDatas(String name);
|
||||
|
||||
/**
|
||||
* This getMethod returns the first InterfaceHttpData with the given name from
|
||||
@ -82,7 +82,7 @@ public interface InterfaceHttpPostRequestDecoder {
|
||||
* @throws HttpPostRequestDecoder.NotEnoughDataDecoderException
|
||||
* need more chunks
|
||||
*/
|
||||
InterfaceHttpData getBodyHttpData(String name) throws HttpPostRequestDecoder.NotEnoughDataDecoderException;
|
||||
InterfaceHttpData getBodyHttpData(String name);
|
||||
|
||||
/**
|
||||
* Initialized the internals from a new chunk
|
||||
@ -93,8 +93,7 @@ public interface InterfaceHttpPostRequestDecoder {
|
||||
* if there is a problem with the charset decoding or other
|
||||
* errors
|
||||
*/
|
||||
InterfaceHttpPostRequestDecoder offer(HttpContent content)
|
||||
throws HttpPostRequestDecoder.ErrorDataDecoderException;
|
||||
InterfaceHttpPostRequestDecoder offer(HttpContent content);
|
||||
|
||||
/**
|
||||
* True if at current getStatus, there is an available decoded
|
||||
@ -106,7 +105,7 @@ public interface InterfaceHttpPostRequestDecoder {
|
||||
* @throws HttpPostRequestDecoder.EndOfDataDecoderException
|
||||
* No more data will be available
|
||||
*/
|
||||
boolean hasNext() throws HttpPostRequestDecoder.EndOfDataDecoderException;
|
||||
boolean hasNext();
|
||||
|
||||
/**
|
||||
* Returns the next available InterfaceHttpData or null if, at the time it
|
||||
@ -120,7 +119,7 @@ public interface InterfaceHttpPostRequestDecoder {
|
||||
* @throws HttpPostRequestDecoder.EndOfDataDecoderException
|
||||
* No more data will be available
|
||||
*/
|
||||
InterfaceHttpData next() throws HttpPostRequestDecoder.EndOfDataDecoderException;
|
||||
InterfaceHttpData next();
|
||||
|
||||
/**
|
||||
* Destroy the {@link InterfaceHttpPostRequestDecoder} and release all it resources. After this method
|
||||
|
@ -22,7 +22,6 @@ import io.netty.channel.ChannelInboundHandlerAdapter;
|
||||
import io.netty.channel.ChannelPipeline;
|
||||
import io.netty.handler.codec.http.DefaultFullHttpResponse;
|
||||
import io.netty.handler.codec.http.FullHttpRequest;
|
||||
import io.netty.handler.codec.http.HttpHeaders;
|
||||
import io.netty.handler.codec.http.HttpRequest;
|
||||
import io.netty.handler.codec.http.HttpResponse;
|
||||
import io.netty.handler.ssl.SslHandler;
|
||||
@ -100,7 +99,7 @@ class WebSocketServerProtocolHandshakeHandler extends ChannelInboundHandlerAdapt
|
||||
// SSL in use so use Secure WebSockets
|
||||
protocol = "wss";
|
||||
}
|
||||
return protocol + "://" + req.headers().get(HttpHeaders.Names.HOST) + path;
|
||||
return protocol + "://" + req.headers().get(Names.HOST) + path;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -37,8 +37,8 @@ public class RtspRequestEncoder extends RtspObjectEncoder<HttpRequest> {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void encodeInitialLine(ByteBuf buf, HttpRequest request)
|
||||
throws Exception {
|
||||
@SuppressWarnings("deprecation")
|
||||
protected void encodeInitialLine(ByteBuf buf, HttpRequest request) throws Exception {
|
||||
HttpHeaders.encodeAscii(request.method().toString(), buf);
|
||||
buf.writeByte(SP);
|
||||
buf.writeBytes(request.uri().getBytes(CharsetUtil.UTF_8));
|
||||
|
@ -26,7 +26,6 @@ import static io.netty.handler.codec.http.HttpConstants.*;
|
||||
/**
|
||||
* Encodes an RTSP response represented in {@link FullHttpResponse} into
|
||||
* a {@link ByteBuf}.
|
||||
|
||||
*/
|
||||
public class RtspResponseEncoder extends RtspObjectEncoder<HttpResponse> {
|
||||
private static final byte[] CRLF = { CR, LF };
|
||||
@ -37,8 +36,8 @@ public class RtspResponseEncoder extends RtspObjectEncoder<HttpResponse> {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void encodeInitialLine(ByteBuf buf, HttpResponse response)
|
||||
throws Exception {
|
||||
@SuppressWarnings("deprecation")
|
||||
protected void encodeInitialLine(ByteBuf buf, HttpResponse response) throws Exception {
|
||||
HttpHeaders.encodeAscii(response.protocolVersion().toString(), buf);
|
||||
buf.writeByte(SP);
|
||||
buf.writeBytes(String.valueOf(response.status().code()).getBytes(CharsetUtil.US_ASCII));
|
||||
|
@ -33,11 +33,11 @@ public class SpdyHeaderBlockRawEncoder extends SpdyHeaderBlockEncoder {
|
||||
this.version = version.getVersion();
|
||||
}
|
||||
|
||||
private void setLengthField(ByteBuf buffer, int writerIndex, int length) {
|
||||
private static void setLengthField(ByteBuf buffer, int writerIndex, int length) {
|
||||
buffer.setInt(writerIndex, length);
|
||||
}
|
||||
|
||||
private void writeLengthField(ByteBuf buffer, int length) {
|
||||
private static void writeLengthField(ByteBuf buffer, int length) {
|
||||
buffer.writeInt(length);
|
||||
}
|
||||
|
||||
|
@ -18,6 +18,7 @@ package io.netty.handler.codec.spdy;
|
||||
import io.netty.channel.ChannelPromise;
|
||||
import io.netty.util.internal.PlatformDependent;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Comparator;
|
||||
import java.util.Map;
|
||||
import java.util.Queue;
|
||||
@ -320,7 +321,10 @@ final class SpdySession {
|
||||
}
|
||||
}
|
||||
|
||||
private final class PriorityComparator implements Comparator<Integer> {
|
||||
private final class PriorityComparator implements Comparator<Integer>, Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1161471649740544848L;
|
||||
|
||||
@Override
|
||||
public int compare(Integer id1, Integer id2) {
|
||||
StreamState state1 = activeStreams.get(id1);
|
||||
|
@ -118,6 +118,6 @@ public class HttpChunkedInputTest {
|
||||
}
|
||||
|
||||
assertEquals(BYTES.length * inputs.length, read);
|
||||
assertTrue("Last chunk must be DefaultLastHttpContent", lastHttpContent == LastHttpContent.EMPTY_LAST_CONTENT);
|
||||
assertSame("Last chunk must be DefaultLastHttpContent", LastHttpContent.EMPTY_LAST_CONTENT, lastHttpContent);
|
||||
}
|
||||
}
|
||||
|
@ -15,11 +15,12 @@
|
||||
*/
|
||||
package io.netty.handler.codec.http;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import java.text.ParseException;
|
||||
import java.util.Date;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
public class HttpHeaderDateFormatTest {
|
||||
/**
|
||||
@ -35,28 +36,24 @@ public class HttpHeaderDateFormatTest {
|
||||
HttpHeaderDateFormat format = HttpHeaderDateFormat.get();
|
||||
|
||||
final Date parsedDateWithSingleDigitDay = format.parse("Sun, 6 Nov 1994 08:49:37 GMT");
|
||||
Assert.assertNotNull(parsedDateWithSingleDigitDay);
|
||||
Assert.assertEquals(DATE, parsedDateWithSingleDigitDay);
|
||||
assertNotNull(parsedDateWithSingleDigitDay);
|
||||
assertEquals(DATE, parsedDateWithSingleDigitDay);
|
||||
|
||||
final Date parsedDateWithDoubleDigitDay = format.parse("Sun, 06 Nov 1994 08:49:37 GMT");
|
||||
Assert.assertNotNull(parsedDateWithDoubleDigitDay);
|
||||
Assert.assertEquals(DATE, parsedDateWithDoubleDigitDay);
|
||||
assertNotNull(parsedDateWithDoubleDigitDay);
|
||||
assertEquals(DATE, parsedDateWithDoubleDigitDay);
|
||||
|
||||
final Date parsedDateWithDashSeparatorSingleDigitDay = format.parse("Sunday, 06-Nov-94 08:49:37 GMT");
|
||||
Assert.assertNotNull(parsedDateWithDashSeparatorSingleDigitDay);
|
||||
Assert.assertEquals(DATE, parsedDateWithDashSeparatorSingleDigitDay);
|
||||
assertNotNull(parsedDateWithDashSeparatorSingleDigitDay);
|
||||
assertEquals(DATE, parsedDateWithDashSeparatorSingleDigitDay);
|
||||
|
||||
final Date parsedDateWithSingleDoubleDigitDay = format.parse("Sunday, 6-Nov-94 08:49:37 GMT");
|
||||
Assert.assertNotNull(parsedDateWithSingleDoubleDigitDay);
|
||||
Assert.assertEquals(DATE, parsedDateWithSingleDoubleDigitDay);
|
||||
assertNotNull(parsedDateWithSingleDoubleDigitDay);
|
||||
assertEquals(DATE, parsedDateWithSingleDoubleDigitDay);
|
||||
|
||||
final Date parsedDateWithoutGMT = format.parse("Sun Nov 6 08:49:37 1994");
|
||||
Assert.assertNotNull(parsedDateWithoutGMT);
|
||||
Assert.assertEquals(DATE, parsedDateWithoutGMT);
|
||||
}
|
||||
|
||||
private Date parseDate(HttpHeaderDateFormat dateFormat, String dateStr) throws ParseException {
|
||||
return dateFormat.parse(dateStr);
|
||||
assertNotNull(parsedDateWithoutGMT);
|
||||
assertEquals(DATE, parsedDateWithoutGMT);
|
||||
}
|
||||
|
||||
@Test
|
||||
@ -64,7 +61,7 @@ public class HttpHeaderDateFormatTest {
|
||||
HttpHeaderDateFormat format = HttpHeaderDateFormat.get();
|
||||
|
||||
final String formatted = format.format(DATE);
|
||||
Assert.assertNotNull(formatted);
|
||||
Assert.assertEquals("Sun, 06 Nov 1994 08:49:37 GMT", formatted);
|
||||
assertNotNull(formatted);
|
||||
assertEquals("Sun, 06 Nov 1994 08:49:37 GMT", formatted);
|
||||
}
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ import io.netty.buffer.CompositeByteBuf;
|
||||
import io.netty.buffer.Unpooled;
|
||||
import io.netty.channel.ChannelHandlerContext;
|
||||
import io.netty.channel.embedded.EmbeddedChannel;
|
||||
import io.netty.handler.codec.DecoderResultProvider;
|
||||
import io.netty.handler.codec.TooLongFrameException;
|
||||
import io.netty.handler.codec.http.HttpHeaders.Names;
|
||||
import io.netty.util.CharsetUtil;
|
||||
@ -308,7 +309,7 @@ public class HttpObjectAggregatorTest {
|
||||
ch.writeInbound(Unpooled.copiedBuffer("GET / HTTP/1.0 with extra\r\n", CharsetUtil.UTF_8));
|
||||
Object inbound = ch.readInbound();
|
||||
assertThat(inbound, is(instanceOf(FullHttpRequest.class)));
|
||||
assertTrue(((FullHttpRequest) inbound).getDecoderResult().isFailure());
|
||||
assertTrue(((DecoderResultProvider) inbound).decoderResult().isFailure());
|
||||
assertNull(ch.readInbound());
|
||||
ch.finish();
|
||||
}
|
||||
@ -319,7 +320,7 @@ public class HttpObjectAggregatorTest {
|
||||
ch.writeInbound(Unpooled.copiedBuffer("HTTP/1.0 BAD_CODE Bad Server\r\n", CharsetUtil.UTF_8));
|
||||
Object inbound = ch.readInbound();
|
||||
assertThat(inbound, is(instanceOf(FullHttpResponse.class)));
|
||||
assertTrue(((FullHttpResponse) inbound).getDecoderResult().isFailure());
|
||||
assertTrue(((DecoderResultProvider) inbound).decoderResult().isFailure());
|
||||
assertNull(ch.readInbound());
|
||||
ch.finish();
|
||||
}
|
||||
|
@ -136,7 +136,6 @@ public class HttpRequestDecoderTest {
|
||||
}
|
||||
|
||||
// if header is done it should produce a HttpRequest
|
||||
boolean headerDone = a + amount == headerLength;
|
||||
channel.writeInbound(Unpooled.wrappedBuffer(content, a, amount));
|
||||
a += amount;
|
||||
}
|
||||
|
@ -47,7 +47,7 @@ public class HttpResponseEncoderTest {
|
||||
buffer.release();
|
||||
|
||||
FileRegion region = channel.readOutbound();
|
||||
assertSame(region, FILE_REGION);
|
||||
assertSame(FILE_REGION, region);
|
||||
region.release();
|
||||
buffer = channel.readOutbound();
|
||||
assertEquals("\r\n", buffer.toString(CharsetUtil.US_ASCII));
|
||||
|
@ -78,7 +78,7 @@ public class CorsHandlerTest {
|
||||
@Test
|
||||
public void preflightDeleteRequestWithCustomHeaders() {
|
||||
final CorsConfig config = CorsConfig.withOrigin("http://localhost:8888")
|
||||
.allowedRequestMethods(HttpMethod.GET, HttpMethod.DELETE)
|
||||
.allowedRequestMethods(GET, DELETE)
|
||||
.build();
|
||||
final HttpResponse response = preflightRequest(config, "http://localhost:8888", "content-type, xheader1");
|
||||
assertThat(response.headers().get(ACCESS_CONTROL_ALLOW_ORIGIN), is("http://localhost:8888"));
|
||||
@ -89,7 +89,7 @@ public class CorsHandlerTest {
|
||||
@Test
|
||||
public void preflightGetRequestWithCustomHeaders() {
|
||||
final CorsConfig config = CorsConfig.withOrigin("http://localhost:8888")
|
||||
.allowedRequestMethods(HttpMethod.OPTIONS, HttpMethod.GET, HttpMethod.DELETE)
|
||||
.allowedRequestMethods(OPTIONS, GET, DELETE)
|
||||
.allowedRequestHeaders("content-type", "xheader1")
|
||||
.build();
|
||||
final HttpResponse response = preflightRequest(config, "http://localhost:8888", "content-type, xheader1");
|
||||
|
@ -172,7 +172,7 @@ public class SpdySessionHandlerTest {
|
||||
// a RST_STREAM frame for that Stream-ID
|
||||
sessionHandler.writeInbound(new DefaultSpdyRstStreamFrame(remoteStreamId, 3));
|
||||
assertNull(sessionHandler.readOutbound());
|
||||
remoteStreamId += 2;
|
||||
//remoteStreamId += 2;
|
||||
|
||||
// Check if session handler honors UNIDIRECTIONAL streams
|
||||
spdySynStreamFrame.setLast(false);
|
||||
|
@ -16,8 +16,7 @@
|
||||
package io.netty.handler.codec.memcache.binary;
|
||||
|
||||
/**
|
||||
* Contains all possible status values a
|
||||
* {@link BinaryMemcacheResponseHeader} can return.
|
||||
* Contains all possible status values a {@link BinaryMemcacheResponse} can return.
|
||||
*/
|
||||
public final class BinaryMemcacheResponseStatus {
|
||||
|
||||
|
@ -18,6 +18,7 @@ package io.netty.handler.codec.socks;
|
||||
import io.netty.buffer.ByteBuf;
|
||||
import io.netty.channel.ChannelHandlerContext;
|
||||
import io.netty.handler.codec.ReplayingDecoder;
|
||||
import io.netty.handler.codec.socks.SocksAuthRequestDecoder.State;
|
||||
import io.netty.util.CharsetUtil;
|
||||
|
||||
import java.util.List;
|
||||
@ -26,7 +27,7 @@ import java.util.List;
|
||||
* Decodes {@link ByteBuf}s into {@link SocksAuthRequest}.
|
||||
* Before returning SocksRequest decoder removes itself from pipeline.
|
||||
*/
|
||||
public class SocksAuthRequestDecoder extends ReplayingDecoder<SocksAuthRequestDecoder.State> {
|
||||
public class SocksAuthRequestDecoder extends ReplayingDecoder<State> {
|
||||
|
||||
private SocksSubnegotiationVersion version;
|
||||
private int fieldLength;
|
||||
|
@ -18,6 +18,7 @@ package io.netty.handler.codec.socks;
|
||||
import io.netty.buffer.ByteBuf;
|
||||
import io.netty.channel.ChannelHandlerContext;
|
||||
import io.netty.handler.codec.ReplayingDecoder;
|
||||
import io.netty.handler.codec.socks.SocksAuthResponseDecoder.State;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -25,7 +26,7 @@ import java.util.List;
|
||||
* Decodes {@link ByteBuf}s into {@link SocksAuthResponse}.
|
||||
* Before returning SocksResponse decoder removes itself from pipeline.
|
||||
*/
|
||||
public class SocksAuthResponseDecoder extends ReplayingDecoder<SocksAuthResponseDecoder.State> {
|
||||
public class SocksAuthResponseDecoder extends ReplayingDecoder<State> {
|
||||
|
||||
private SocksSubnegotiationVersion version;
|
||||
private SocksAuthStatus authStatus;
|
||||
|
@ -18,6 +18,7 @@ package io.netty.handler.codec.socks;
|
||||
import io.netty.buffer.ByteBuf;
|
||||
import io.netty.channel.ChannelHandlerContext;
|
||||
import io.netty.handler.codec.ReplayingDecoder;
|
||||
import io.netty.handler.codec.socks.SocksCmdRequestDecoder.State;
|
||||
import io.netty.util.CharsetUtil;
|
||||
|
||||
import java.util.List;
|
||||
@ -26,12 +27,13 @@ import java.util.List;
|
||||
* Decodes {@link ByteBuf}s into {@link SocksCmdRequest}.
|
||||
* Before returning SocksRequest decoder removes itself from pipeline.
|
||||
*/
|
||||
public class SocksCmdRequestDecoder extends ReplayingDecoder<SocksCmdRequestDecoder.State> {
|
||||
public class SocksCmdRequestDecoder extends ReplayingDecoder<State> {
|
||||
|
||||
private SocksProtocolVersion version;
|
||||
private int fieldLength;
|
||||
private SocksCmdType cmdType;
|
||||
private SocksAddressType addressType;
|
||||
@SuppressWarnings("UnusedDeclaration")
|
||||
private byte reserved;
|
||||
private String host;
|
||||
private int port;
|
||||
|
@ -18,6 +18,7 @@ package io.netty.handler.codec.socks;
|
||||
import io.netty.buffer.ByteBuf;
|
||||
import io.netty.channel.ChannelHandlerContext;
|
||||
import io.netty.handler.codec.ReplayingDecoder;
|
||||
import io.netty.handler.codec.socks.SocksCmdResponseDecoder.State;
|
||||
import io.netty.util.CharsetUtil;
|
||||
|
||||
import java.util.List;
|
||||
@ -26,7 +27,7 @@ import java.util.List;
|
||||
* Decodes {@link ByteBuf}s into {@link SocksCmdResponse}.
|
||||
* Before returning SocksResponse decoder removes itself from pipeline.
|
||||
*/
|
||||
public class SocksCmdResponseDecoder extends ReplayingDecoder<SocksCmdResponseDecoder.State> {
|
||||
public class SocksCmdResponseDecoder extends ReplayingDecoder<State> {
|
||||
|
||||
private SocksProtocolVersion version;
|
||||
private int fieldLength;
|
||||
|
@ -18,6 +18,7 @@ package io.netty.handler.codec.socks;
|
||||
import io.netty.buffer.ByteBuf;
|
||||
import io.netty.channel.ChannelHandlerContext;
|
||||
import io.netty.handler.codec.ReplayingDecoder;
|
||||
import io.netty.handler.codec.socks.SocksInitRequestDecoder.State;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@ -26,7 +27,7 @@ import java.util.List;
|
||||
* Decodes {@link ByteBuf}s into {@link SocksInitRequest}.
|
||||
* Before returning SocksRequest decoder removes itself from pipeline.
|
||||
*/
|
||||
public class SocksInitRequestDecoder extends ReplayingDecoder<SocksInitRequestDecoder.State> {
|
||||
public class SocksInitRequestDecoder extends ReplayingDecoder<State> {
|
||||
|
||||
private final List<SocksAuthScheme> authSchemes = new ArrayList<SocksAuthScheme>();
|
||||
private SocksProtocolVersion version;
|
||||
|
@ -18,6 +18,7 @@ package io.netty.handler.codec.socks;
|
||||
import io.netty.buffer.ByteBuf;
|
||||
import io.netty.channel.ChannelHandlerContext;
|
||||
import io.netty.handler.codec.ReplayingDecoder;
|
||||
import io.netty.handler.codec.socks.SocksInitResponseDecoder.State;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -25,7 +26,7 @@ import java.util.List;
|
||||
* Decodes {@link ByteBuf}s into {@link SocksInitResponse}.
|
||||
* Before returning SocksResponse decoder removes itself from pipeline.
|
||||
*/
|
||||
public class SocksInitResponseDecoder extends ReplayingDecoder<SocksInitResponseDecoder.State> {
|
||||
public class SocksInitResponseDecoder extends ReplayingDecoder<State> {
|
||||
|
||||
private SocksProtocolVersion version;
|
||||
private SocksAuthScheme authScheme;
|
||||
|
@ -27,6 +27,7 @@ final class SocksCommonTestUtils {
|
||||
//NOOP
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
public static void writeMessageIntoEmbedder(EmbeddedChannel embedder, SocksMessage msg) {
|
||||
ByteBuf buf = Unpooled.buffer();
|
||||
msg.encodeAsByteBuf(buf);
|
||||
|
@ -48,7 +48,7 @@ public class StompSubframeDecoderTest {
|
||||
assertNotNull(frame);
|
||||
assertEquals(StompCommand.CONNECT, frame.command());
|
||||
StompContentSubframe content = channel.readInbound();
|
||||
assertSame(content, LastStompContentSubframe.EMPTY_LAST_CONTENT);
|
||||
assertSame(LastStompContentSubframe.EMPTY_LAST_CONTENT, content);
|
||||
Object o = channel.readInbound();
|
||||
assertNull(o);
|
||||
}
|
||||
@ -123,13 +123,13 @@ public class StompSubframeDecoderTest {
|
||||
assertNotNull(frame);
|
||||
assertEquals(StompCommand.CONNECT, frame.command());
|
||||
StompContentSubframe content = channel.readInbound();
|
||||
assertSame(content, LastStompContentSubframe.EMPTY_LAST_CONTENT);
|
||||
assertSame(LastStompContentSubframe.EMPTY_LAST_CONTENT, content);
|
||||
|
||||
StompHeadersSubframe frame2 = channel.readInbound();
|
||||
assertNotNull(frame2);
|
||||
assertEquals(StompCommand.CONNECTED, frame2.command());
|
||||
StompContentSubframe content2 = channel.readInbound();
|
||||
assertSame(content2, LastStompContentSubframe.EMPTY_LAST_CONTENT);
|
||||
assertSame(LastStompContentSubframe.EMPTY_LAST_CONTENT, content2);
|
||||
assertNull(channel.readInbound());
|
||||
}
|
||||
}
|
||||
|
@ -45,7 +45,6 @@ public class DefaultTextHeaders implements TextHeaders {
|
||||
return Math.abs(hash % BUCKET_SIZE);
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
private final HeaderEntry[] entries = new HeaderEntry[BUCKET_SIZE];
|
||||
private final HeaderEntry head = new HeaderEntry(this);
|
||||
private final boolean ignoreCase;
|
||||
@ -71,7 +70,6 @@ public class DefaultTextHeaders implements TextHeaders {
|
||||
return name;
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
protected CharSequence convertValue(Object value) {
|
||||
if (value == null) {
|
||||
throw new NullPointerException("value");
|
||||
@ -195,7 +193,6 @@ public class DefaultTextHeaders implements TextHeaders {
|
||||
}
|
||||
|
||||
if (headers instanceof DefaultTextHeaders) {
|
||||
@SuppressWarnings("unchecked")
|
||||
DefaultTextHeaders m = (DefaultTextHeaders) headers;
|
||||
HeaderEntry e = m.head.after;
|
||||
while (e != m.head) {
|
||||
|
@ -286,7 +286,7 @@ public final class Base64 {
|
||||
(DECODABET[src[srcOffset + 1]] & 0xFF) << 12 |
|
||||
(DECODABET[src[srcOffset + 2]] & 0xFF) << 6 |
|
||||
DECODABET[src[srcOffset + 3]] & 0xFF;
|
||||
} catch (IndexOutOfBoundsException e) {
|
||||
} catch (IndexOutOfBoundsException ignored) {
|
||||
throw new IllegalArgumentException("not encoded in Base64");
|
||||
}
|
||||
|
||||
|
@ -157,7 +157,7 @@ public class Bzip2Decoder extends ByteToMessageDecoder {
|
||||
int huffmanSymbolCount = 0;
|
||||
if (bitNumber > 0) {
|
||||
for (int i = 0; i < 16; i++) {
|
||||
if ((inUse16 & ((1 << 15) >>> i)) != 0) {
|
||||
if ((inUse16 & 1 << 15 >>> i) != 0) {
|
||||
for (int j = 0, k = i << 4; j < 16; j++, k++) {
|
||||
if (readBoolean(in)) {
|
||||
huffmanSymbolMap[huffmanSymbolCount++] = (byte) k;
|
||||
@ -330,7 +330,7 @@ public class Bzip2Decoder extends ByteToMessageDecoder {
|
||||
}
|
||||
|
||||
this.bitCount = bitCount -= n;
|
||||
return (bitBuffer >>> bitCount) & ((1 << n) - 1);
|
||||
return bitBuffer >>> bitCount & (1 << n) - 1;
|
||||
}
|
||||
|
||||
private boolean readBoolean(ByteBuf in) {
|
||||
|
@ -93,7 +93,7 @@ class Crc32c implements Checksum {
|
||||
0xBE2DA0A5, 0x4C4623A6, 0x5F16D052, 0xAD7D5351,
|
||||
};
|
||||
|
||||
private static final int LONG_MASK = 0xFFFFFFFF;
|
||||
private static final long LONG_MASK = 0xFFFFFFFFL;
|
||||
private static final int BYTE_MASK = 0xFF;
|
||||
|
||||
private int crc = ~0;
|
||||
@ -121,6 +121,6 @@ class Crc32c implements Checksum {
|
||||
}
|
||||
|
||||
private static int crc32c(int crc, int b) {
|
||||
return (crc >>> 8) ^ CRC_TABLE[(crc ^ (b & BYTE_MASK)) & BYTE_MASK];
|
||||
return crc >>> 8 ^ CRC_TABLE[(crc ^ b & BYTE_MASK) & BYTE_MASK];
|
||||
}
|
||||
}
|
||||
|
@ -57,7 +57,7 @@ public class Snappy {
|
||||
written = 0;
|
||||
}
|
||||
|
||||
public void encode(ByteBuf in, ByteBuf out, int length) {
|
||||
public void encode(final ByteBuf in, final ByteBuf out, final int length) {
|
||||
// Write the preamble length to the output buffer
|
||||
for (int i = 0;; i ++) {
|
||||
int b = length >>> i * 7;
|
||||
@ -70,15 +70,14 @@ public class Snappy {
|
||||
}
|
||||
|
||||
int inIndex = in.readerIndex();
|
||||
final int baseIndex = in.readerIndex();
|
||||
final int maxIndex = length;
|
||||
final int baseIndex = inIndex;
|
||||
|
||||
final short[] table = getHashTable(maxIndex);
|
||||
final short[] table = getHashTable(length);
|
||||
final int shift = 32 - (int) Math.floor(Math.log(table.length) / Math.log(2));
|
||||
|
||||
int nextEmit = inIndex;
|
||||
|
||||
if (maxIndex - inIndex >= MIN_COMPRESSIBLE_BYTES) {
|
||||
if (length - inIndex >= MIN_COMPRESSIBLE_BYTES) {
|
||||
int nextHash = hash(in, ++inIndex, shift);
|
||||
outer: while (true) {
|
||||
int skip = 32;
|
||||
@ -92,7 +91,7 @@ public class Snappy {
|
||||
nextIndex = inIndex + bytesBetweenHashLookups;
|
||||
|
||||
// We need at least 4 remaining bytes to read the hash
|
||||
if (nextIndex > maxIndex - 4) {
|
||||
if (nextIndex > length - 4) {
|
||||
break outer;
|
||||
}
|
||||
|
||||
@ -109,14 +108,14 @@ public class Snappy {
|
||||
int insertTail;
|
||||
do {
|
||||
int base = inIndex;
|
||||
int matched = 4 + findMatchingLength(in, candidate + 4, inIndex + 4, maxIndex);
|
||||
int matched = 4 + findMatchingLength(in, candidate + 4, inIndex + 4, length);
|
||||
inIndex += matched;
|
||||
int offset = base - candidate;
|
||||
encodeCopy(out, offset, matched);
|
||||
in.readerIndex(in.readerIndex() + matched);
|
||||
insertTail = inIndex - 1;
|
||||
nextEmit = inIndex;
|
||||
if (inIndex >= maxIndex - 4) {
|
||||
if (inIndex >= length - 4) {
|
||||
break outer;
|
||||
}
|
||||
|
||||
@ -134,8 +133,8 @@ public class Snappy {
|
||||
}
|
||||
|
||||
// If there are any remaining characters, write them out as a literal
|
||||
if (nextEmit < maxIndex) {
|
||||
encodeLiteral(in, out, maxIndex - nextEmit);
|
||||
if (nextEmit < length) {
|
||||
encodeLiteral(in, out, length - nextEmit);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -27,7 +27,7 @@ class ChannelBufferByteInput implements ByteInput {
|
||||
|
||||
private final ByteBuf buffer;
|
||||
|
||||
public ChannelBufferByteInput(ByteBuf buffer) {
|
||||
ChannelBufferByteInput(ByteBuf buffer) {
|
||||
this.buffer = buffer;
|
||||
}
|
||||
|
||||
|
@ -32,7 +32,7 @@ class ChannelBufferByteOutput implements ByteOutput {
|
||||
/**
|
||||
* Create a new instance which use the given {@link ByteBuf}
|
||||
*/
|
||||
public ChannelBufferByteOutput(ByteBuf buffer) {
|
||||
ChannelBufferByteOutput(ByteBuf buffer) {
|
||||
this.buffer = buffer;
|
||||
}
|
||||
|
||||
|
@ -20,13 +20,12 @@ import io.netty.channel.Channel;
|
||||
import io.netty.channel.ChannelHandlerContext;
|
||||
import io.netty.handler.codec.ReplayingDecoder;
|
||||
import io.netty.handler.codec.TooLongFrameException;
|
||||
import org.jboss.marshalling.ByteInput;
|
||||
import org.jboss.marshalling.Unmarshaller;
|
||||
|
||||
import java.io.ObjectStreamConstants;
|
||||
import java.util.List;
|
||||
|
||||
import org.jboss.marshalling.ByteInput;
|
||||
import org.jboss.marshalling.Unmarshaller;
|
||||
|
||||
/**
|
||||
* {@link ReplayingDecoder} which use an {@link Unmarshaller} to read the Object out of the {@link ByteBuf}.
|
||||
*
|
||||
@ -73,7 +72,7 @@ public class CompatibleMarshallingDecoder extends ReplayingDecoder<Void> {
|
||||
Object obj = unmarshaller.readObject();
|
||||
unmarshaller.finish();
|
||||
out.add(obj);
|
||||
} catch (LimitingByteInput.TooBigObjectException e) {
|
||||
} catch (LimitingByteInput.TooBigObjectException ignored) {
|
||||
discardingTooLongFrame = true;
|
||||
throw new TooLongFrameException();
|
||||
} finally {
|
||||
|
@ -32,7 +32,7 @@ class LimitingByteInput implements ByteInput {
|
||||
private final long limit;
|
||||
private long read;
|
||||
|
||||
public LimitingByteInput(ByteInput input, long limit) {
|
||||
LimitingByteInput(ByteInput input, long limit) {
|
||||
if (limit <= 0) {
|
||||
throw new IllegalArgumentException("The limit MUST be > 0");
|
||||
}
|
||||
|
@ -27,7 +27,7 @@ class ClassLoaderClassResolver implements ClassResolver {
|
||||
public Class<?> resolve(String className) throws ClassNotFoundException {
|
||||
try {
|
||||
return classLoader.loadClass(className);
|
||||
} catch (ClassNotFoundException e) {
|
||||
} catch (ClassNotFoundException ignored) {
|
||||
return Class.forName(className, false, classLoader);
|
||||
}
|
||||
}
|
||||
|
@ -65,7 +65,7 @@ class CompactObjectInputStream extends ObjectInputStream {
|
||||
Class<?> clazz;
|
||||
try {
|
||||
clazz = classResolver.resolve(desc.getName());
|
||||
} catch (ClassNotFoundException ex) {
|
||||
} catch (ClassNotFoundException ignored) {
|
||||
clazz = super.resolveClass(desc);
|
||||
}
|
||||
|
||||
|
@ -21,7 +21,7 @@ import java.util.Map;
|
||||
|
||||
final class SoftReferenceMap<K, V> extends ReferenceMap<K, V> {
|
||||
|
||||
public SoftReferenceMap(Map<K, Reference<V>> delegate) {
|
||||
SoftReferenceMap(Map<K, Reference<V>> delegate) {
|
||||
super(delegate);
|
||||
}
|
||||
|
||||
|
@ -21,7 +21,7 @@ import java.util.Map;
|
||||
|
||||
final class WeakReferenceMap<K, V> extends ReferenceMap<K, V> {
|
||||
|
||||
public WeakReferenceMap(Map<K, Reference<V>> delegate) {
|
||||
WeakReferenceMap(Map<K, Reference<V>> delegate) {
|
||||
super(delegate);
|
||||
}
|
||||
|
||||
|
@ -26,9 +26,6 @@ import static io.netty.buffer.Unpooled.*;
|
||||
import static org.hamcrest.core.Is.*;
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
/**
|
||||
*/
|
||||
@SuppressWarnings("ZeroLengthArrayAllocation")
|
||||
public class ByteArrayDecoderTest {
|
||||
|
||||
private EmbeddedChannel ch;
|
||||
|
@ -31,6 +31,7 @@ public class JdkZlibTest extends ZlibTest {
|
||||
}
|
||||
|
||||
@Test(expected = DecompressionException.class)
|
||||
@Override
|
||||
public void testZLIB_OR_NONE3() throws Exception {
|
||||
super.testZLIB_OR_NONE3();
|
||||
}
|
||||
|
@ -30,6 +30,7 @@ public class ZlibCrossTest2 extends ZlibTest {
|
||||
}
|
||||
|
||||
@Test(expected = DecompressionException.class)
|
||||
@Override
|
||||
public void testZLIB_OR_NONE3() throws Exception {
|
||||
super.testZLIB_OR_NONE3();
|
||||
}
|
||||
|
@ -35,7 +35,6 @@ public abstract class AbstractReferenceCounted implements ReferenceCounted {
|
||||
refCntUpdater = updater;
|
||||
}
|
||||
|
||||
@SuppressWarnings("FieldMayBeFinal")
|
||||
private volatile int refCnt = 1;
|
||||
|
||||
@Override
|
||||
|
@ -48,7 +48,7 @@ public class DefaultAttributeMap implements AttributeMap {
|
||||
@SuppressWarnings("UnusedDeclaration")
|
||||
private volatile AtomicReferenceArray<DefaultAttribute<?>> attributes;
|
||||
|
||||
@SuppressWarnings({ "unchecked", "rawtypes" })
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public <T> Attribute<T> attr(AttributeKey<T> key) {
|
||||
if (key == null) {
|
||||
|
@ -222,7 +222,6 @@ public class HashedWheelTimer implements Timer {
|
||||
leak = leakDetector.open(this);
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
private static HashedWheelBucket[] createWheel(int ticksPerWheel) {
|
||||
if (ticksPerWheel <= 0) {
|
||||
throw new IllegalArgumentException(
|
||||
@ -306,7 +305,7 @@ public class HashedWheelTimer implements Timer {
|
||||
workerThread.interrupt();
|
||||
try {
|
||||
workerThread.join(100);
|
||||
} catch (InterruptedException e) {
|
||||
} catch (InterruptedException ignored) {
|
||||
interrupted = true;
|
||||
}
|
||||
}
|
||||
@ -397,8 +396,7 @@ public class HashedWheelTimer implements Timer {
|
||||
continue;
|
||||
}
|
||||
long calculated = timeout.deadline / tickDuration;
|
||||
long remainingRounds = (calculated - tick) / wheel.length;
|
||||
timeout.remainingRounds = remainingRounds;
|
||||
timeout.remainingRounds = (calculated - tick) / wheel.length;
|
||||
|
||||
final long ticks = Math.max(calculated, tick); // Ensure we don't schedule for past.
|
||||
int stopIndex = (int) (ticks & mask);
|
||||
@ -439,7 +437,7 @@ public class HashedWheelTimer implements Timer {
|
||||
|
||||
try {
|
||||
Thread.sleep(sleepTimeMs);
|
||||
} catch (InterruptedException e) {
|
||||
} catch (InterruptedException ignored) {
|
||||
if (WORKER_STATE_UPDATER.get(HashedWheelTimer.this) == WORKER_STATE_SHUTDOWN) {
|
||||
return Long.MIN_VALUE;
|
||||
}
|
||||
|
@ -164,7 +164,7 @@ public abstract class Recycler<T> {
|
||||
private final WeakReference<Thread> owner;
|
||||
private final int id = ID_GENERATOR.getAndIncrement();
|
||||
|
||||
public WeakOrderQueue(Stack<?> stack, Thread thread) {
|
||||
WeakOrderQueue(Stack<?> stack, Thread thread) {
|
||||
head = tail = new Link();
|
||||
owner = new WeakReference<Thread>(thread);
|
||||
synchronized (stack) {
|
||||
@ -194,7 +194,7 @@ public abstract class Recycler<T> {
|
||||
}
|
||||
|
||||
// transfer as many items as we can from this queue to the stack, returning true if any were transferred
|
||||
@SuppressWarnings({ "unchecked", "rawtypes" })
|
||||
@SuppressWarnings("rawtypes")
|
||||
boolean transfer(Stack<?> to) {
|
||||
|
||||
Link head = this.head;
|
||||
|
@ -132,7 +132,7 @@ public final class Version {
|
||||
private static long parseIso8601(String value) {
|
||||
try {
|
||||
return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z").parse(value).getTime();
|
||||
} catch (ParseException e) {
|
||||
} catch (ParseException ignored) {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
@ -47,7 +47,7 @@ public class IntObjectHashMap<V> implements IntObjectMap<V>, Iterable<IntObjectM
|
||||
/** The maximum number of elements allowed without allocating more space. */
|
||||
private int maxSize;
|
||||
|
||||
/** The load factor for the map. Used to calculate {@link maxSize}. */
|
||||
/** The load factor for the map. Used to calculate {@link #maxSize}. */
|
||||
private final float loadFactor;
|
||||
|
||||
private byte[] states;
|
||||
@ -74,10 +74,13 @@ public class IntObjectHashMap<V> implements IntObjectMap<V>, Iterable<IntObjectM
|
||||
|
||||
this.loadFactor = loadFactor;
|
||||
|
||||
// Adjust the initial capacity if necessary.
|
||||
initialCapacity = adjustCapacity(initialCapacity);
|
||||
|
||||
// Allocate the arrays.
|
||||
states = new byte[initialCapacity];
|
||||
keys = new int[initialCapacity];
|
||||
@SuppressWarnings("unchecked")
|
||||
@SuppressWarnings({ "unchecked", "SuspiciousArrayCast" })
|
||||
V[] temp = (V[]) new Object[initialCapacity];
|
||||
values = temp;
|
||||
|
||||
@ -99,7 +102,7 @@ public class IntObjectHashMap<V> implements IntObjectMap<V>, Iterable<IntObjectM
|
||||
int hash = hash(key);
|
||||
int capacity = capacity();
|
||||
int index = hash % capacity;
|
||||
int increment = 1 + (hash % (capacity - 2));
|
||||
int increment = 1 + hash % (capacity - 2);
|
||||
final int startIndex = index;
|
||||
int firstRemovedIndex = -1;
|
||||
do {
|
||||
@ -212,7 +215,7 @@ public class IntObjectHashMap<V> implements IntObjectMap<V>, Iterable<IntObjectM
|
||||
int i = -1;
|
||||
while ((i = nextEntryIndex(i + 1)) >= 0) {
|
||||
V next = values[i];
|
||||
if (value == next || (value != null && value.equals(next))) {
|
||||
if (value == next || value != null && value.equals(next)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -265,7 +268,7 @@ public class IntObjectHashMap<V> implements IntObjectMap<V>, Iterable<IntObjectM
|
||||
private int indexOf(int key) {
|
||||
int hash = hash(key);
|
||||
int capacity = capacity();
|
||||
int increment = 1 + (hash % (capacity - 2));
|
||||
int increment = 1 + hash % (capacity - 2);
|
||||
int index = hash % capacity;
|
||||
int startIndex = index;
|
||||
do {
|
||||
@ -305,7 +308,7 @@ public class IntObjectHashMap<V> implements IntObjectMap<V>, Iterable<IntObjectM
|
||||
/**
|
||||
* Creates a hash value for the given key.
|
||||
*/
|
||||
private int hash(int key) {
|
||||
private static int hash(int key) {
|
||||
// Just make sure the integer is positive.
|
||||
return key & Integer.MAX_VALUE;
|
||||
}
|
||||
@ -336,8 +339,7 @@ public class IntObjectHashMap<V> implements IntObjectMap<V>, Iterable<IntObjectM
|
||||
|
||||
if (size > maxSize) {
|
||||
// Need to grow the arrays.
|
||||
// TODO: consider using the next prime greater than capacity * 2.
|
||||
rehash(capacity() * 2);
|
||||
rehash(adjustCapacity(capacity() * 2));
|
||||
} else if (available == 0) {
|
||||
// Open addressing requires that we have at least 1 slot available. Need to refresh
|
||||
// the arrays to clear any removed elements.
|
||||
@ -346,7 +348,15 @@ public class IntObjectHashMap<V> implements IntObjectMap<V>, Iterable<IntObjectM
|
||||
}
|
||||
|
||||
/**
|
||||
* Marks the entry at the given index position as {@link REMOVED} and sets the value to
|
||||
* Adjusts the given capacity value to ensure that it's odd. Even capacities can break probing.
|
||||
* TODO: would be better to ensure it's prime as well.
|
||||
*/
|
||||
private static int adjustCapacity(int capacity) {
|
||||
return capacity | 1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Marks the entry at the given index position as {@link #REMOVED} and sets the value to
|
||||
* {@code null}.
|
||||
* <p>
|
||||
* TODO: consider performing re-compaction.
|
||||
@ -385,7 +395,7 @@ public class IntObjectHashMap<V> implements IntObjectMap<V>, Iterable<IntObjectM
|
||||
// New states array is automatically initialized to AVAILABLE (i.e. 0 == AVAILABLE).
|
||||
states = new byte[newCapacity];
|
||||
keys = new int[newCapacity];
|
||||
@SuppressWarnings("unchecked")
|
||||
@SuppressWarnings({ "unchecked", "SuspiciousArrayCast" })
|
||||
V[] temp = (V[]) new Object[newCapacity];
|
||||
values = temp;
|
||||
|
||||
|
@ -24,7 +24,7 @@ final class DefaultFutureListeners {
|
||||
private int progressiveSize; // the number of progressive listeners
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public DefaultFutureListeners(
|
||||
DefaultFutureListeners(
|
||||
GenericFutureListener<? extends Future<?>> first, GenericFutureListener<? extends Future<?>> second) {
|
||||
listeners = new GenericFutureListener[2];
|
||||
listeners[0] = first;
|
||||
|
@ -147,7 +147,6 @@ public class DefaultPromise<V> extends AbstractFuture<V> implements Promise<V> {
|
||||
if (listeners instanceof DefaultFutureListeners) {
|
||||
((DefaultFutureListeners) listeners).add(listener);
|
||||
} else {
|
||||
@SuppressWarnings("unchecked")
|
||||
final GenericFutureListener<? extends Future<V>> firstListener =
|
||||
(GenericFutureListener<? extends Future<V>>) listeners;
|
||||
listeners = new DefaultFutureListeners(firstListener, listener);
|
||||
@ -559,7 +558,6 @@ public class DefaultPromise<V> extends AbstractFuture<V> implements Promise<V> {
|
||||
if (listeners instanceof DefaultFutureListeners) {
|
||||
notifyListeners0(this, (DefaultFutureListeners) listeners);
|
||||
} else {
|
||||
@SuppressWarnings("unchecked")
|
||||
final GenericFutureListener<? extends Future<V>> l =
|
||||
(GenericFutureListener<? extends Future<V>>) listeners;
|
||||
notifyListener0(this, l);
|
||||
@ -582,7 +580,6 @@ public class DefaultPromise<V> extends AbstractFuture<V> implements Promise<V> {
|
||||
}
|
||||
});
|
||||
} else {
|
||||
@SuppressWarnings("unchecked")
|
||||
final GenericFutureListener<? extends Future<V>> l =
|
||||
(GenericFutureListener<? extends Future<V>>) listeners;
|
||||
execute(executor, new Runnable() {
|
||||
@ -729,7 +726,7 @@ public class DefaultPromise<V> extends AbstractFuture<V> implements Promise<V> {
|
||||
}
|
||||
}
|
||||
|
||||
@SuppressWarnings({ "unchecked", "rawtypes" })
|
||||
@SuppressWarnings("unchecked")
|
||||
void notifyProgressiveListeners(final long progress, final long total) {
|
||||
final Object listeners = progressiveListeners();
|
||||
if (listeners == null) {
|
||||
@ -794,7 +791,7 @@ public class DefaultPromise<V> extends AbstractFuture<V> implements Promise<V> {
|
||||
|
||||
private static final class CauseHolder {
|
||||
final Throwable cause;
|
||||
private CauseHolder(Throwable cause) {
|
||||
CauseHolder(Throwable cause) {
|
||||
this.cause = cause;
|
||||
}
|
||||
}
|
||||
|
@ -18,5 +18,6 @@ package io.netty.util.concurrent;
|
||||
/**
|
||||
* The result of an scheduled asynchronous operation.
|
||||
*/
|
||||
@SuppressWarnings("ClassNameSameAsAncestorName")
|
||||
public interface ScheduledFuture<V> extends Future<V>, java.util.concurrent.ScheduledFuture<V> {
|
||||
}
|
||||
|
@ -30,6 +30,7 @@ public final class EmptyArrays {
|
||||
public static final short[] EMPTY_SHORTS = new short[0];
|
||||
public static final long[] EMPTY_LONGS = new long[0];
|
||||
public static final Object[] EMPTY_OBJECTS = new Object[0];
|
||||
public static final Class<?>[] EMPTY_CLASSES = new Class[0];
|
||||
public static final String[] EMPTY_STRINGS = new String[0];
|
||||
public static final StackTraceElement[] EMPTY_STACK_TRACE = new StackTraceElement[0];
|
||||
public static final ByteBuffer[] EMPTY_BYTE_BUFFERS = new ByteBuffer[0];
|
||||
|
@ -87,8 +87,7 @@ final class PlatformDependent0 {
|
||||
// http://www.mail-archive.com/jdk6-dev@openjdk.java.net/msg00698.html
|
||||
try {
|
||||
unsafe.getClass().getDeclaredMethod(
|
||||
"copyMemory",
|
||||
new Class[] { Object.class, long.class, Object.class, long.class, long.class });
|
||||
"copyMemory", Object.class, long.class, Object.class, long.class, long.class);
|
||||
|
||||
logger.debug("sun.misc.Unsafe.copyMemory: available");
|
||||
} catch (NoSuchMethodError t) {
|
||||
|
@ -29,12 +29,12 @@ import java.util.regex.Pattern;
|
||||
*/
|
||||
public final class SystemPropertyUtil {
|
||||
|
||||
@SuppressWarnings("all")
|
||||
private static boolean initializedLogger;
|
||||
private static final InternalLogger logger;
|
||||
private static boolean loggedException;
|
||||
|
||||
static {
|
||||
initializedLogger = false;
|
||||
logger = InternalLoggerFactory.getInstance(SystemPropertyUtil.class);
|
||||
initializedLogger = true;
|
||||
}
|
||||
|
@ -35,6 +35,14 @@ public abstract class InternalLoggerFactory {
|
||||
|
||||
static {
|
||||
final String name = InternalLoggerFactory.class.getName();
|
||||
InternalLoggerFactory f;
|
||||
f = newDefaultFactory(name);
|
||||
|
||||
defaultFactory = f;
|
||||
}
|
||||
|
||||
@SuppressWarnings("UnusedCatchParameter")
|
||||
private static InternalLoggerFactory newDefaultFactory(String name) {
|
||||
InternalLoggerFactory f;
|
||||
try {
|
||||
f = new Slf4JLoggerFactory(true);
|
||||
@ -49,8 +57,7 @@ public abstract class InternalLoggerFactory {
|
||||
f.newInstance(name).debug("Using java.util.logging as the default logging framework");
|
||||
}
|
||||
}
|
||||
|
||||
defaultFactory = f;
|
||||
return f;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -72,7 +72,7 @@ class Log4JLogger extends AbstractInternalLogger {
|
||||
try {
|
||||
logger.isTraceEnabled();
|
||||
return true;
|
||||
} catch (NoSuchMethodError e) {
|
||||
} catch (NoSuchMethodError ignored) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -52,7 +52,7 @@ class Slf4JLogger extends AbstractInternalLogger {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void trace(String format, Object[] argArray) {
|
||||
public void trace(String format, Object... argArray) {
|
||||
logger.trace(format, argArray);
|
||||
}
|
||||
|
||||
@ -82,7 +82,7 @@ class Slf4JLogger extends AbstractInternalLogger {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void debug(String format, Object[] argArray) {
|
||||
public void debug(String format, Object... argArray) {
|
||||
logger.debug(format, argArray);
|
||||
}
|
||||
|
||||
@ -112,7 +112,7 @@ class Slf4JLogger extends AbstractInternalLogger {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void info(String format, Object[] argArray) {
|
||||
public void info(String format, Object... argArray) {
|
||||
logger.info(format, argArray);
|
||||
}
|
||||
|
||||
@ -137,7 +137,7 @@ class Slf4JLogger extends AbstractInternalLogger {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void warn(String format, Object[] argArray) {
|
||||
public void warn(String format, Object... argArray) {
|
||||
logger.warn(format, argArray);
|
||||
}
|
||||
|
||||
@ -172,7 +172,7 @@ class Slf4JLogger extends AbstractInternalLogger {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void error(String format, Object[] argArray) {
|
||||
public void error(String format, Object... argArray) {
|
||||
logger.error(format, argArray);
|
||||
}
|
||||
|
||||
|
@ -54,7 +54,7 @@ public class Slf4JLoggerFactory extends InternalLoggerFactory {
|
||||
if (LoggerFactory.getILoggerFactory() instanceof NOPLoggerFactory) {
|
||||
throw new NoClassDefFoundError(buf.toString());
|
||||
} else {
|
||||
err.print(buf.toString());
|
||||
err.print(buf);
|
||||
err.flush();
|
||||
}
|
||||
} finally {
|
||||
|
@ -42,10 +42,10 @@ public class DefaultAttributeMapTest {
|
||||
assertSame(one, map.attr(key));
|
||||
|
||||
one.setIfAbsent("Whoohoo");
|
||||
assertSame(one.get(), "Whoohoo");
|
||||
assertSame("Whoohoo", one.get());
|
||||
|
||||
one.setIfAbsent("What");
|
||||
assertNotSame(one.get(), "What");
|
||||
assertNotSame("What", one.get());
|
||||
|
||||
one.remove();
|
||||
assertNull(one.get());
|
||||
@ -62,7 +62,7 @@ public class DefaultAttributeMapTest {
|
||||
assertEquals(one.get(), Integer.valueOf(3653));
|
||||
|
||||
one.setIfAbsent(1);
|
||||
assertNotSame(one.get(), 1);
|
||||
assertNotSame(1, one.get());
|
||||
|
||||
one.remove();
|
||||
assertNull(one.get());
|
||||
|
@ -40,14 +40,14 @@ public class RecyclerTest {
|
||||
|
||||
private static final Recycler<RecyclableObject> RECYCLER = new Recycler<RecyclableObject>() {
|
||||
@Override
|
||||
protected RecyclableObject newObject(Handle handle) {
|
||||
protected RecyclableObject newObject(Handle<RecyclableObject> handle) {
|
||||
return new RecyclableObject(handle);
|
||||
}
|
||||
};
|
||||
|
||||
private final Recycler.Handle handle;
|
||||
private final Recycler.Handle<RecyclableObject> handle;
|
||||
|
||||
private RecyclableObject(Recycler.Handle handle) {
|
||||
private RecyclableObject(Recycler.Handle<RecyclableObject> handle) {
|
||||
this.handle = handle;
|
||||
}
|
||||
|
||||
|
@ -14,17 +14,13 @@
|
||||
*/
|
||||
package io.netty.util.collection;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertFalse;
|
||||
import static org.junit.Assert.assertNull;
|
||||
import static org.junit.Assert.assertSame;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
/**
|
||||
* Tests for {@link IntObjectHashMap}.
|
||||
@ -34,7 +30,7 @@ public class IntObjectHashMapTest {
|
||||
private static class Value {
|
||||
private final String name;
|
||||
|
||||
public Value(String name) {
|
||||
Value(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@ -42,7 +38,7 @@ public class IntObjectHashMapTest {
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((name == null) ? 0 : name.hashCode());
|
||||
result = prime * result + (name == null ? 0 : name.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
|
@ -61,7 +61,7 @@ public class AppendableCharSequenceTest {
|
||||
public void testSubSequence() {
|
||||
AppendableCharSequence master = new AppendableCharSequence(26);
|
||||
master.append("abcdefghijlkmonpqrstuvwxyz");
|
||||
assertEquals(master.subSequence(0, 10).toString(), "abcdefghij");
|
||||
assertEquals("abcdefghij", master.subSequence(0, 10).toString());
|
||||
}
|
||||
|
||||
private static void testSimpleAppend0(AppendableCharSequence seq) {
|
||||
|
@ -83,17 +83,14 @@ public class TypeParameterMatcherTest {
|
||||
|
||||
public static class TypeQ<I extends BBB> extends TypeZ<AAA, I> { }
|
||||
|
||||
@SuppressWarnings("ClassMayBeInterface")
|
||||
public static class A { }
|
||||
public static class AA extends A { }
|
||||
public static class AAA extends AA { }
|
||||
|
||||
@SuppressWarnings("ClassMayBeInterface")
|
||||
public static class B { }
|
||||
public static class BB extends B { }
|
||||
public static class BBB extends BB { }
|
||||
|
||||
@SuppressWarnings("ClassMayBeInterface")
|
||||
public static class C { }
|
||||
public static class CC extends C { }
|
||||
|
||||
@ -104,7 +101,6 @@ public class TypeParameterMatcherTest {
|
||||
assertTrue(m.match(new T()));
|
||||
}
|
||||
|
||||
@SuppressWarnings("ClassMayBeInterface")
|
||||
private static class T { }
|
||||
private static class U<E> { E a; }
|
||||
|
||||
|
@ -24,8 +24,6 @@ import io.netty.channel.EventLoopGroup;
|
||||
import io.netty.channel.nio.NioEventLoopGroup;
|
||||
import io.netty.channel.socket.SocketChannel;
|
||||
import io.netty.channel.socket.nio.NioSocketChannel;
|
||||
import io.netty.handler.logging.LogLevel;
|
||||
import io.netty.handler.logging.LoggingHandler;
|
||||
import io.netty.handler.ssl.SslContext;
|
||||
import io.netty.handler.ssl.util.InsecureTrustManagerFactory;
|
||||
|
||||
|
@ -17,7 +17,7 @@ package io.netty.example.http.cors;
|
||||
|
||||
import io.netty.channel.ChannelFutureListener;
|
||||
import io.netty.channel.ChannelHandlerContext;
|
||||
import io.netty.channel.SimpleChannelInboundHandler;
|
||||
import io.netty.channel.ChannelInboundHandlerAdapter;
|
||||
import io.netty.handler.codec.http.DefaultFullHttpResponse;
|
||||
import io.netty.handler.codec.http.FullHttpResponse;
|
||||
import io.netty.handler.codec.http.HttpResponseStatus;
|
||||
@ -27,10 +27,10 @@ import io.netty.handler.codec.http.HttpVersion;
|
||||
* A simple handler which will simple return a successful Http
|
||||
* response for any request.
|
||||
*/
|
||||
public class OkResponseHandler extends SimpleChannelInboundHandler<Object> {
|
||||
public class OkResponseHandler extends ChannelInboundHandlerAdapter {
|
||||
|
||||
@Override
|
||||
public void channelRead0(ChannelHandlerContext ctx, Object msg) throws Exception {
|
||||
public void channelRead(ChannelHandlerContext ctx, Object msg) {
|
||||
final FullHttpResponse response = new DefaultFullHttpResponse(HttpVersion.HTTP_1_1, HttpResponseStatus.OK);
|
||||
response.headers().set("custom-response-header", "Some value");
|
||||
ctx.writeAndFlush(response).addListener(ChannelFutureListener.CLOSE);
|
||||
|
@ -26,7 +26,7 @@ import io.netty.handler.ssl.SslContext;
|
||||
import io.netty.handler.ssl.SslProvider;
|
||||
import io.netty.handler.ssl.util.SelfSignedCertificate;
|
||||
|
||||
public class HttpStaticFileServer {
|
||||
public final class HttpStaticFileServer {
|
||||
|
||||
static final boolean SSL = System.getProperty("ssl") != null;
|
||||
static final int PORT = Integer.parseInt(System.getProperty("port", SSL? "8443" : "8080"));
|
||||
|
@ -53,7 +53,6 @@ import java.util.TimeZone;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
import static io.netty.handler.codec.http.HttpHeaders.Names.*;
|
||||
import static io.netty.handler.codec.http.HttpHeaders.*;
|
||||
import static io.netty.handler.codec.http.HttpMethod.*;
|
||||
import static io.netty.handler.codec.http.HttpResponseStatus.*;
|
||||
import static io.netty.handler.codec.http.HttpVersion.*;
|
||||
@ -175,10 +174,10 @@ public class HttpStaticFileServerHandler extends SimpleChannelInboundHandler<Ful
|
||||
long fileLength = raf.length();
|
||||
|
||||
HttpResponse response = new DefaultHttpResponse(HTTP_1_1, OK);
|
||||
setContentLength(response, fileLength);
|
||||
HttpHeaders.setContentLength(response, fileLength);
|
||||
setContentTypeHeader(response, file);
|
||||
setDateAndCacheHeaders(response, file);
|
||||
if (isKeepAlive(request)) {
|
||||
if (HttpHeaders.isKeepAlive(request)) {
|
||||
response.headers().set(CONNECTION, HttpHeaders.Values.KEEP_ALIVE);
|
||||
}
|
||||
|
||||
@ -216,7 +215,7 @@ public class HttpStaticFileServerHandler extends SimpleChannelInboundHandler<Ful
|
||||
ChannelFuture lastContentFuture = ctx.writeAndFlush(LastHttpContent.EMPTY_LAST_CONTENT);
|
||||
|
||||
// Decide whether to close the connection or not.
|
||||
if (!isKeepAlive(request)) {
|
||||
if (!HttpHeaders.isKeepAlive(request)) {
|
||||
// Close the connection when the whole content is written out.
|
||||
lastContentFuture.addListener(ChannelFutureListener.CLOSE);
|
||||
}
|
||||
|
@ -22,9 +22,9 @@ import io.netty.channel.ChannelInboundHandlerAdapter;
|
||||
import io.netty.handler.codec.AsciiString;
|
||||
import io.netty.handler.codec.http.DefaultFullHttpResponse;
|
||||
import io.netty.handler.codec.http.FullHttpResponse;
|
||||
import io.netty.handler.codec.http.HttpHeaders;
|
||||
import io.netty.handler.codec.http.HttpRequest;
|
||||
|
||||
import static io.netty.handler.codec.http.HttpHeaders.*;
|
||||
import static io.netty.handler.codec.http.HttpResponseStatus.*;
|
||||
import static io.netty.handler.codec.http.HttpVersion.*;
|
||||
|
||||
@ -46,10 +46,10 @@ public class HttpHelloWorldServerHandler extends ChannelInboundHandlerAdapter {
|
||||
if (msg instanceof HttpRequest) {
|
||||
HttpRequest req = (HttpRequest) msg;
|
||||
|
||||
if (is100ContinueExpected(req)) {
|
||||
if (HttpHeaders.is100ContinueExpected(req)) {
|
||||
ctx.write(new DefaultFullHttpResponse(HTTP_1_1, CONTINUE));
|
||||
}
|
||||
boolean keepAlive = isKeepAlive(req);
|
||||
boolean keepAlive = HttpHeaders.isKeepAlive(req);
|
||||
FullHttpResponse response = new DefaultFullHttpResponse(HTTP_1_1, OK, Unpooled.wrappedBuffer(CONTENT));
|
||||
response.headers().set(CONTENT_TYPE, "text/plain");
|
||||
response.headers().set(CONTENT_LENGTH, response.content().readableBytes());
|
||||
|
@ -27,7 +27,7 @@ import io.netty.util.CharsetUtil;
|
||||
public class HttpSnoopClientHandler extends SimpleChannelInboundHandler<HttpObject> {
|
||||
|
||||
@Override
|
||||
public void channelRead0(ChannelHandlerContext ctx, HttpObject msg) throws Exception {
|
||||
public void channelRead0(ChannelHandlerContext ctx, HttpObject msg) {
|
||||
if (msg instanceof HttpResponse) {
|
||||
HttpResponse response = (HttpResponse) msg;
|
||||
|
||||
|
@ -29,7 +29,7 @@ import io.netty.handler.ssl.util.SelfSignedCertificate;
|
||||
* An HTTP server that sends back the content of the received HTTP request
|
||||
* in a pretty plaintext form.
|
||||
*/
|
||||
public class HttpSnoopServer {
|
||||
public final class HttpSnoopServer {
|
||||
|
||||
static final boolean SSL = System.getProperty("ssl") != null;
|
||||
static final int PORT = Integer.parseInt(System.getProperty("port", SSL? "8443" : "8080"));
|
||||
|
@ -40,7 +40,6 @@ import java.util.Map.Entry;
|
||||
import java.util.Set;
|
||||
|
||||
import static io.netty.handler.codec.http.HttpHeaders.Names.*;
|
||||
import static io.netty.handler.codec.http.HttpHeaders.*;
|
||||
import static io.netty.handler.codec.http.HttpResponseStatus.*;
|
||||
import static io.netty.handler.codec.http.HttpVersion.*;
|
||||
|
||||
@ -60,7 +59,7 @@ public class HttpSnoopServerHandler extends SimpleChannelInboundHandler<Object>
|
||||
if (msg instanceof HttpRequest) {
|
||||
HttpRequest request = this.request = (HttpRequest) msg;
|
||||
|
||||
if (is100ContinueExpected(request)) {
|
||||
if (HttpHeaders.is100ContinueExpected(request)) {
|
||||
send100Continue(ctx);
|
||||
}
|
||||
|
||||
@ -69,7 +68,7 @@ public class HttpSnoopServerHandler extends SimpleChannelInboundHandler<Object>
|
||||
buf.append("===================================\r\n");
|
||||
|
||||
buf.append("VERSION: ").append(request.protocolVersion()).append("\r\n");
|
||||
buf.append("HOSTNAME: ").append(getHost(request, "unknown")).append("\r\n");
|
||||
buf.append("HOSTNAME: ").append(HttpHeaders.getHost(request, "unknown")).append("\r\n");
|
||||
buf.append("REQUEST_URI: ").append(request.uri()).append("\r\n\r\n");
|
||||
|
||||
HttpHeaders headers = request.headers();
|
||||
@ -145,7 +144,7 @@ public class HttpSnoopServerHandler extends SimpleChannelInboundHandler<Object>
|
||||
|
||||
private boolean writeResponse(HttpObject currentObj, ChannelHandlerContext ctx) {
|
||||
// Decide whether to close the connection or not.
|
||||
boolean keepAlive = isKeepAlive(request);
|
||||
boolean keepAlive = HttpHeaders.isKeepAlive(request);
|
||||
// Build the response object.
|
||||
FullHttpResponse response = new DefaultFullHttpResponse(
|
||||
HTTP_1_1, currentObj.decoderResult().isSuccess()? OK : BAD_REQUEST,
|
||||
|
@ -32,7 +32,7 @@ public class HttpUploadClientHandler extends SimpleChannelInboundHandler<HttpObj
|
||||
private boolean readingChunks;
|
||||
|
||||
@Override
|
||||
public void channelRead0(ChannelHandlerContext ctx, HttpObject msg) throws Exception {
|
||||
public void channelRead0(ChannelHandlerContext ctx, HttpObject msg) {
|
||||
if (msg instanceof HttpResponse) {
|
||||
HttpResponse response = (HttpResponse) msg;
|
||||
|
||||
|
@ -28,7 +28,7 @@ import io.netty.handler.ssl.util.SelfSignedCertificate;
|
||||
/**
|
||||
* A HTTP server showing how to use the HTTP multipart package for file uploads and decoding post data.
|
||||
*/
|
||||
public class HttpUploadServer {
|
||||
public final class HttpUploadServer {
|
||||
|
||||
static final boolean SSL = System.getProperty("ssl") != null;
|
||||
static final int PORT = Integer.parseInt(System.getProperty("port", SSL? "8443" : "8080"));
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user