summaryrefslogtreecommitdiffstats
path: root/v3po/impl/src/main/java/io/fd/honeycomb/v3po/impl/VppPollOperDataImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'v3po/impl/src/main/java/io/fd/honeycomb/v3po/impl/VppPollOperDataImpl.java')
-rw-r--r--v3po/impl/src/main/java/io/fd/honeycomb/v3po/impl/VppPollOperDataImpl.java143
1 files changed, 0 insertions, 143 deletions
diff --git a/v3po/impl/src/main/java/io/fd/honeycomb/v3po/impl/VppPollOperDataImpl.java b/v3po/impl/src/main/java/io/fd/honeycomb/v3po/impl/VppPollOperDataImpl.java
deleted file mode 100644
index aa607c771..000000000
--- a/v3po/impl/src/main/java/io/fd/honeycomb/v3po/impl/VppPollOperDataImpl.java
+++ /dev/null
@@ -1,143 +0,0 @@
-/*
- * Copyright (c) 2015 Cisco and/or its affiliates.
- *
- * 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.
- */
-
-package io.fd.honeycomb.v3po.impl;
-
-import com.google.common.util.concurrent.CheckedFuture;
-import com.google.common.util.concurrent.Futures;
-import java.util.HashMap;
-import java.util.concurrent.Future;
-import org.opendaylight.controller.md.sal.binding.api.DataBroker;
-import org.opendaylight.controller.md.sal.binding.api.WriteTransaction;
-import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
-import org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev150105.V3poService;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev150105.VppPollOperDataOutput;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev150105.VppPollOperDataOutputBuilder;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev150105.VppState;
-import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
-import org.opendaylight.yangtools.yang.common.RpcResult;
-import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
-import org.openvpp.vppjapi.vppApi;
-import org.openvpp.vppjapi.vppBridgeDomainDetails;
-import org.openvpp.vppjapi.vppBridgeDomainInterfaceDetails;
-import org.openvpp.vppjapi.vppL2Fib;
-import org.openvpp.vppjapi.vppVersion;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public class VppPollOperDataImpl implements V3poService {
- private static final Logger LOG = LoggerFactory.getLogger(VppPollOperDataImpl.class);
- private static final InstanceIdentifier<VppState> VPP_STATE = InstanceIdentifier.create(VppState.class);
- private vppVersion version;
- private final DataBroker db;
- private int[] bdIds;
- private final HashMap<Integer, vppL2Fib[]> l2fibByBdId = new HashMap<Integer, vppL2Fib[]>();
- private final vppApi api;
-
- /**
- * TODO-ADD-JAVADOC.
- * @param api
- */
- public VppPollOperDataImpl(final vppApi api, final DataBroker dataBroker) {
- this.api = api;
- db = dataBroker;
- }
-
- /**
- * TODO-ADD-JAVADOC.
- */
- public DataBroker getDataBroker() {
- return db;
- }
-
- /**
- * TODO-ADD-JAVADOC.
- * Updates operational data
- */
- public void updateOperational() {
- V3poApiRequest req = new V3poApiRequest(api, this);
- version = api.getVppVersion();
-
- bdIds = api.bridgeDomainDump(-1);
-
- // TODO: we don't need to cache BDs now that we got rid of callbacks
- l2fibByBdId.clear();
- if (bdIds != null) {
- for (int bdId : bdIds) {
- l2fibByBdId.put(bdId, api.l2FibTableDump(bdId));
- }
- }
- req.swInterfaceDumpAll();
-
- // build vpp-state
- VppStateCustomBuilder stateBuilder = new VppStateCustomBuilder();
-
- // bridge domains
- for (int bdId : bdIds) {
- vppBridgeDomainDetails bd = api.getBridgeDomainDetails(bdId);
- VppStateBridgeDomainBuilder bdBuilder =
- new VppStateBridgeDomainBuilder(
- bd.name, bd.flood, bd.uuFlood,
- bd.arpTerm, bd.forward, bd.learn);
-
- for (vppBridgeDomainInterfaceDetails bdIf : bd.interfaces) {
- if (bdIf.interfaceName != null) {
- bdBuilder.addInterface(bdIf.interfaceName,
- bdIf.interfaceName.equals(bd.bviInterfaceName),
- bdIf.splitHorizonGroup);
- }
- }
-
- vppL2Fib[] bdFibs = l2fibByBdId.get(bdId);
-
- for (vppL2Fib fib : bdFibs) {
- bdBuilder.addL2Fib(fib.filter, fib.bridgedVirtualInterface,
- fib.outgoingInterface, fib.physAddress,
- fib.staticConfig);
- }
-
- stateBuilder.addBridgeDomain(bdBuilder.build());
- }
-
- stateBuilder.setVersion(version);
-
- // write to oper
- writeVppState(VPP_STATE, stateBuilder.build());
- }
-
- @Override
- public Future<RpcResult<VppPollOperDataOutput>> vppPollOperData() {
- updateOperational();
-
- VppPollOperDataOutput output = new VppPollOperDataOutputBuilder()
- .setStatus(Long.valueOf(1)).build();
-
- return RpcResultBuilder.success(output).buildFuture();
- }
-
- private void writeVppState(final InstanceIdentifier<VppState> iid, final VppState vppState) {
- WriteTransaction transaction = db.newWriteOnlyTransaction();
-
- //LOG.info("VPPOPER-INFO: Writing vpp-state to oper DataStore.");
- transaction.put(LogicalDatastoreType.OPERATIONAL, iid, vppState);
-
- CheckedFuture<Void, TransactionCommitFailedException> future = transaction.submit();
- Futures.addCallback(future, new LoggingFuturesCallBack<Void>(
- "VPPOPER-WARNING: Failed to write vpp-state to oper datastore", LOG));
- }
-}
-