blob: d63b630afcbba33cfd283bc8a4d2e1de6d5acb06 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 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.wst.server.ui.internal.view.servers;
import org.eclipse.jface.action.Action;
import org.eclipse.wst.server.core.*;
import org.eclipse.wst.server.core.internal.IMonitoredServerPort;
import org.eclipse.wst.server.core.internal.IServerMonitorManager;
import org.eclipse.wst.server.core.internal.ServerMonitorManager;
import org.eclipse.wst.server.ui.internal.Messages;
import org.eclipse.wst.server.ui.internal.Trace;
import org.eclipse.osgi.util.NLS;
import org.eclipse.swt.widgets.Shell;
/**
* Monitor a server port.
*/
public class MonitorServerPortAction extends Action {
protected Shell shell;
protected IServer server;
protected ServerPort port;
protected IMonitoredServerPort monitoredPort;
protected boolean checked;
public MonitorServerPortAction(Shell shell, IServer server, ServerPort port) {
super(NLS.bind(Messages.actionMonitorPort, new String[] { port.getPort() + "", port.getName() }));
this.shell = shell;
this.server = server;
this.port = port;
IMonitoredServerPort[] msps = ServerMonitorManager.getInstance().getMonitoredPorts(server);
if (msps != null) {
int size = msps.length;
for (int i = 0; i < size; i++) {
if (port.equals(msps[i].getServerPort()) && // msps[i].isStarted() &&
(msps[i].getContentTypes() == null || msps[i].getContentTypes().length == 0 ||
(port.getContentTypes() != null && msps[i].getContentTypes().length == port.getContentTypes().length)))
monitoredPort = msps[i];
}
}
checked = monitoredPort != null; // && monitoredPort.isStarted();
setChecked(checked);
}
/**
* Enable or disable monitoring.
*/
public void run() {
IServerMonitorManager smm = ServerMonitorManager.getInstance();
if (checked) {
smm.removeMonitor(monitoredPort);
} else {
if (monitoredPort == null)
monitoredPort = smm.createMonitor(server, port, -1, null);
try {
smm.startMonitor(monitoredPort);
} catch (Exception e) {
Trace.trace(Trace.SEVERE, "Could not monitor", e);
}
}
}
}