Merge "Bug 1029: Remove dead code: p2site"
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / FollowerLogInformationImpl.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.raft;
10
11 import com.google.common.base.Stopwatch;
12 import scala.concurrent.duration.FiniteDuration;
13
14 import java.util.concurrent.TimeUnit;
15 import java.util.concurrent.atomic.AtomicLong;
16
17 public class FollowerLogInformationImpl implements FollowerLogInformation{
18
19     private final String id;
20
21     private final AtomicLong nextIndex;
22
23     private final AtomicLong matchIndex;
24
25     private final Stopwatch stopwatch;
26
27     private final long followerTimeoutMillis;
28
29     public FollowerLogInformationImpl(String id, AtomicLong nextIndex,
30         AtomicLong matchIndex, FiniteDuration followerTimeoutDuration) {
31         this.id = id;
32         this.nextIndex = nextIndex;
33         this.matchIndex = matchIndex;
34         this.stopwatch = new Stopwatch();
35         this.followerTimeoutMillis = followerTimeoutDuration.toMillis();
36     }
37
38     public long incrNextIndex(){
39         return nextIndex.incrementAndGet();
40     }
41
42     @Override public long decrNextIndex() {
43         return nextIndex.decrementAndGet();
44     }
45
46     @Override public void setNextIndex(long nextIndex) {
47         this.nextIndex.set(nextIndex);
48     }
49
50     public long incrMatchIndex(){
51         return matchIndex.incrementAndGet();
52     }
53
54     @Override public void setMatchIndex(long matchIndex) {
55         this.matchIndex.set(matchIndex);
56     }
57
58     public String getId() {
59         return id;
60     }
61
62     public AtomicLong getNextIndex() {
63         return nextIndex;
64     }
65
66     public AtomicLong getMatchIndex() {
67         return matchIndex;
68     }
69
70     @Override
71     public boolean isFollowerActive() {
72         long elapsed = stopwatch.elapsed(TimeUnit.MILLISECONDS);
73         return (stopwatch.isRunning()) && (elapsed <= followerTimeoutMillis);
74     }
75
76     @Override
77     public void markFollowerActive() {
78         if (stopwatch.isRunning()) {
79             stopwatch.reset();
80         }
81         stopwatch.start();
82     }
83 }