All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.mklinger.qetcher.client.jetty.http2.parser.BodyParser Maven / Gradle / Ivy

There is a newer version: 2.0.42.rc
Show newest version
//
//  ========================================================================
//  Copyright (c) 1995-2018 Mort Bay Consulting Pty. Ltd.
//  ------------------------------------------------------------------------
//  All rights reserved. This program and the accompanying materials
//  are made available under the terms of the Eclipse Public License v1.0
//  and Apache License v2.0 which accompanies this distribution.
//
//      The Eclipse Public License is available at
//      http://www.eclipse.org/legal/epl-v10.html
//
//      The Apache License v2.0 is available at
//      http://www.opensource.org/licenses/apache2.0.php
//
//  You may elect to redistribute this code under either of these licenses.
//  ========================================================================
//

package org.eclipse.jetty.http2.parser;

import java.nio.ByteBuffer;

import org.eclipse.jetty.http2.ErrorCode;
import org.eclipse.jetty.http2.Flags;
import org.eclipse.jetty.http2.frames.DataFrame;
import org.eclipse.jetty.http2.frames.GoAwayFrame;
import org.eclipse.jetty.http2.frames.HeadersFrame;
import org.eclipse.jetty.http2.frames.PingFrame;
import org.eclipse.jetty.http2.frames.PriorityFrame;
import org.eclipse.jetty.http2.frames.PushPromiseFrame;
import org.eclipse.jetty.http2.frames.ResetFrame;
import org.eclipse.jetty.http2.frames.SettingsFrame;
import org.eclipse.jetty.http2.frames.WindowUpdateFrame;
import org.eclipse.jetty.util.BufferUtil;
import org.eclipse.jetty.util.log.Log;
import org.eclipse.jetty.util.log.Logger;

/**
 * 

The base parser for the frame body of HTTP/2 frames.

*

Subclasses implement {@link #parse(ByteBuffer)} to parse * the frame specific body.

* * @see Parser */ public abstract class BodyParser { protected static final Logger LOG = Log.getLogger(BodyParser.class); private final HeaderParser headerParser; private final Parser.Listener listener; protected BodyParser(HeaderParser headerParser, Parser.Listener listener) { this.headerParser = headerParser; this.listener = listener; } /** *

Parses the body bytes in the given {@code buffer}; only the body * bytes are consumed, therefore when this method returns, the buffer * may contain unconsumed bytes.

* * @param buffer the buffer to parse * @return true if the whole body bytes were parsed, false if not enough * body bytes were present in the buffer */ public abstract boolean parse(ByteBuffer buffer); protected void emptyBody(ByteBuffer buffer) { connectionFailure(buffer, ErrorCode.PROTOCOL_ERROR.code, "invalid_frame"); } protected boolean hasFlag(int bit) { return headerParser.hasFlag(bit); } protected boolean isPadding() { return headerParser.hasFlag(Flags.PADDING); } protected boolean isEndStream() { return headerParser.hasFlag(Flags.END_STREAM); } protected int getStreamId() { return headerParser.getStreamId(); } protected int getBodyLength() { return headerParser.getLength(); } protected void notifyData(DataFrame frame) { try { listener.onData(frame); } catch (Throwable x) { LOG.info("Failure while notifying listener " + listener, x); } } protected void notifyHeaders(HeadersFrame frame) { try { listener.onHeaders(frame); } catch (Throwable x) { LOG.info("Failure while notifying listener " + listener, x); } } protected void notifyPriority(PriorityFrame frame) { try { listener.onPriority(frame); } catch (Throwable x) { LOG.info("Failure while notifying listener " + listener, x); } } protected void notifyReset(ResetFrame frame) { try { listener.onReset(frame); } catch (Throwable x) { LOG.info("Failure while notifying listener " + listener, x); } } protected void notifySettings(SettingsFrame frame) { try { listener.onSettings(frame); } catch (Throwable x) { LOG.info("Failure while notifying listener " + listener, x); } } protected void notifyPushPromise(PushPromiseFrame frame) { try { listener.onPushPromise(frame); } catch (Throwable x) { LOG.info("Failure while notifying listener " + listener, x); } } protected void notifyPing(PingFrame frame) { try { listener.onPing(frame); } catch (Throwable x) { LOG.info("Failure while notifying listener " + listener, x); } } protected void notifyGoAway(GoAwayFrame frame) { try { listener.onGoAway(frame); } catch (Throwable x) { LOG.info("Failure while notifying listener " + listener, x); } } protected void notifyWindowUpdate(WindowUpdateFrame frame) { try { listener.onWindowUpdate(frame); } catch (Throwable x) { LOG.info("Failure while notifying listener " + listener, x); } } protected boolean connectionFailure(ByteBuffer buffer, int error, String reason) { BufferUtil.clear(buffer); notifyConnectionFailure(error, reason); return false; } private void notifyConnectionFailure(int error, String reason) { try { listener.onConnectionFailure(error, reason); } catch (Throwable x) { LOG.info("Failure while notifying listener " + listener, x); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy