blob: 63eb4b8ff33f991d7fa070fdc147b824da5d1970 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2011 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) {
if (Trace.SEVERE) {
Trace.trace(Trace.STRING_SEVERE, "Could not monitor", e);
}
}
}
}
}