blob: e6a36cb0c8d17bc720dd45faaa7ed120b9a25eb2 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with this
* work for additional information regarding copyright ownership. The ASF
* licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.apache.knox.gateway.topology.discovery.cm;
import org.apache.knox.gateway.topology.discovery.ServiceDiscovery;
import org.apache.knox.gateway.topology.discovery.cm.collector.ServiceURLCollectors;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* ClouderaManager-based service discovery cluster model implementation.
*/
public class ClouderaManagerCluster implements ServiceDiscovery.Cluster {
private String name;
private Map<String, List<ServiceModel>> serviceModels = new HashMap<>();
ClouderaManagerCluster(String clusterName) {
this.name = clusterName;
}
@Override
public String getName() {
return name;
}
@Override
public List<String> getServiceURLs(String serviceName) {
List<String> urls = new ArrayList<>();
if (serviceModels.containsKey(serviceName)) {
Map<String, List<ServiceModel>> roleModels = new HashMap<>();
for (ServiceModel model : serviceModels.get(serviceName)) {
roleModels.computeIfAbsent(model.getRoleType(), l -> new ArrayList<>()).add(model);
}
urls.addAll((ServiceURLCollectors.getCollector(serviceName)).collect(roleModels));
}
return urls;
}
@Override
public List<String> getServiceURLs(String serviceName, Map<String, String> serviceParams) {
return getServiceURLs(serviceName); // TODO: PJZ: Support things like HDFS nameservice params for providing the correct URL(s)?
}
@Override
public ZooKeeperConfig getZooKeeperConfiguration(String serviceName) {
return null;
}
void addServiceModels(Set<ServiceModel> serviceModels) {
for (ServiceModel model : serviceModels) {
this.serviceModels.computeIfAbsent(model.getService(), l -> new ArrayList<>()).add(model);
}
}
static class ServiceConfiguration {
private String type;
private String version;
private Map<String, String> props;
ServiceConfiguration(String type, String version, Map<String, String> properties) {
this.type = type;
this.version = version;
this.props = properties;
}
public String getVersion() {
return version;
}
public String getType() {
return type;
}
public Map<String, String> getProperties() {
return props;
}
}
}