Search in sources :

Example 11 with HostPortHttpField

use of org.eclipse.jetty.http.HostPortHttpField in project jetty.project by eclipse.

the class ContinuationParseTest method testParseOneByteAtATime.

@Test
public void testParseOneByteAtATime() throws Exception {
    ByteBufferPool byteBufferPool = new MappedByteBufferPool();
    HeadersGenerator generator = new HeadersGenerator(new HeaderGenerator(), new HpackEncoder());
    final List<HeadersFrame> frames = new ArrayList<>();
    Parser parser = new Parser(byteBufferPool, new Parser.Listener.Adapter() {

        @Override
        public void onHeaders(HeadersFrame frame) {
            frames.add(frame);
        }

        @Override
        public void onConnectionFailure(int error, String reason) {
            frames.add(new HeadersFrame(null, null, false));
        }
    }, 4096, 8192);
    // Iterate a few times to be sure the parser is properly reset.
    for (int i = 0; i < 2; ++i) {
        int streamId = 13;
        HttpFields fields = new HttpFields();
        fields.put("Accept", "text/html");
        fields.put("User-Agent", "Jetty");
        MetaData.Request metaData = new MetaData.Request("GET", HttpScheme.HTTP, new HostPortHttpField("localhost:8080"), "/path", HttpVersion.HTTP_2, fields);
        ByteBufferPool.Lease lease = new ByteBufferPool.Lease(byteBufferPool);
        generator.generateHeaders(lease, streamId, metaData, null, true);
        List<ByteBuffer> byteBuffers = lease.getByteBuffers();
        Assert.assertEquals(2, byteBuffers.size());
        ByteBuffer headersBody = byteBuffers.remove(1);
        int start = headersBody.position();
        int length = headersBody.remaining();
        int oneThird = length / 3;
        int lastThird = length - 2 * oneThird;
        // Adjust the length of the HEADERS frame.
        ByteBuffer headersHeader = byteBuffers.get(0);
        headersHeader.put(0, (byte) ((oneThird >>> 16) & 0xFF));
        headersHeader.put(1, (byte) ((oneThird >>> 8) & 0xFF));
        headersHeader.put(2, (byte) (oneThird & 0xFF));
        // Remove the END_HEADERS flag from the HEADERS header.
        headersHeader.put(4, (byte) (headersHeader.get(4) & ~Flags.END_HEADERS));
        // New HEADERS body.
        headersBody.position(start);
        headersBody.limit(start + oneThird);
        byteBuffers.add(headersBody.slice());
        // Split the rest of the HEADERS body into CONTINUATION frames.
        // First CONTINUATION header.
        byte[] continuationHeader1 = new byte[9];
        continuationHeader1[0] = (byte) ((oneThird >>> 16) & 0xFF);
        continuationHeader1[1] = (byte) ((oneThird >>> 8) & 0xFF);
        continuationHeader1[2] = (byte) (oneThird & 0xFF);
        continuationHeader1[3] = (byte) FrameType.CONTINUATION.getType();
        continuationHeader1[4] = Flags.NONE;
        continuationHeader1[5] = 0x00;
        continuationHeader1[6] = 0x00;
        continuationHeader1[7] = 0x00;
        continuationHeader1[8] = (byte) streamId;
        byteBuffers.add(ByteBuffer.wrap(continuationHeader1));
        // First CONTINUATION body.
        headersBody.position(start + oneThird);
        headersBody.limit(start + 2 * oneThird);
        byteBuffers.add(headersBody.slice());
        // Second CONTINUATION header.
        byte[] continuationHeader2 = new byte[9];
        continuationHeader2[0] = (byte) ((lastThird >>> 16) & 0xFF);
        continuationHeader2[1] = (byte) ((lastThird >>> 8) & 0xFF);
        continuationHeader2[2] = (byte) (lastThird & 0xFF);
        continuationHeader2[3] = (byte) FrameType.CONTINUATION.getType();
        continuationHeader2[4] = Flags.END_HEADERS;
        continuationHeader2[5] = 0x00;
        continuationHeader2[6] = 0x00;
        continuationHeader2[7] = 0x00;
        continuationHeader2[8] = (byte) streamId;
        byteBuffers.add(ByteBuffer.wrap(continuationHeader2));
        headersBody.position(start + 2 * oneThird);
        headersBody.limit(start + length);
        byteBuffers.add(headersBody.slice());
        frames.clear();
        for (ByteBuffer buffer : lease.getByteBuffers()) {
            while (buffer.hasRemaining()) {
                parser.parse(ByteBuffer.wrap(new byte[] { buffer.get() }));
            }
        }
        Assert.assertEquals(1, frames.size());
        HeadersFrame frame = frames.get(0);
        Assert.assertEquals(streamId, frame.getStreamId());
        Assert.assertTrue(frame.isEndStream());
        MetaData.Request request = (MetaData.Request) frame.getMetaData();
        Assert.assertEquals(metaData.getMethod(), request.getMethod());
        Assert.assertEquals(metaData.getURI(), request.getURI());
        for (int j = 0; j < fields.size(); ++j) {
            HttpField field = fields.getField(j);
            Assert.assertTrue(request.getFields().contains(field));
        }
        PriorityFrame priority = frame.getPriority();
        Assert.assertNull(priority);
    }
}
Also used : ByteBufferPool(org.eclipse.jetty.io.ByteBufferPool) MappedByteBufferPool(org.eclipse.jetty.io.MappedByteBufferPool) ArrayList(java.util.ArrayList) HeadersGenerator(org.eclipse.jetty.http2.generator.HeadersGenerator) MetaData(org.eclipse.jetty.http.MetaData) HttpFields(org.eclipse.jetty.http.HttpFields) HeaderGenerator(org.eclipse.jetty.http2.generator.HeaderGenerator) HostPortHttpField(org.eclipse.jetty.http.HostPortHttpField) HpackEncoder(org.eclipse.jetty.http2.hpack.HpackEncoder) ByteBuffer(java.nio.ByteBuffer) Parser(org.eclipse.jetty.http2.parser.Parser) MappedByteBufferPool(org.eclipse.jetty.io.MappedByteBufferPool) HostPortHttpField(org.eclipse.jetty.http.HostPortHttpField) HttpField(org.eclipse.jetty.http.HttpField) Test(org.junit.Test)

Example 12 with HostPortHttpField

use of org.eclipse.jetty.http.HostPortHttpField in project jetty.project by eclipse.

the class Request method findServerPort.

/* ------------------------------------------------------------ */
private int findServerPort() {
    MetaData.Request metadata = _metaData;
    // Return host from header field
    HttpField host = metadata == null ? null : metadata.getFields().getField(HttpHeader.HOST);
    if (host != null) {
        // TODO is this needed now?
        HostPortHttpField authority = (host instanceof HostPortHttpField) ? ((HostPortHttpField) host) : new HostPortHttpField(host.getValue());
        metadata.getURI().setAuthority(authority.getHost(), authority.getPort());
        return authority.getPort();
    }
    // Return host from connection
    if (_channel != null)
        return getLocalPort();
    return -1;
}
Also used : MetaData(org.eclipse.jetty.http.MetaData) HostPortHttpField(org.eclipse.jetty.http.HostPortHttpField) HttpField(org.eclipse.jetty.http.HttpField) HostPortHttpField(org.eclipse.jetty.http.HostPortHttpField)

Example 13 with HostPortHttpField

use of org.eclipse.jetty.http.HostPortHttpField in project jetty.project by eclipse.

the class FlowControlStalledTest method newRequest.

protected MetaData.Request newRequest(String method, String target, HttpFields fields) {
    String host = "localhost";
    int port = connector.getLocalPort();
    String authority = host + ":" + port;
    return new MetaData.Request(method, HttpScheme.HTTP, new HostPortHttpField(authority), target, HttpVersion.HTTP_2, fields);
}
Also used : HostPortHttpField(org.eclipse.jetty.http.HostPortHttpField)

Example 14 with HostPortHttpField

use of org.eclipse.jetty.http.HostPortHttpField in project jetty.project by eclipse.

the class AbstractTest method newRequest.

protected MetaData.Request newRequest(String method, String pathInfo, HttpFields fields) {
    String host = "localhost";
    int port = connector.getLocalPort();
    String authority = host + ":" + port;
    return new MetaData.Request(method, HttpScheme.HTTP, new HostPortHttpField(authority), servletPath + pathInfo, HttpVersion.HTTP_2, fields);
}
Also used : HostPortHttpField(org.eclipse.jetty.http.HostPortHttpField)

Example 15 with HostPortHttpField

use of org.eclipse.jetty.http.HostPortHttpField in project jetty.project by eclipse.

the class MetaDataBuilder method emit.

public void emit(HttpField field) {
    HttpHeader header = field.getHeader();
    String name = field.getName();
    String value = field.getValue();
    int field_size = name.length() + (value == null ? 0 : value.length());
    _size += field_size + 32;
    if (_size > _maxSize)
        throw new BadMessageException(HttpStatus.REQUEST_HEADER_FIELDS_TOO_LARGE_431, "Header size " + _size + ">" + _maxSize);
    if (field instanceof StaticTableHttpField) {
        StaticTableHttpField staticField = (StaticTableHttpField) field;
        switch(header) {
            case C_STATUS:
                _status = (Integer) staticField.getStaticValue();
                break;
            case C_METHOD:
                _method = value;
                break;
            case C_SCHEME:
                _scheme = (HttpScheme) staticField.getStaticValue();
                break;
            default:
                throw new IllegalArgumentException(name);
        }
    } else if (header != null) {
        switch(header) {
            case C_STATUS:
                _status = field.getIntValue();
                break;
            case C_METHOD:
                _method = value;
                break;
            case C_SCHEME:
                if (value != null)
                    _scheme = HttpScheme.CACHE.get(value);
                break;
            case C_AUTHORITY:
                if (field instanceof HostPortHttpField)
                    _authority = (HostPortHttpField) field;
                else if (value != null)
                    _authority = new AuthorityHttpField(value);
                break;
            case HOST:
                // :authority fields must come first.  If we have one, ignore the host header as far as authority goes.
                if (_authority == null) {
                    if (field instanceof HostPortHttpField)
                        _authority = (HostPortHttpField) field;
                    else if (value != null)
                        _authority = new AuthorityHttpField(value);
                }
                _fields.add(field);
                break;
            case C_PATH:
                _path = value;
                break;
            case CONTENT_LENGTH:
                _contentLength = field.getLongValue();
                _fields.add(field);
                break;
            default:
                if (name.charAt(0) != ':')
                    _fields.add(field);
                break;
        }
    } else {
        if (name.charAt(0) != ':')
            _fields.add(field);
    }
}
Also used : HttpHeader(org.eclipse.jetty.http.HttpHeader) BadMessageException(org.eclipse.jetty.http.BadMessageException) HostPortHttpField(org.eclipse.jetty.http.HostPortHttpField)

Aggregations

HostPortHttpField (org.eclipse.jetty.http.HostPortHttpField)20 HttpField (org.eclipse.jetty.http.HttpField)10 HttpFields (org.eclipse.jetty.http.HttpFields)10 MetaData (org.eclipse.jetty.http.MetaData)10 Test (org.junit.Test)8 ByteBuffer (java.nio.ByteBuffer)7 Parser (org.eclipse.jetty.http2.parser.Parser)7 ByteBufferPool (org.eclipse.jetty.io.ByteBufferPool)7 MappedByteBufferPool (org.eclipse.jetty.io.MappedByteBufferPool)7 ArrayList (java.util.ArrayList)5 HeaderGenerator (org.eclipse.jetty.http2.generator.HeaderGenerator)5 HpackEncoder (org.eclipse.jetty.http2.hpack.HpackEncoder)5 CountDownLatch (java.util.concurrent.CountDownLatch)3 HeadersFrame (org.eclipse.jetty.http2.frames.HeadersFrame)3 HeadersGenerator (org.eclipse.jetty.http2.generator.HeadersGenerator)3 OutputStream (java.io.OutputStream)2 Socket (java.net.Socket)2 HashMap (java.util.HashMap)2 AtomicReference (java.util.concurrent.atomic.AtomicReference)2 HttpServletRequest (javax.servlet.http.HttpServletRequest)2