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.access.client;
10 import akka.actor.ActorRef;
11 import akka.actor.PoisonPill;
12 import akka.persistence.UntypedPersistentActor;
13 import com.google.common.annotations.Beta;
14 import org.opendaylight.controller.cluster.access.concepts.FrontendIdentifier;
15 import org.slf4j.Logger;
16 import org.slf4j.LoggerFactory;
19 * Frontend actor which takes care of persisting generations and creates an appropriate ClientIdentifier.
21 * @author Robert Varga
24 public abstract class AbstractClientActor extends UntypedPersistentActor {
25 private static final Logger LOG = LoggerFactory.getLogger(AbstractClientActor.class);
26 private AbstractClientActorBehavior<?> currentBehavior;
28 protected AbstractClientActor(final FrontendIdentifier frontendId) {
29 currentBehavior = new RecoveringClientActorBehavior(
30 new InitialClientActorContext(this, frontendId.toPersistentId()), frontendId);
34 public final String persistenceId() {
35 return currentBehavior.persistenceId();
38 private void switchBehavior(final AbstractClientActorBehavior<?> nextBehavior) {
39 if (!currentBehavior.equals(nextBehavior)) {
40 if (nextBehavior == null) {
41 LOG.debug("{}: shutting down", persistenceId());
42 self().tell(PoisonPill.getInstance(), ActorRef.noSender());
44 LOG.debug("{}: switched from {} to {}", persistenceId(), currentBehavior, nextBehavior);
47 currentBehavior = nextBehavior;
52 public final void onReceiveCommand(final Object command) {
53 if (command == null) {
54 LOG.debug("{}: ignoring null command", persistenceId());
58 if (currentBehavior != null) {
59 switchBehavior(currentBehavior.onReceiveCommand(command));
61 LOG.debug("{}: shutting down, ignoring command {}", persistenceId(), command);
66 public final void onReceiveRecover(final Object recover) {
67 switchBehavior(currentBehavior.onReceiveRecover(recover));
70 protected abstract ClientActorBehavior initialBehavior(ClientActorContext context);