aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/GetNodeStateRequest.java
blob: d5cb15eb56051661c71af3ffea93cb032a2b725d (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core;

/**
 * Represents an abstract request sent from the fleet controller to the controlled nodes to get state.
 */
public abstract class GetNodeStateRequest {

    private final NodeInfo nodeInfo;
    private Reply reply;

    public GetNodeStateRequest(NodeInfo nodeInfo) {
        this.nodeInfo = nodeInfo;
    }

    public Reply getReply() {
        return reply;
    }

    /** Called when the reply to this request becomes available. */
    // TODO: The request shouldn't have this, of course
    public void setReply(Reply reply) { this.reply = reply; }

    public NodeInfo getNodeInfo() { return nodeInfo; }

    public abstract void abort();

    public static class Reply {

        private final int returnCode;
        private final String returnMessage;
        private final String stateString;
        private final String hostInfo;

        /** Create a failure reply */
        public Reply(int returnCode, String errorMessage) {
            this.returnCode = returnCode;
            this.returnMessage = errorMessage;
            this.stateString = null;
            this.hostInfo = null;
        }

        /** Create a successful reply */
        public Reply(String stateString, String hostInfo) {
            this.returnCode = 0;
            this.returnMessage = null;
            this.stateString = stateString;
            this.hostInfo = hostInfo;
        }

        /** Returns the return code, which is 0 on success */
        public int getReturnCode() { return returnCode; }

        /** Returns the returned error message, or null on success */
        public String getReturnMessage() { return returnMessage; }

        /** Returns the state string, or null if this request failed */
        public String getStateString() { return stateString; }

        /** Returns the host info, or null if this request failed */
        public String getHostInfo() { return hostInfo; }

        /** Returns whether this request failed */
        public boolean isError() { return returnCode != 0; }

    }

}