Bug 5740: Add ControlMessage interface to raft messages
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / persisted / ApplyJournalEntries.java
1 /*
2  * Copyright (c) 2016 Brocade Communications 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 package org.opendaylight.controller.cluster.raft.persisted;
9
10 import akka.dispatch.ControlMessage;
11 import java.io.Externalizable;
12 import java.io.IOException;
13 import java.io.ObjectInput;
14 import java.io.ObjectOutput;
15 import java.io.Serializable;
16
17 /**
18  * This is an internal message that is stored in the akka's persistent journal. During recovery, this
19  * message is used to apply recovered journal entries to the state whose indexes range from the context's
20  * current lastApplied index to "toIndex" contained in the message. This message is sent internally from a
21  * behavior to the RaftActor to persist.
22  *
23  * @author Thomas Pantelis
24  */
25 public class ApplyJournalEntries implements Serializable, ControlMessage {
26     private static final class Proxy implements Externalizable {
27         private static final long serialVersionUID = 1L;
28
29         private ApplyJournalEntries applyEntries;
30
31         // checkstyle flags the public modifier as redundant which really doesn't make sense since it clearly isn't
32         // redundant. It is explicitly needed for Java serialization to be able to create instances via reflection.
33         @SuppressWarnings("checkstyle:RedundantModifier")
34         public Proxy() {
35             // For Externalizable
36         }
37
38         Proxy(final ApplyJournalEntries applyEntries) {
39             this.applyEntries = applyEntries;
40         }
41
42         @Override
43         public void writeExternal(final ObjectOutput out) throws IOException {
44             out.writeLong(applyEntries.toIndex);
45         }
46
47         @Override
48         public void readExternal(final ObjectInput in) throws IOException, ClassNotFoundException {
49             applyEntries = new ApplyJournalEntries(in.readLong());
50         }
51
52         private Object readResolve() {
53             return applyEntries;
54         }
55     }
56
57     private static final long serialVersionUID = 1L;
58
59     private final long toIndex;
60
61     public ApplyJournalEntries(final long toIndex) {
62         this.toIndex = toIndex;
63     }
64
65     public long getToIndex() {
66         return toIndex;
67     }
68
69     private Object writeReplace() {
70         return new Proxy(this);
71     }
72
73     @Override
74     public String toString() {
75         return "ApplyJournalEntries [toIndex=" + toIndex + "]";
76     }
77 }