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

com.yahoo.vespa.config.server.ConfigServerSpec Maven / Gradle / Ivy

There is a newer version: 8.441.21
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server;

import com.yahoo.cloud.config.ConfigserverConfig;

import java.util.ArrayList;
import java.util.List;

/**
 * @author Tony Vaagenes
 */
public class ConfigServerSpec implements com.yahoo.config.model.api.ConfigServerSpec {

    private final String hostName;
    private final int configServerPort;
    private final int zooKeeperPort;

    public String getHostName() {
        return hostName;
    }

    public int getConfigServerPort() {
        return configServerPort;
    }

    public int getZooKeeperPort() {
        return zooKeeperPort;
    }

    @Override
    public boolean equals(Object o) {
        if (o instanceof ConfigServerSpec) {
            ConfigServerSpec other = (ConfigServerSpec)o;

            return hostName.equals(other.hostName) &&
                    configServerPort == other.configServerPort &&
                    zooKeeperPort == other.zooKeeperPort;
        } else {
            return false;
        }
    }

    @Override
    public int hashCode() {
        return hostName.hashCode();
    }

    public ConfigServerSpec(String hostName, int configServerPort, int zooKeeperPort) {
        this.hostName = hostName;
        this.configServerPort = configServerPort;
        this.zooKeeperPort = zooKeeperPort;
    }

    public static List fromConfig(ConfigserverConfig configserverConfig) {
        List specs = new ArrayList<>();
        for (ConfigserverConfig.Zookeeperserver server : configserverConfig.zookeeperserver()) {
            specs.add(new ConfigServerSpec(server.hostname(), configserverConfig.rpcport(), server.port()));
        }
        return specs;
    }

    @Override
    public String toString() {
        return "hostname=" + hostName + ", rpc port=" + configServerPort + ", zookeeper port=" + zooKeeperPort;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy