netty5/codec-http/src/main/java/io/netty/handler/codec/spdy/DefaultSpdySynStreamFrame.java

133 lines
3.9 KiB
Java
Raw Normal View History

2012-05-31 09:37:27 +02:00
/*
2013-06-04 23:32:11 +02:00
* Copyright 2013 The Netty Project
2012-05-31 09:37:27 +02:00
*
* 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:
*
2012-06-04 22:31:44 +02:00
* http://www.apache.org/licenses/LICENSE-2.0
2012-05-31 09:37:27 +02:00
*
* 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 io.netty.handler.codec.spdy;
import io.netty.util.internal.StringUtil;
/**
* The default {@link SpdySynStreamFrame} implementation.
*/
2013-06-04 23:32:11 +02:00
public class DefaultSpdySynStreamFrame extends DefaultSpdyHeadersFrame
2012-05-31 09:37:27 +02:00
implements SpdySynStreamFrame {
private int associatedStreamId;
2012-05-31 09:37:27 +02:00
private byte priority;
private boolean unidirectional;
/**
* Creates a new instance.
*
* @param streamId the Stream-ID of this frame
* @param associatedStreamId the Associated-To-Stream-ID of this frame
* @param priority the priority of the stream
2012-05-31 09:37:27 +02:00
*/
public DefaultSpdySynStreamFrame(int streamId, int associatedStreamId, byte priority) {
2013-06-04 23:32:11 +02:00
super(streamId);
setAssociatedStreamId(associatedStreamId);
2012-05-31 09:37:27 +02:00
setPriority(priority);
}
@Override
2013-06-04 23:32:11 +02:00
public SpdySynStreamFrame setStreamId(int streamId) {
super.setStreamId(streamId);
return this;
2012-05-31 09:37:27 +02:00
}
@Override
2013-06-04 23:32:11 +02:00
public SpdySynStreamFrame setLast(boolean last) {
super.setLast(last);
return this;
}
@Override
public SpdySynStreamFrame setInvalid() {
super.setInvalid();
return this;
2012-05-31 09:37:27 +02:00
}
@Override
public int associatedStreamId() {
return associatedStreamId;
}
@Override
public SpdySynStreamFrame setAssociatedStreamId(int associatedStreamId) {
if (associatedStreamId < 0) {
2012-05-31 09:37:27 +02:00
throw new IllegalArgumentException(
"Associated-To-Stream-ID cannot be negative: " +
associatedStreamId);
2012-05-31 09:37:27 +02:00
}
this.associatedStreamId = associatedStreamId;
return this;
2012-05-31 09:37:27 +02:00
}
@Override
public byte priority() {
2012-05-31 09:37:27 +02:00
return priority;
}
@Override
public SpdySynStreamFrame setPriority(byte priority) {
2012-05-31 09:37:27 +02:00
if (priority < 0 || priority > 7) {
throw new IllegalArgumentException(
"Priority must be between 0 and 7 inclusive: " + priority);
}
this.priority = priority;
return this;
2012-05-31 09:37:27 +02:00
}
@Override
public boolean isUnidirectional() {
return unidirectional;
}
@Override
public SpdySynStreamFrame setUnidirectional(boolean unidirectional) {
2012-05-31 09:37:27 +02:00
this.unidirectional = unidirectional;
return this;
}
2012-05-31 09:37:27 +02:00
@Override
public String toString() {
StringBuilder buf = new StringBuilder();
buf.append(StringUtil.simpleClassName(this));
2012-05-31 09:37:27 +02:00
buf.append("(last: ");
buf.append(isLast());
buf.append("; unidirectional: ");
buf.append(isUnidirectional());
buf.append(')');
buf.append(StringUtil.NEWLINE);
buf.append("--> Stream-ID = ");
buf.append(streamId());
2012-05-31 09:37:27 +02:00
buf.append(StringUtil.NEWLINE);
if (associatedStreamId != 0) {
2012-05-31 09:37:27 +02:00
buf.append("--> Associated-To-Stream-ID = ");
buf.append(associatedStreamId());
2012-05-31 09:37:27 +02:00
buf.append(StringUtil.NEWLINE);
}
buf.append("--> Priority = ");
buf.append(priority());
2012-05-31 09:37:27 +02:00
buf.append(StringUtil.NEWLINE);
buf.append("--> Headers:");
buf.append(StringUtil.NEWLINE);
appendHeaders(buf);
// Remove the last newline.
buf.setLength(buf.length() - StringUtil.NEWLINE.length());
return buf.toString();
}
}