/*
 * Copyright (c) 2011-2020 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 */
package io.vertx.core.http.impl;

import io.netty.handler.codec.http2.Http2Headers;
import io.vertx.core.MultiMap;
import io.vertx.core.http.HttpMethod;
import io.vertx.core.http.impl.headers.Http2HeadersAdaptor;
import io.vertx.core.net.SocketAddress;
import io.vertx.core.spi.observability.HttpRequest;

Author:Julien Viet
/** * @author <a href="mailto:julien@julienviet.com">Julien Viet</a> */
public class HttpClientPush implements HttpRequest { final int port; final String uri; final HttpMethod method; final String host; final HttpClientStream stream; final MultiMap headers; public HttpClientPush(Http2Headers headers, HttpClientStream stream) { String rawMethod = headers.method().toString(); String authority = headers.authority() != null ? headers.authority().toString() : null; MultiMap headersMap = new Http2HeadersAdaptor(headers); int pos = authority.indexOf(':'); if (pos == -1) { this.host = authority; this.port = 80; } else { this.host = authority.substring(0, pos); this.port = Integer.parseInt(authority.substring(pos + 1)); } this.method = HttpMethod.valueOf(rawMethod); this.uri = headers.path().toString(); this.stream = stream; this.headers = headersMap; } @Override public int id() { return stream.id(); } @Override public MultiMap headers() { return headers; } @Override public String absoluteURI() { return null; } @Override public SocketAddress remoteAddress() { return stream.connection().remoteAddress(); } @Override public String uri() { return uri; } @Override public HttpMethod method() { return method; } }