-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathPythonGatewayTracker.java
More file actions
198 lines (173 loc) · 7.46 KB
/
PythonGatewayTracker.java
File metadata and controls
198 lines (173 loc) · 7.46 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/*
* ------------------------------------------------------------------------
*
* Copyright by KNIME AG, Zurich, Switzerland
* Website: http://www.knime.com; Email: contact@knime.com
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 3, as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses>.
*
* Additional permission under GNU GPL version 3 section 7:
*
* KNIME interoperates with ECLIPSE solely via ECLIPSE's plug-in APIs.
* Hence, KNIME and ECLIPSE are both independent programs and are not
* derived from each other. Should, however, the interpretation of the
* GNU GPL Version 3 ("License") under any applicable laws result in
* KNIME and ECLIPSE being a combined program, KNIME AG herewith grants
* you the additional permission to use and propagate KNIME together with
* ECLIPSE with only the license terms in place for ECLIPSE applying to
* ECLIPSE and the GNU GPL Version 3 applying for KNIME, provided the
* license terms of ECLIPSE themselves allow for the respective use and
* propagation of ECLIPSE together with KNIME.
*
* Additional permission relating to nodes for KNIME that extend the Node
* Extension (and in particular that are based on subclasses of NodeModel,
* NodeDialog, and NodeView) and that only interoperate with KNIME through
* standard APIs ("Nodes"):
* Nodes are deemed to be separate and independent programs and to not be
* covered works. Notwithstanding anything to the contrary in the
* License, the License does not apply to Nodes, you are not required to
* license Nodes under the License, and you are granted a license to
* prepare and propagate Nodes, in each case even if such Nodes are
* propagated with or for interoperation with KNIME. The owner of a Node
* may freely choose the license terms applicable to such Node, including
* when such Node is propagated with or for interoperation with KNIME.
* ---------------------------------------------------------------------
*
* History
* 25 Nov 2022 (chaubold): created
*/
package org.knime.python3;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Map;
import java.util.Set;
import org.knime.core.node.NodeLogger;
import org.knime.python3.PythonGatewayCreationGate.PythonGatewayCreationGateListener;
import com.google.common.cache.CacheBuilder;
/**
* Tracks {@link PythonGateway}s created by {@link PythonGatewayFactory}s in order to be able to close them in case all
* running Python processes need to be cleaned up (e.g. during environment installation).
*
* @author Carsten Haubold, KNIME GmbH, Konstanz, Germany
*/
public final class PythonGatewayTracker implements PythonGatewayCreationGateListener {
/**
* The public instance of the GatewayTracker. There can be only one!
*/
public static final PythonGatewayTracker INSTANCE = new PythonGatewayTracker();
private static final NodeLogger LOGGER = NodeLogger.getLogger(PythonGatewayTracker.class);
private final Set<TrackedPythonGateway<?>> m_openGateways;
private PythonGatewayTracker() {
m_openGateways = gatewaySet();
}
/**
* Create a {@link PythonGateway} that is tracked and thus can be closed if needed.
*
* @param <EP> type of {@link PythonEntryPoint} used for this {@link PythonGateway}
* @param gateway The {@link PythonGateway} to track
* @return The tracked {@link PythonGateway}
*/
public <EP extends PythonEntryPoint> PythonGateway<EP> createTrackedGateway(final PythonGateway<EP> gateway) {
return new TrackedPythonGateway<>(gateway, this);
}
@Override
public void onPythonGatewayCreationGateOpen() {
// Nothing to do
}
@Override
public void onPythonGatewayCreationGateClose() {
try {
clear();
} catch (IOException ex) {
LOGGER.warn("Error when forcefully terminating Python process", ex);
}
}
void clear() throws IOException {
if (m_openGateways.isEmpty()) {
return;
}
LOGGER.errorWithFormat(
"Found running Python processes (%d). Aborting them to allow installation process. "
+ "If this leads to failures in node execution, "
+ "please restart those nodes once the installation has finished. Triggered from thread '%s'.",
m_openGateways.size(), Thread.currentThread().getName());
var exceptions = new ArrayList<Exception>();
for (var gateway : m_openGateways) {
// not using gateway.close() because that would modify m_openGateways during iteration
try {
gateway.m_delegate.close();
} catch (Exception ex) {
exceptions.add(ex);
}
}
m_openGateways.clear();
if (!exceptions.isEmpty()) {
if (exceptions.size() == 1) {
throw new IOException("Aborting Python process failed.", exceptions.get(0));
} else {
for (var exception : exceptions) {
LOGGER.error("Aborting Python process failed.", exception);
}
throw new IOException(
"There were multiple exceptions while aborting Python processes. See the log for details.");
}
}
}
private static final class TrackedPythonGateway<E extends PythonEntryPoint> implements PythonGateway<E> {
private final PythonGateway<E> m_delegate;
private final PythonGatewayTracker m_tracker;
public TrackedPythonGateway(final PythonGateway<E> delegate, final PythonGatewayTracker tracker) {
m_delegate = delegate;
m_tracker = tracker;
m_tracker.add(this); //NOSONAR object construction is finished at this point
}
@Override
public E getEntryPoint() {
return m_delegate.getEntryPoint();
}
@Override
public InputStream getStandardOutputStream() {
return m_delegate.getStandardOutputStream();
}
@Override
public InputStream getStandardErrorStream() {
return m_delegate.getStandardErrorStream();
}
@Override
public void close() throws IOException {
try {
m_delegate.close();
} finally {
m_tracker.remove(this);
}
}
@Override
public String getTerminationReason() {
return m_delegate.getTerminationReason();
}
}
@SuppressWarnings("unchecked")
private static Set<TrackedPythonGateway<?>> gatewaySet() {
@SuppressWarnings("rawtypes")
Map map = CacheBuilder.newBuilder().weakKeys().build().asMap();
return Collections.newSetFromMap(map);
}
private <EP extends PythonEntryPoint> void remove(final TrackedPythonGateway<EP> gateway) {
m_openGateways.remove(gateway);
}
private <EP extends PythonEntryPoint> void add(final TrackedPythonGateway<EP> gateway) {
m_openGateways.add(gateway);
}
}