io.fabric8.jube.proxy.ServiceInstance Maven / Gradle / Ivy
/**
* Copyright 2005-2014 Red Hat, Inc.
*
* Red Hat 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 io.fabric8.jube.proxy;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import io.fabric8.gateway.loadbalancer.LoadBalancer;
import io.fabric8.gateway.loadbalancer.RoundRobinLoadBalancer;
import io.fabric8.jube.local.EntityListener;
import io.fabric8.kubernetes.api.KubernetesHelper;
import io.fabric8.kubernetes.api.model.Pod;
import io.fabric8.kubernetes.api.model.Service;
import io.fabric8.utils.Filter;
import io.fabric8.utils.Objects;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Represents a running service
*/
public class ServiceInstance implements EntityListener {
private static final transient Logger LOG = LoggerFactory.getLogger(ServiceInstance.class);
private final Service service;
private final String id;
private final Map selector;
private final Filter filter;
private final int port;
private final int containerPort;
private final LoadBalancer loadBalancer;
private final Map containerServices = new ConcurrentHashMap<>();
public ServiceInstance(Service service) {
this.service = service;
this.id = KubernetesHelper.getId(service);
Integer portInt = KubernetesHelper.getPort(service);
Objects.notNull(portInt, "port for service " + id);
this.port = portInt.intValue();
if (this.port <= 0) {
throw new IllegalArgumentException("Invalid port number " + this.port + " for service " + id);
}
this.containerPort = KubernetesHelper.getContainerPort(service);
this.selector = KubernetesHelper.getSelector(service);
Objects.notNull(this.selector, "No selector for service " + id);
if (selector.isEmpty()) {
throw new IllegalArgumentException("Empty selector for service " + id);
}
this.filter = KubernetesHelper.createPodFilter(selector);
// TODO should we use some service metadata to choose the load balancer?
this.loadBalancer = new RoundRobinLoadBalancer();
}
@Override
public String toString() {
return "Service{"
+ "id='" + id + '\''
+ ", selector=" + selector
+ ", containerServices=" + containerServices.values()
+ '}';
}
public List getContainerServices() {
return new ArrayList(containerServices.values());
}
@Override
public void entityChanged(String podId, Pod pod) {
if (filter.matches(pod)) {
try {
ContainerService containerService = new ContainerService(this, pod);
containerServices.put(podId, containerService);
} catch (Exception e) {
LOG.info("Ignored bad pod: " + podId + ". " + e, e);
}
}
}
@Override
public void entityDeleted(String podId) {
containerServices.remove(podId);
}
public Filter getFilter() {
return filter;
}
public Map getSelector() {
return selector;
}
public Service getService() {
return service;
}
public String getId() {
return id;
}
public int getPort() {
return port;
}
public int getContainerPort() {
return containerPort;
}
public LoadBalancer getLoadBalancer() {
return loadBalancer;
}
}