Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e1d29bbb3e312b6ef4e34385ca9beb1564ad221c (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
/*******************************************************************************
 *  Copyright (c) 2012, 2016 SSI Schaefer and others.
 *
 *  This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License 2.0
 *  which accompanies this distribution, and is available at
 *  https://www.eclipse.org/legal/epl-2.0/
 *
 *  SPDX-License-Identifier: EPL-2.0
 *
 *  Contributors:
 *      SSI Schaefer
 *******************************************************************************/
package org.eclipse.debug.internal.core.groups.observer;

import java.util.concurrent.Callable;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.debug.core.model.IProcess;

/**
 * The {@code ProcessObserver} observes a given {@linkplain IProcess process} instance and notifies
 * a {@linkplain CountDownLatch synchronization object} when the process terminates.
 */
public final class ProcessObserver implements Callable<Integer> {
    private final IProcess p;
    private final IProgressMonitor pMonitor;
    private final CountDownLatch countDownLatch;

    public ProcessObserver(IProgressMonitor monitor, IProcess p, CountDownLatch countDownLatch) {
        this.p = p;
        this.pMonitor = monitor;
        this.countDownLatch = countDownLatch;
    }

    @Override
    public Integer call() throws Exception {
        try {
            while (!p.isTerminated() && !pMonitor.isCanceled()) {
                TimeUnit.MILLISECONDS.sleep(250);

                if (countDownLatch.getCount() == 0) {
                    break;
                }
            }
            // check if terminated or timeout
            if (p.isTerminated()) {
                return p.getExitValue();
            }
            return 0;
        } finally {
            countDownLatch.countDown();
        }
    }
}

Back to the top