com.webpieces.http2parser.impl.marshallers.DataMarshaller Maven / Gradle / Ivy
package com.webpieces.http2parser.impl.marshallers;
import org.webpieces.data.api.BufferPool;
import org.webpieces.data.api.DataWrapper;
import org.webpieces.data.api.DataWrapperGenerator;
import com.webpieces.http2.api.dto.error.CancelReasonCode;
import com.webpieces.http2.api.dto.error.ConnectionException;
import com.webpieces.http2.api.dto.lowlevel.DataFrame;
import com.webpieces.http2.api.dto.lowlevel.lib.AbstractHttp2Frame;
import com.webpieces.http2.api.dto.lowlevel.lib.Http2Frame;
import com.webpieces.http2parser.impl.DataSplit;
import com.webpieces.http2parser.impl.Http2MementoImpl;
import com.webpieces.http2parser.impl.PaddingUtil;
public class DataMarshaller extends AbstractFrameMarshaller implements FrameMarshaller {
public DataMarshaller(BufferPool bufferPool, DataWrapperGenerator dataGen) {
super(bufferPool);
}
@Override
public DataWrapper marshal(Http2Frame frame) {
DataFrame castFrame = (DataFrame) frame;
int paddingSize = castFrame.getPadding().getReadableSize();
if(frame.getStreamId() == 0)
throw new ConnectionException(CancelReasonCode.INVALID_STREAM_ID, frame.getStreamId(),
"data frame had invalid stream id="+frame.getStreamId());
byte value = (byte) 0x0;
if (castFrame.isEndOfStream()) value |= 0x1;
if (paddingSize > 0) value |= 0x8;
DataWrapper dataPayload = PaddingUtil.padDataIfNeeded(castFrame.getData(), castFrame.getPadding());
return super.marshalFrame(frame, value, dataPayload);
}
@Override
public AbstractHttp2Frame unmarshal(Http2MementoImpl state, DataWrapper framePayloadData) {
DataFrame frame = new DataFrame();
super.unmarshalFrame(state, frame);
byte flags = state.getFrameHeaderData().getFlagsByte();
frame.setEndOfStream((flags & 0x1) == 0x1);
boolean isPadded = (flags & 0x8) == 0x8;
DataSplit split = PaddingUtil.extractPayloadAndPadding(isPadded, framePayloadData, frame.getStreamId());
frame.setData(split.getPayload());
frame.setPadding(split.getPadding());
if(frame.getStreamId() == 0)
throw new ConnectionException(CancelReasonCode.INVALID_STREAM_ID, frame.getStreamId(),
"headers frame had invalid stream id="+frame.getStreamId());
return frame;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy