mirror of https://github.com/apache/cloudstack.git
190 lines
7.2 KiB
Java
190 lines
7.2 KiB
Java
/**
|
|
* Copyright (C) 2010 Cloud.com, Inc. All rights reserved.
|
|
*
|
|
* This software is licensed under the GNU General Public License v3 or later.
|
|
*
|
|
* It is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or any later version.
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
package com.cloud.network.element;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import javax.ejb.Local;
|
|
import javax.naming.ConfigurationException;
|
|
|
|
import org.apache.log4j.Logger;
|
|
|
|
import com.cloud.configuration.Config;
|
|
import com.cloud.configuration.dao.ConfigurationDao;
|
|
import com.cloud.deploy.DeployDestination;
|
|
import com.cloud.exception.ConcurrentOperationException;
|
|
import com.cloud.exception.InsufficientCapacityException;
|
|
import com.cloud.exception.ResourceUnavailableException;
|
|
import com.cloud.network.Network;
|
|
import com.cloud.network.Network.Capability;
|
|
import com.cloud.network.Network.Provider;
|
|
import com.cloud.network.Network.Service;
|
|
import com.cloud.network.NetworkManager;
|
|
import com.cloud.network.Networks.TrafficType;
|
|
import com.cloud.network.PhysicalNetworkServiceProvider;
|
|
import com.cloud.network.PublicIpAddress;
|
|
import com.cloud.network.dao.NetworkDao;
|
|
import com.cloud.network.lb.ElasticLoadBalancerManager;
|
|
import com.cloud.network.lb.LoadBalancingRule;
|
|
import com.cloud.offering.NetworkOffering;
|
|
import com.cloud.offerings.dao.NetworkOfferingDao;
|
|
import com.cloud.utils.component.AdapterBase;
|
|
import com.cloud.utils.component.Inject;
|
|
import com.cloud.vm.NicProfile;
|
|
import com.cloud.vm.ReservationContext;
|
|
import com.cloud.vm.VirtualMachine;
|
|
import com.cloud.vm.VirtualMachineProfile;
|
|
|
|
|
|
@Local(value=NetworkElement.class)
|
|
public class ElasticLoadBalancerElement extends AdapterBase implements LoadBalancingServiceProvider {
|
|
private static final Logger s_logger = Logger.getLogger(ElasticLoadBalancerElement.class);
|
|
private static final Map<Service, Map<Capability, String>> capabilities = setCapabilities();
|
|
@Inject NetworkManager _networkManager;
|
|
@Inject ElasticLoadBalancerManager _lbMgr;
|
|
@Inject ConfigurationDao _configDao;
|
|
@Inject NetworkOfferingDao _networkOfferingDao;
|
|
@Inject NetworkDao _networksDao;
|
|
|
|
boolean _enabled;
|
|
TrafficType _frontEndTrafficType = TrafficType.Guest;
|
|
|
|
private boolean canHandle(Network network) {
|
|
if (network.getGuestType() != Network.GuestType.Shared|| network.getTrafficType() != TrafficType.Guest) {
|
|
s_logger.debug("Not handling network with type " + network.getGuestType() + " and traffic type " + network.getTrafficType());
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public Provider getProvider() {
|
|
return Provider.ElasticLoadBalancerVm;
|
|
}
|
|
|
|
@Override
|
|
public Map<Service, Map<Capability, String>> getCapabilities() {
|
|
return capabilities;
|
|
}
|
|
|
|
private static Map<Service, Map<Capability, String>> setCapabilities() {
|
|
Map<Service, Map<Capability, String>> capabilities = new HashMap<Service, Map<Capability, String>>();
|
|
|
|
Map<Capability, String> lbCapabilities = new HashMap<Capability, String>();
|
|
lbCapabilities.put(Capability.SupportedLBAlgorithms, "roundrobin,leastconn,source");
|
|
lbCapabilities.put(Capability.SupportedLBIsolation, "shared");
|
|
lbCapabilities.put(Capability.SupportedProtocols, "tcp, udp");
|
|
|
|
capabilities.put(Service.Lb, lbCapabilities);
|
|
return capabilities;
|
|
}
|
|
|
|
@Override
|
|
public boolean implement(Network network, NetworkOffering offering, DeployDestination dest, ReservationContext context) throws ConcurrentOperationException, ResourceUnavailableException,
|
|
InsufficientCapacityException {
|
|
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean prepare(Network network, NicProfile nic, VirtualMachineProfile<? extends VirtualMachine> vm, DeployDestination dest, ReservationContext context)
|
|
throws ConcurrentOperationException, ResourceUnavailableException, InsufficientCapacityException {
|
|
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean release(Network network, NicProfile nic, VirtualMachineProfile<? extends VirtualMachine> vm, ReservationContext context) throws ConcurrentOperationException,
|
|
ResourceUnavailableException {
|
|
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean shutdown(Network network, ReservationContext context, boolean cleanup) throws ConcurrentOperationException, ResourceUnavailableException {
|
|
// TODO kill all loadbalancer vms by calling the ElasticLoadBalancerManager
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean destroy(Network network) throws ConcurrentOperationException, ResourceUnavailableException {
|
|
// TODO kill all loadbalancer vms by calling the ElasticLoadBalancerManager
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean applyLBRules(Network network, List<LoadBalancingRule> rules) throws ResourceUnavailableException {
|
|
if (!canHandle(network)) {
|
|
return false;
|
|
}
|
|
|
|
return _lbMgr.applyLoadBalancerRules(network, rules);
|
|
}
|
|
|
|
|
|
@Override
|
|
public boolean configure(String name, Map<String, Object> params) throws ConfigurationException {
|
|
|
|
super.configure(name, params);
|
|
String enabled = _configDao.getValue(Config.ElasticLoadBalancerEnabled.key());
|
|
_enabled = (enabled == null) ? false: Boolean.parseBoolean(enabled);
|
|
if (_enabled) {
|
|
String traffType = _configDao.getValue(Config.ElasticLoadBalancerNetwork.key());
|
|
if ("guest".equalsIgnoreCase(traffType)) {
|
|
_frontEndTrafficType = TrafficType.Guest;
|
|
} else if ("public".equalsIgnoreCase(traffType)){
|
|
_frontEndTrafficType = TrafficType.Public;
|
|
} else
|
|
throw new ConfigurationException("Traffic type for front end of load balancer has to be guest or public; found : " + traffType);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean isReady(PhysicalNetworkServiceProvider provider) {
|
|
// TODO Auto-generated method stub
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean shutdownProviderInstances(PhysicalNetworkServiceProvider provider, ReservationContext context) throws ConcurrentOperationException,
|
|
ResourceUnavailableException {
|
|
// TODO Auto-generated method stub
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean canEnableIndividualServices() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean verifyServicesCombination(List<String> services) {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean applyLoadBalancerIp(Network network, List<? extends PublicIpAddress> ipAddress) throws ResourceUnavailableException {
|
|
// TODO Auto-generated method stub
|
|
return false;
|
|
}
|
|
}
|