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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
|
// Copyright (C) 2009 Red Hat, Inc.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library 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
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
package net.sourceforge.jnlp.services;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.net.ServerSocket;
import java.net.Socket;
import java.net.UnknownHostException;
import java.util.LinkedList;
import java.util.List;
import java.util.Map.Entry;
import java.util.Set;
import javax.jnlp.SingleInstanceListener;
import javax.management.InstanceAlreadyExistsException;
import net.sourceforge.jnlp.JNLPFile;
import net.sourceforge.jnlp.PluginBridge;
import net.sourceforge.jnlp.runtime.JNLPRuntime;
/**
* This class implements SingleInstanceService
*
* @author <a href="mailto:omajid@redhat.com">Omair Majid</a>
*/
public class XSingleInstanceService implements ExtendedSingleInstanceService {
boolean initialized = false;
List<SingleInstanceListener> listeners = new LinkedList<SingleInstanceListener>();
/**
* Implements a server that listens for arguments from new instances of this
* application
*
*/
class SingleInstanceServer implements Runnable {
SingleInstanceLock lockFile = null;
public SingleInstanceServer(SingleInstanceLock lockFile) {
this.lockFile = lockFile;
}
public void run() {
ServerSocket listeningSocket = null;
try {
listeningSocket = new ServerSocket(0);
lockFile.createWithPort(listeningSocket.getLocalPort());
if (JNLPRuntime.isDebug()) {
System.out.println("Starting SingleInstanceServer on port" + listeningSocket);
}
while (true) {
try {
Socket communicationSocket = listeningSocket.accept();
ObjectInputStream ois = new ObjectInputStream(communicationSocket
.getInputStream());
String[] arguments = (String[]) ois.readObject();
notifySingleInstanceListeners(arguments);
} catch (Exception exception) {
// not much to do here...
exception.printStackTrace();
}
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if (listeningSocket != null) {
try {
listeningSocket.close();
} catch (IOException e) {
// Give up.
e.printStackTrace();
}
}
}
}
}
/**
* Create a new XSingleInstanceService
*/
protected XSingleInstanceService() {
}
/**
* Initialize the new SingleInstanceService
*
* @throws InstanceAlreadyExistsException if the instance already exists
*/
public void initializeSingleInstance() {
// this is called after the application has started. so safe to use
// JNLPRuntime.getApplication()
JNLPFile jnlpFile = JNLPRuntime.getApplication().getJNLPFile();
if (!initialized || jnlpFile instanceof PluginBridge) {
// Either a new process or a new applet being handled by the plugin.
checkSingleInstanceRunning(jnlpFile);
initialized = true;
SingleInstanceLock lockFile;
lockFile = new SingleInstanceLock(jnlpFile);
if (!lockFile.isValid()) {
startListeningServer(lockFile);
}
}
}
/**
* Check if another instance of this application is already running
*
* @param jnlpFile The {@link JNLPFile} that specifies the application
*
* @throws InstanceExistsException if an instance of this application
* already exists
*/
@Override
public void checkSingleInstanceRunning(JNLPFile jnlpFile) {
SingleInstanceLock lockFile = new SingleInstanceLock(jnlpFile);
if (lockFile.isValid()) {
int port = lockFile.getPort();
if (JNLPRuntime.isDebug()) {
System.out.println("Lock file is valid (port=" + port + "). Exiting.");
}
String[] args = null;
if (jnlpFile.isApplet()) {
// FIXME Proprietary plug-in is unclear about how to handle
// applets and their parameters.
//Right now better to forward at least something
Set<Entry<String, String>> currentParams = jnlpFile.getApplet().getParameters().entrySet();
args = new String[currentParams.size() * 2];
int i = 0;
for (Entry<String, String> entry : currentParams) {
args[i] = entry.getKey();
args[i+1] = entry.getValue();
i += 2;
}
} else if (jnlpFile.isInstaller()) {
// TODO Implement this once installer service is available.
} else {
args = jnlpFile.getApplication().getArguments();
}
try {
sendProgramArgumentsToExistingApplication(port, args);
throw new InstanceExistsException(String.valueOf(port));
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
/**
* Start the listening server to accept arguments from new instances of
* applications
*
* @param lockFile
* the {@link SingleInstanceLock} that the server should use
*/
private void startListeningServer(SingleInstanceLock lockFile) {
SingleInstanceServer server = new SingleInstanceServer(lockFile);
Thread serverThread = new Thread(server);
/*
* mark as daemon so the JVM can shutdown if the server is the only
* thread running
*/
serverThread.setDaemon(true);
serverThread.start();
}
/**
* Send the arguments for this application to the main instance
*
* @param port the port at which the SingleInstanceServer is listening at
* @param arguments the new arguments
* @throws IOException on any io exception
*/
private void sendProgramArgumentsToExistingApplication(int port, String[] arguments)
throws IOException {
try {
Socket serverCommunicationSocket = new Socket((String) null, port);
ObjectOutputStream argumentStream = new ObjectOutputStream(serverCommunicationSocket
.getOutputStream());
argumentStream.writeObject(arguments);
argumentStream.close();
serverCommunicationSocket.close();
} catch (UnknownHostException unknownHost) {
if (JNLPRuntime.isDebug()) {
System.out.println("Unable to find localhost");
}
throw new RuntimeException(unknownHost);
}
}
/**
* Notify any SingleInstanceListener with new arguments
*
* @param arguments the new arguments to the application
*/
private void notifySingleInstanceListeners(String[] arguments) {
for (SingleInstanceListener listener : listeners) {
// TODO this proxy is privileged. should i worry about security in
// methods being called?
listener.newActivation(arguments);
}
}
/**
* Add the specified SingleInstanceListener
*
* @throws InstanceExistsException, which is likely to terminate the
* application but not guaranteed to
*/
public void addSingleInstanceListener(SingleInstanceListener sil) {
initializeSingleInstance();
if (sil == null) {
return;
}
listeners.add(sil);
}
/**
* Remove the specified SingleInstanceListener
*
* @throws InstanceExistsException if an instance of this single instance
* application already exists
*
*/
public void removeSingleInstanceListener(SingleInstanceListener sil) {
initializeSingleInstance();
if (sil == null) {
return;
}
listeners.remove(sil);
}
}
|