a48e8cd4e32904cc18bae74a67b39685db3394f3
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / common / actor / AbstractUntypedPersistentActor.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
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
7  */
8
9 package org.opendaylight.controller.cluster.common.actor;
10
11 import akka.persistence.UntypedPersistentActor;
12 import org.slf4j.Logger;
13 import org.slf4j.LoggerFactory;
14
15 public abstract class AbstractUntypedPersistentActor extends UntypedPersistentActor {
16
17     protected final Logger LOG = LoggerFactory.getLogger(getClass());
18
19     protected AbstractUntypedPersistentActor() {
20         LOG.trace("Actor created {}", getSelf());
21         getContext().system().actorSelection("user/termination-monitor").tell(new Monitor(getSelf()), getSelf());
22     }
23
24     @Override
25     public void onReceiveCommand(Object message) throws Exception {
26         final String messageType = message.getClass().getSimpleName();
27         LOG.trace("Received message {}", messageType);
28
29         handleCommand(message);
30
31         LOG.trace("Done handling message {}", messageType);
32     }
33
34     @Override
35     public void onReceiveRecover(Object message) throws Exception {
36         final String messageType = message.getClass().getSimpleName();
37         LOG.trace("Received message {}", messageType);
38         handleRecover(message);
39         LOG.trace("Done handling message {}", messageType);
40     }
41
42     protected abstract void handleRecover(Object message) throws Exception;
43
44     protected abstract void handleCommand(Object message) throws Exception;
45
46     protected void ignoreMessage(Object message) {
47         LOG.debug("Unhandled message {} ", message);
48     }
49
50     protected void unknownMessage(Object message) throws Exception {
51         LOG.debug("Received unhandled message {}", message);
52         unhandled(message);
53     }
54 }