Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d06d720833a163f5fbd53a1c61cbb2a3b8fd802d (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*******************************************************************************
 * Copyright (c) 2000, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.linuxtools.internal.rdt.proxy;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;

import org.eclipse.remote.core.IRemoteProcess;

/**
 * Bundled state of a launched process including the threads linking the process
 * in/output to console documents.
 */
public class RemoteProcessClosure {

    /**
     * Thread which continuously reads from a input stream and pushes the read
     * data to an output stream which is immediately flushed afterwards.
     */
    protected static class ReaderThread extends Thread {

        private InputStream fInputStream;
        private OutputStream fOutputStream;
        private boolean fFinished = false;
        private String lineSeparator;
        /*
         * outputStream can be null
         */
        public ReaderThread(ThreadGroup group, String name, InputStream in, OutputStream out) {
            super(group, name);
            fOutputStream = out;
            fInputStream = in;
            setDaemon(true);
            lineSeparator = System.getProperty("line.separator"); //$NON-NLS-1$
        }

        @Override
        public void run() {
            try {
                try {
                    BufferedReader reader = new BufferedReader(new InputStreamReader(fInputStream));
                    String line;
                    while ((line = reader.readLine()) != null) {
                        line += lineSeparator;
                        fOutputStream.write(line.getBytes());
                    }
                } catch (IOException x) {
                    // ignore
                } finally {
                    try {
                        //					writer.flush();
                        fOutputStream.flush();
                    } catch (IOException e) {
                        // ignore
                    }
                    try {
                        fInputStream.close();
                    } catch (IOException e) {
                        // ignore
                    }
                }
            } finally {
                complete();
            }
        }

        public synchronized boolean finished() {
            return fFinished;
        }

        public synchronized void waitFor() {
            while (!fFinished) {
                try {
                    wait();
                } catch (InterruptedException e) {
                }
            }
        }

        public synchronized void complete() {
            fFinished = true;
            notify();
        }

        public void close() {
            try {
                fOutputStream.close();
            } catch (IOException e) {
                // ignore
            }
        }
    }

    private static int fCounter = 0;

    private IRemoteProcess fProcess;

    private OutputStream fOutput;
    private OutputStream fError;

    private ReaderThread fOutputReader;
    private ReaderThread fErrorReader;

    /**
     * Creates a process closure and connects the launched process with a
     * console document.
     *
     * @param outputStream
     *            prcess stdout is written to this stream. Can be
     *            <code>null</code>, if not interested in reading the output
     * @param errorStream
     *            prcess stderr is written to this stream. Can be
     *            <code>null</code>, if not interested in reading the output
     */
    public RemoteProcessClosure(IRemoteProcess process, OutputStream outputStream, OutputStream errorStream) {
        fProcess = process;
        fOutput = outputStream;
        fError = errorStream;
    }

    /**
     * Live links the launched process with the configured in/out streams using
     * reader threads.
     */
    public void runNonBlocking() {
        ThreadGroup group = new ThreadGroup("CBuilder" + fCounter++); //$NON-NLS-1$

        InputStream stdin = fProcess.getInputStream();
        InputStream stderr = fProcess.getErrorStream();

        fOutputReader = new ReaderThread(group, "OutputReader", stdin, fOutput); //$NON-NLS-1$
        fErrorReader = new ReaderThread(group, "ErrorReader", stderr, fError); //$NON-NLS-1$

        fOutputReader.start();
        fErrorReader.start();
    }

    public boolean isAlive() {
        if (fProcess != null) {
            if (fOutputReader.isAlive() || fErrorReader.isAlive()) {
                return true;
            }
            fProcess = null;
            fOutputReader.close();
            fErrorReader.close();
            fOutputReader = null;
            fErrorReader = null;
        }
        return false;
    }

    /**
     * Forces the termination the launched process
     */
    public void terminate() {
        if (fProcess != null) {
            fProcess.destroy();
            fProcess = null;
        }
        if (!fOutputReader.finished()) {
            fOutputReader.waitFor();
        }
        if (!fErrorReader.finished()) {
            fErrorReader.waitFor();
        }
        fOutputReader.close();
        fErrorReader.close();
        fOutputReader = null;
        fErrorReader = null;
    }
}

Back to the top