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

org.opendaylight.netvirt.natservice.ha.NatSwitchCacheImpl Maven / Gradle / Ivy

There is a newer version: 0.11.4
Show newest version
/*
 * Copyright (c) 2018 Red Hat, Inc. and others. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
package org.opendaylight.netvirt.natservice.ha;

import java.math.BigInteger;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import javax.inject.Inject;
import javax.inject.Singleton;
import org.opendaylight.controller.md.sal.binding.api.DataBroker;
import org.opendaylight.netvirt.natservice.api.NatSwitchCache;
import org.opendaylight.netvirt.natservice.api.NatSwitchCacheListener;
import org.opendaylight.netvirt.natservice.api.SwitchInfo;
import org.opendaylight.netvirt.natservice.internal.NatUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Singleton
public class NatSwitchCacheImpl implements NatSwitchCache {

    private static final Logger LOG = LoggerFactory.getLogger(NatSwitchCacheImpl.class);
    ConcurrentMap switchMap = new ConcurrentHashMap<>();

    private final  List centralizedSwitchCacheListenerList =
            new ArrayList();
    private final DataBroker dataBroker;

    @Inject
    public NatSwitchCacheImpl(final DataBroker dataBroker) {
        this.dataBroker = dataBroker;
    }

    @Override
    public void addSwitch(BigInteger dpnId) {
        LOG.info("addSwitch: Retrieving the provider config for {}", dpnId);
        Map providerMappingsMap = NatUtil.getOpenvswitchOtherConfigMap(dpnId, dataBroker);
        SwitchInfo switchInfo = new SwitchInfo();
        switchInfo.setDpnId(dpnId);
        switchInfo.setProviderNets(providerMappingsMap.keySet());
        switchMap.put(dpnId, switchInfo);
        for (NatSwitchCacheListener centralizedSwitchCacheListener : centralizedSwitchCacheListenerList) {
            centralizedSwitchCacheListener.switchAddedToCache(switchInfo);
        }
    }

    @Override
    public void removeSwitch(BigInteger dpnId) {
        LOG.info("removeSwitch: Removing {} dpnId to switchWeightsMap", dpnId);
        SwitchInfo switchInfo = switchMap.get(dpnId);
        for (NatSwitchCacheListener centralizedSwitchCacheListener : centralizedSwitchCacheListenerList) {
            centralizedSwitchCacheListener.switchRemovedFromCache(switchInfo);
        }
    }

    @Override
    public boolean isSwitchConnectedToExternal(BigInteger dpnId, String providerNet) {
        SwitchInfo switchInfo = switchMap.get(dpnId);
        if (switchInfo != null) {
            return switchInfo.getProviderNets().contains(providerNet);
        }
        return false;
    }

    @Override
    public Set getSwitchesConnectedToExternal(String providerNet) {
        Set switches = new HashSet<>();
        for (Map.Entry switchesEntrySet : switchMap.entrySet()) {
            Set providerNetSet = switchesEntrySet.getValue().getProviderNets();
            if (providerNetSet != null && providerNetSet.contains(providerNet)) {
                switches.add(switchesEntrySet.getKey());
            }
        }
        return switches;
    }

    public void register(NatSwitchCacheListener centralizedSwitchCacheListener) {
        if (centralizedSwitchCacheListener != null) {
            centralizedSwitchCacheListenerList.add(centralizedSwitchCacheListener);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy