2 * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
8 package org.opendaylight.controller.cluster.datastore;
10 import static java.util.Objects.requireNonNull;
12 import akka.actor.ActorRef;
13 import akka.dispatch.OnComplete;
14 import akka.pattern.Patterns;
15 import akka.util.Timeout;
16 import java.util.concurrent.TimeUnit;
17 import org.checkerframework.checker.lock.qual.GuardedBy;
18 import org.opendaylight.controller.cluster.datastore.exceptions.LocalShardNotFoundException;
19 import org.opendaylight.controller.cluster.datastore.utils.ActorUtils;
20 import org.opendaylight.mdsal.dom.api.DOMDataTreeCommitCohort;
21 import org.opendaylight.mdsal.dom.api.DOMDataTreeIdentifier;
22 import org.opendaylight.yangtools.concepts.AbstractObjectRegistration;
23 import org.slf4j.Logger;
24 import org.slf4j.LoggerFactory;
25 import scala.concurrent.Future;
26 import scala.concurrent.duration.FiniteDuration;
28 public class DataTreeCohortRegistrationProxy<C extends DOMDataTreeCommitCohort> extends AbstractObjectRegistration<C> {
29 private static final Logger LOG = LoggerFactory.getLogger(DataTreeCohortRegistrationProxy.class);
30 private static final Timeout TIMEOUT = new Timeout(new FiniteDuration(5, TimeUnit.SECONDS));
32 private final DOMDataTreeIdentifier subtree;
33 private final ActorRef actor;
34 private final ActorUtils actorUtils;
36 private ActorRef cohortRegistry;
38 DataTreeCohortRegistrationProxy(final ActorUtils actorUtils, final DOMDataTreeIdentifier subtree,
41 this.subtree = requireNonNull(subtree);
42 this.actorUtils = requireNonNull(actorUtils);
43 actor = actorUtils.getActorSystem().actorOf(DataTreeCohortActor.props(getInstance(),
44 subtree.path()).withDispatcher(actorUtils.getNotificationDispatcherPath()));
47 public void init(final String shardName) {
48 // FIXME: Add late binding to shard.
49 Future<ActorRef> findFuture = actorUtils.findLocalShardAsync(shardName);
50 findFuture.onComplete(new OnComplete<ActorRef>() {
52 public void onComplete(final Throwable failure, final ActorRef shard) {
53 if (failure instanceof LocalShardNotFoundException) {
54 LOG.debug("No local shard found for {} - DataTreeChangeListener {} at path {} "
55 + "cannot be registered", shardName, getInstance(), subtree);
56 } else if (failure != null) {
57 LOG.error("Failed to find local shard {} - DataTreeChangeListener {} at path {} "
58 + "cannot be registered", shardName, getInstance(), subtree, failure);
60 performRegistration(shard);
63 }, actorUtils.getClientDispatcher());
66 private synchronized void performRegistration(final ActorRef shard) {
70 cohortRegistry = shard;
71 Future<Object> future =
72 Patterns.ask(shard, new DataTreeCohortActorRegistry.RegisterCohort(subtree, actor), TIMEOUT);
73 future.onComplete(new OnComplete<>() {
76 public void onComplete(final Throwable failure, final Object val) {
77 if (failure != null) {
78 LOG.error("Unable to register {} as commit cohort", getInstance(), failure);
85 }, actorUtils.getClientDispatcher());
89 protected synchronized void removeRegistration() {
90 if (cohortRegistry != null) {
91 cohortRegistry.tell(new DataTreeCohortActorRegistry.RemoveCohort(actor), ActorRef.noSender());