Search in sources :

Example 6 with PriorityDetails

use of com.webpieces.http2parser.api.dto.lib.PriorityDetails in project webpieces by deanhiller.

the class PriorityMarshaller method marshal.

@Override
public DataWrapper marshal(Http2Frame frame) {
    PriorityFrame castFrame = (PriorityFrame) frame;
    PriorityDetails priorityDetails = castFrame.getPriorityDetails();
    DataWrapper payload = marshalPriorityDetails(bufferPool, priorityDetails, frame);
    return super.marshalFrame(frame, (byte) 0, payload);
}
Also used : DataWrapper(org.webpieces.data.api.DataWrapper) PriorityDetails(com.webpieces.http2parser.api.dto.lib.PriorityDetails) PriorityFrame(com.webpieces.http2parser.api.dto.PriorityFrame)

Example 7 with PriorityDetails

use of com.webpieces.http2parser.api.dto.lib.PriorityDetails in project webpieces by deanhiller.

the class PriorityMarshaller method unmarshal.

@Override
public AbstractHttp2Frame unmarshal(Http2MementoImpl state, DataWrapper framePayloadData) {
    FrameHeaderData frameHeaderData = state.getFrameHeaderData();
    int streamId = frameHeaderData.getStreamId();
    if (state.getFrameHeaderData().getPayloadLength() != 5)
        throw new StreamException(CancelReasonCode.FRAME_SIZE_INCORRECT, streamId, "priority size not 5 and instead is=" + state.getFrameHeaderData().getPayloadLength());
    PriorityFrame frame = new PriorityFrame();
    PriorityDetails priorityDetails = frame.getPriorityDetails();
    super.unmarshalFrame(state, frame);
    ByteBuffer payloadByteBuffer = bufferPool.createWithDataWrapper(framePayloadData);
    int firstInt = payloadByteBuffer.getInt();
    priorityDetails.setStreamDependencyIsExclusive((firstInt >>> 31) == 0x1);
    int streamDependency = firstInt & 0x7FFFFFFF;
    if (frame.getStreamId() == 0) {
        throw new ConnectionException(CancelReasonCode.INVALID_STREAM_ID, frame.getStreamId(), "priority cannot be streamid 0 and was=" + frame.getStreamId());
    } else if (streamDependency == frame.getStreamId()) {
        // Can't depend on self
        throw new ConnectionException(CancelReasonCode.BAD_STREAM_DEPENDENCY, streamDependency, "stream id=" + streamDependency + " depends on itself");
    }
    priorityDetails.setStreamDependency(streamDependency);
    priorityDetails.setWeight((short) (payloadByteBuffer.get() & 0xFF));
    bufferPool.releaseBuffer(payloadByteBuffer);
    return frame;
}
Also used : FrameHeaderData(com.webpieces.http2parser.impl.FrameHeaderData) PriorityDetails(com.webpieces.http2parser.api.dto.lib.PriorityDetails) PriorityFrame(com.webpieces.http2parser.api.dto.PriorityFrame) ByteBuffer(java.nio.ByteBuffer) ConnectionException(com.webpieces.http2parser.api.dto.error.ConnectionException) StreamException(com.webpieces.http2parser.api.dto.error.StreamException)

Example 8 with PriorityDetails

use of com.webpieces.http2parser.api.dto.lib.PriorityDetails in project webpieces by deanhiller.

the class TestHttp2Priority method testMarshalPriorityFrame.

@Test
public void testMarshalPriorityFrame() {
    PriorityFrame frame = new PriorityFrame();
    frame.setStreamId(1);
    PriorityDetails details = frame.getPriorityDetails();
    details.setStreamDependency(4);
    details.setStreamDependencyIsExclusive(true);
    details.setWeight((short) 0x5);
    byte[] data = parser.marshal(frame).createByteArray();
    String hexFrame = Util.toHexString(data);
    Assert.assertEquals(priorityFrame(), hexFrame);
}
Also used : PriorityDetails(com.webpieces.http2parser.api.dto.lib.PriorityDetails) PriorityFrame(com.webpieces.http2parser.api.dto.PriorityFrame) Test(org.junit.Test)

Example 9 with PriorityDetails

use of com.webpieces.http2parser.api.dto.lib.PriorityDetails in project webpieces by deanhiller.

the class TestHttp2Priority method testParsePriorityFrameMSB.

@Test
public void testParsePriorityFrameMSB() {
    DataWrapper data = Util.hexToBytes(priorityFrameMSB());
    parser.parse(memento, data);
    PriorityFrame frame = (PriorityFrame) assertGood();
    Assert.assertEquals(1, frame.getStreamId());
    PriorityDetails details = frame.getPriorityDetails();
    Assert.assertTrue(details.isStreamDependencyIsExclusive());
    Assert.assertEquals(255, details.getWeight());
    Assert.assertEquals(4, details.getStreamDependency());
}
Also used : DataWrapper(org.webpieces.data.api.DataWrapper) PriorityDetails(com.webpieces.http2parser.api.dto.lib.PriorityDetails) PriorityFrame(com.webpieces.http2parser.api.dto.PriorityFrame) Test(org.junit.Test)

Aggregations

PriorityDetails (com.webpieces.http2parser.api.dto.lib.PriorityDetails)9 PriorityFrame (com.webpieces.http2parser.api.dto.PriorityFrame)7 Test (org.junit.Test)5 DataWrapper (org.webpieces.data.api.DataWrapper)5 ConnectionException (com.webpieces.http2parser.api.dto.error.ConnectionException)3 HeadersFrame (com.webpieces.http2parser.api.dto.HeadersFrame)2 ByteBuffer (java.nio.ByteBuffer)2 Http2Request (com.webpieces.hpack.api.dto.Http2Request)1 StreamException (com.webpieces.http2parser.api.dto.error.StreamException)1 DataSplit (com.webpieces.http2parser.impl.DataSplit)1 FrameHeaderData (com.webpieces.http2parser.impl.FrameHeaderData)1 MockResponseListener (org.webpieces.http2client.mock.MockResponseListener)1