# Copyright 2013 Cloudbase Solutions Srl # Copyright 2013 Pedro Navarro Perez # All Rights Reserved. # # Licensed 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. import abc from os_win import utilsfactory import nova.conf CONF = nova.conf.CONF class HyperVBaseVIFDriver(object): @abc.abstractmethod def plug(self, instance, vif): pass @abc.abstractmethod def unplug(self, instance, vif): pass class HyperVNeutronVIFDriver(HyperVBaseVIFDriver): """Neutron VIF driver.""" def plug(self, instance, vif): # Neutron takes care of plugging the port pass def unplug(self, instance, vif): # Neutron takes care of unplugging the port pass class HyperVNovaNetworkVIFDriver(HyperVBaseVIFDriver): """Nova network VIF driver.""" def __init__(self): self._netutils = utilsfactory.get_networkutils() def plug(self, instance, vif): self._netutils.connect_vnic_to_vswitch(CONF.hyperv.vswitch_name, vif['id']) def unplug(self, instance, vif): # TODO(alepilotti) Not implemented pass