aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-utils/src/main/java/com/yahoo/vespa/clustercontroller/utils/communication/async/AsyncOperationImpl.java
blob: 4168480461bf602fe59cb5c56f6033cc0d7d0044 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.utils.communication.async;

import java.util.logging.Logger;

public class AsyncOperationImpl<T> implements AsyncOperation<T> {

    private static final Logger log = Logger.getLogger(AsyncOperationImpl.class.getName());
    private final String name;
    private final String description;
    private boolean resultGotten = false; // Ensures result is set only once.
    private boolean completed = false; // Indicates that operation is complete.
    private boolean failed = false;
    private T result;
    private Exception failure;
    private final AsyncOperationListenImpl<T> listenImpl;

    public AsyncOperationImpl(String name) {
        this(name, null);
    }
    public AsyncOperationImpl(String name, String description) {
        this.name = name;
        this.description = description;
        listenImpl = new AsyncOperationListenImpl<T>(this);
    }

    private boolean tagResultHandled() {
        synchronized (listenImpl) {
            if (resultGotten) {
                log.fine("Operation " + this + " got result attempted set twice. This may occasionally happen if multiple "
                       + "sources are set to possibly terminate operations, such as for example if there is a separate cancel or timeout "
                       + "handler.");
                return false;
            }
            resultGotten = true;
            return true;
        }
    }

    public void setFailure(Exception e) { setFailure(e, null); }
    public void setFailure(Exception e, T partialResult) {
        if (!tagResultHandled()) { return; }
        failed = true;
        failure = e;
        this.result = partialResult;
        completed = true;
        listenImpl.notifyListeners();
    }
    public void setResult(T result) {
        if (!tagResultHandled()) return;
        this.result = result;
        completed = true;
        listenImpl.notifyListeners();
    }

    @Override
    public String getName() { return name; }
    @Override
    public String getDescription() { return description; }
    @Override
    public String toString() { return "AsyncOperationImpl(" + name + ")"; }
    @Override
    public T getResult() { return result; }
    @Override
    public boolean cancel() { return false; }
    @Override
    public boolean isCanceled() { return false; }
    @Override
    public boolean isDone() { return completed; }
    @Override
    public boolean isSuccess() { return (completed && !failed); }
    @Override
    public Double getProgress() { return (completed ? 1.0 : null); }
    @Override
    public Exception getCause() { return failure; }
    @Override
    public void register(AsyncCallback<T> callback) {
        listenImpl.register(callback);
    }
    @Override
    public void unregister(AsyncCallback<T> callback) {
        listenImpl.unregister(callback);
    }

}