summaryrefslogtreecommitdiff
path: root/same/src/main/java/com/orbekk/paxos/MasterProposer.java
blob: c33cf68f66625cb19e65be0f0956526a1d5fb909 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.orbekk.paxos;

import java.util.ArrayList;
import java.util.List;

import com.orbekk.same.ConnectionManager;

public class MasterProposer implements Runnable {
    private String myUrl;
    private int roundId = 0;
    private int proposalNumber = 0;
    private List<String> paxosUrls = new ArrayList<String>();
    private Runnable roundFailedAction;
    private Runnable masterAction;
    private ConnectionManager connections;
    
    public static Runnable getTimeoutAction(final long milliseconds) {
        return new Runnable() {
            @Override public void run() {
                try {
                    Thread.sleep(milliseconds);
                } catch (InterruptedException e) {
                    // Ignore interrupts.
                }
            }
        };
    }
    
    MasterProposer(String clientUrl, List<String> paxosUrls, int roundId,
            ConnectionManager connections, Runnable roundFailedAction,
            Runnable masterAction) {
        this.myUrl = clientUrl;
        this.paxosUrls = paxosUrls;
        this.roundId = roundId;
        this.connections = connections;
        this.roundFailedAction = roundFailedAction;
        this.masterAction = masterAction;
    }
    
    private boolean propose(int roundId, int proposalNumber) {
        int promises = 0;
        for (String url : paxosUrls) {
            PaxosService paxos = connections.getPaxos(url);
            boolean success = paxos.propose(myUrl, roundId, proposalNumber);
            if (success) {
                promises += 1;
            }
        }
        return promises > paxosUrls.size() / 2;
    }
    
    private boolean acceptRequest(int roundId, int proposalNumber) {
        int accepts = 0;
        for (String url : paxosUrls) {
            PaxosService paxos = connections.getPaxos(url);
            boolean success = paxos.acceptRequest(myUrl, roundId, proposalNumber);
            if (success) {
                accepts += 1;
            }
        }
        return accepts > paxosUrls.size() / 2;        
    }
    
    @Override public void run() {
        boolean success = false;
        success = propose(roundId + 1, proposalNumber + 1);
        if (success) {
            success = acceptRequest(roundId + 1, proposalNumber + 1);
        }
        if (success) {
            masterAction.run();
        } else {
            roundFailedAction.run();
            // TODO: Next round?
        }
    }
}