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

com.arangodb.shaded.vertx.core.http.impl.EndpointKey Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
/*
 * Copyright (c) 2011-2019 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 com.arangodb.shaded.vertx.core.http.impl;

import com.arangodb.shaded.vertx.core.net.ProxyOptions;
import com.arangodb.shaded.vertx.core.net.SocketAddress;

import java.util.Objects;

final class EndpointKey {

  final boolean ssl;
  final SocketAddress serverAddr;
  final SocketAddress peerAddr;
  final ProxyOptions proxyOptions;

  EndpointKey(boolean ssl, ProxyOptions proxyOptions, SocketAddress serverAddr, SocketAddress peerAddr) {
    if (serverAddr == null) {
      throw new NullPointerException("No null server address");
    }
    if (peerAddr == null) {
      throw new NullPointerException("No null peer address");
    }
    this.ssl = ssl;
    this.proxyOptions = proxyOptions;
    this.peerAddr = peerAddr;
    this.serverAddr = serverAddr;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    EndpointKey that = (EndpointKey) o;
    return ssl == that.ssl && serverAddr.equals(that.serverAddr) && peerAddr.equals(that.peerAddr) && equals(proxyOptions, that.proxyOptions);
  }

  @Override
  public int hashCode() {
    int result = ssl ? 1 : 0;
    result = 31 * result + peerAddr.hashCode();
    result = 31 * result + serverAddr.hashCode();
    if (proxyOptions != null) {
      result = 31 * result + hashCode(proxyOptions);
    }
    return result;
  }

  private static boolean equals(ProxyOptions options1, ProxyOptions options2) {
    if (options1 == options2) {
      return true;
    }
    if (options1 != null && options2 != null) {
      return Objects.equals(options1.getHost(), options2.getHost()) &&
        options1.getPort() == options2.getPort() &&
        Objects.equals(options1.getUsername(), options2.getUsername()) &&
        Objects.equals(options1.getPassword(), options2.getPassword());
    }
    return false;
  }

  private static int hashCode(ProxyOptions options) {
    if (options.getUsername() != null && options.getPassword() != null) {
      return Objects.hash(options.getHost(), options.getPort(), options.getType(), options.getUsername(), options.getPassword());
    } else {
      return Objects.hash(options.getHost(), options.getPort(), options.getType());
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy