914af5d9eb1e69f612e96f1f9592c468f9a2315d
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / example / ExampleActor.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.example;
10
11 import akka.actor.ActorRef;
12 import akka.actor.Props;
13 import akka.japi.Creator;
14 import org.opendaylight.controller.cluster.example.messages.KeyValue;
15 import org.opendaylight.controller.cluster.example.messages.KeyValueSaved;
16 import org.opendaylight.controller.cluster.example.messages.PrintRole;
17 import org.opendaylight.controller.cluster.example.messages.PrintState;
18 import org.opendaylight.controller.cluster.raft.RaftActor;
19
20 import java.util.HashMap;
21 import java.util.Map;
22
23 /**
24  * A sample actor showing how the RaftActor is to be extended
25  */
26 public class ExampleActor extends RaftActor {
27
28     private final Map<String, String> state = new HashMap();
29
30     private long persistIdentifier = 1;
31
32
33     public ExampleActor(String id, Map<String, String> peerAddresses) {
34         super(id, peerAddresses);
35     }
36
37     public static Props props(final String id, final Map<String, String> peerAddresses){
38         return Props.create(new Creator<ExampleActor>(){
39
40             @Override public ExampleActor create() throws Exception {
41                 return new ExampleActor(id, peerAddresses);
42             }
43         });
44     }
45
46     @Override public void onReceiveCommand(Object message){
47         if(message instanceof KeyValue){
48
49             if(isLeader()) {
50                 String persistId = Long.toString(persistIdentifier++);
51                 persistData(getSender(), persistId, message);
52             } else {
53                 getLeader().forward(message, getContext());
54             }
55
56         } else if (message instanceof PrintState) {
57             LOG.debug("State of the node:"+getId() + " is="+state.size());
58
59         } else if (message instanceof PrintRole) {
60             LOG.debug(getId() + " = " + getRaftState());
61         }
62         super.onReceiveCommand(message);
63     }
64
65     @Override protected void applyState(ActorRef clientActor, String identifier,
66         Object data) {
67         if(data instanceof KeyValue){
68             KeyValue kv = (KeyValue) data;
69             state.put(kv.getKey(), kv.getValue());
70             if(clientActor != null) {
71                 clientActor.tell(new KeyValueSaved(), getSelf());
72             }
73         }
74     }
75
76     @Override protected Object createSnapshot() {
77         return state;
78     }
79
80     @Override protected void applySnapshot(Object snapshot) {
81         state.clear();
82         state.putAll((HashMap) snapshot);
83     }
84
85     @Override public void onReceiveRecover(Object message) {
86         super.onReceiveRecover(message);
87     }
88
89     @Override public String persistenceId() {
90         return getId();
91     }
92 }