/* * Copyright (c) 2014 Cisco Systems, 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.controller.remote.rpc.registry; import akka.actor.ActorRef; import akka.actor.Props; import akka.japi.Creator; import akka.japi.Option; import akka.japi.Pair; import com.google.common.base.Preconditions; import java.util.ArrayList; import java.util.List; import org.opendaylight.controller.remote.rpc.registry.RpcRegistry.Messages.AddOrUpdateRoutes; import org.opendaylight.controller.remote.rpc.registry.RpcRegistry.Messages.FindRouters; import org.opendaylight.controller.remote.rpc.registry.RpcRegistry.Messages.RemoveRoutes; import org.opendaylight.controller.remote.rpc.registry.RpcRegistry.Messages.SetLocalRouter; import org.opendaylight.controller.remote.rpc.registry.gossip.Bucket; import org.opendaylight.controller.remote.rpc.registry.gossip.BucketStore; import org.opendaylight.controller.remote.rpc.registry.mbeans.RemoteRpcRegistryMXBean; import org.opendaylight.controller.remote.rpc.registry.mbeans.RemoteRpcRegistryMXBeanImpl; import org.opendaylight.controller.sal.connector.api.RpcRouter; import org.opendaylight.controller.sal.connector.api.RpcRouter.RouteIdentifier; /** * Registry to look up cluster nodes that have registered for a given rpc. *

* It uses {@link org.opendaylight.controller.remote.rpc.registry.gossip.BucketStore} to maintain this * cluster wide information. */ public class RpcRegistry extends BucketStore { public RpcRegistry() { getLocalBucket().setData(new RoutingTable()); } public static Props props() { return Props.create(new RpcRegistryCreator()); } @Override protected void handleReceive(Object message) throws Exception { //TODO: if sender is remote, reject message if (message instanceof SetLocalRouter) { receiveSetLocalRouter((SetLocalRouter) message); } else if (message instanceof AddOrUpdateRoutes) { receiveAddRoutes((AddOrUpdateRoutes) message); } else if (message instanceof RemoveRoutes) { receiveRemoveRoutes((RemoveRoutes) message); } else if (message instanceof Messages.FindRouters) { receiveGetRouter((FindRouters) message); } else { super.handleReceive(message); } } /** * Register's rpc broker * * @param message contains {@link akka.actor.ActorRef} for rpc broker */ private void receiveSetLocalRouter(SetLocalRouter message) { getLocalBucket().getData().setRouter(message.getRouter()); } /** * @param msg */ private void receiveAddRoutes(AddOrUpdateRoutes msg) { log.debug("AddOrUpdateRoutes: {}", msg.getRouteIdentifiers()); RoutingTable table = getLocalBucket().getData().copy(); for(RpcRouter.RouteIdentifier routeId : msg.getRouteIdentifiers()) { table.addRoute(routeId); } updateLocalBucket(table); } /** * @param msg contains list of route ids to remove */ private void receiveRemoveRoutes(RemoveRoutes msg) { RoutingTable table = getLocalBucket().getData().copy(); for (RpcRouter.RouteIdentifier routeId : msg.getRouteIdentifiers()) { table.removeRoute(routeId); } updateLocalBucket(table); } /** * Finds routers for the given rpc. * * @param msg */ private void receiveGetRouter(FindRouters msg) { List> routers = new ArrayList<>(); RouteIdentifier routeId = msg.getRouteIdentifier(); findRoutes(getLocalBucket().getData(), routeId, routers); for(Bucket bucket : getRemoteBuckets().values()) { findRoutes(bucket.getData(), routeId, routers); } getSender().tell(new Messages.FindRoutersReply(routers), getSelf()); } private void findRoutes(RoutingTable table, RpcRouter.RouteIdentifier routeId, List> routers) { if (table == null) { return; } Option> routerWithUpdateTime = table.getRouterFor(routeId); if(!routerWithUpdateTime.isEmpty()) { routers.add(routerWithUpdateTime.get()); } } /** * All messages used by the RpcRegistry */ public static class Messages { public static class ContainsRoute { final List> routeIdentifiers; public ContainsRoute(List> routeIdentifiers) { Preconditions.checkArgument(routeIdentifiers != null && !routeIdentifiers.isEmpty(), "Route Identifiers must be supplied"); this.routeIdentifiers = routeIdentifiers; } public List> getRouteIdentifiers() { return this.routeIdentifiers; } @Override public String toString() { return "ContainsRoute{" + "routeIdentifiers=" + routeIdentifiers + '}'; } } public static class AddOrUpdateRoutes extends ContainsRoute { public AddOrUpdateRoutes(List> routeIdentifiers) { super(routeIdentifiers); } } public static class RemoveRoutes extends ContainsRoute { public RemoveRoutes(List> routeIdentifiers) { super(routeIdentifiers); } } public static class SetLocalRouter { private final ActorRef router; public SetLocalRouter(ActorRef router) { Preconditions.checkArgument(router != null, "Router must not be null"); this.router = router; } public ActorRef getRouter() { return this.router; } @Override public String toString() { return "SetLocalRouter{" + "router=" + router + '}'; } } public static class FindRouters { private final RpcRouter.RouteIdentifier routeIdentifier; public FindRouters(RpcRouter.RouteIdentifier routeIdentifier) { Preconditions.checkArgument(routeIdentifier != null, "Route must not be null"); this.routeIdentifier = routeIdentifier; } public RpcRouter.RouteIdentifier getRouteIdentifier() { return routeIdentifier; } @Override public String toString() { return "FindRouters{" + "routeIdentifier=" + routeIdentifier + '}'; } } public static class FindRoutersReply { final List> routerWithUpdateTime; public FindRoutersReply(List> routerWithUpdateTime) { Preconditions.checkArgument(routerWithUpdateTime != null, "List of routers found must not be null"); this.routerWithUpdateTime = routerWithUpdateTime; } public List> getRouterWithUpdateTime() { return routerWithUpdateTime; } @Override public String toString() { return "FindRoutersReply{" + "routerWithUpdateTime=" + routerWithUpdateTime + '}'; } } } private static class RpcRegistryCreator implements Creator { private static final long serialVersionUID = 1L; @Override public RpcRegistry create() throws Exception { RpcRegistry registry = new RpcRegistry(); RemoteRpcRegistryMXBean mxBean = new RemoteRpcRegistryMXBeanImpl(registry); return registry; } } }