blob: 5506e15f7eeb4244e0fcdfd2317622a4f036ca1f [file] [log] [blame]
// ========================================================================
// Copyright (c) Webtide LLC
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// and Apache License v2.0 which accompanies this distribution.
//
// The Eclipse Public License is available at
// http://www.eclipse.org/legal/epl-v10.html
//
// The Apache License v2.0 is available at
// http://www.apache.org/licenses/LICENSE-2.0.txt
//
// You may elect to redistribute this code under either of these licenses.
// ========================================================================
package org.eclipse.jetty.deploy.standard;
import org.eclipse.jetty.deploy.App;
import org.eclipse.jetty.deploy.AppLifeCycle;
import org.eclipse.jetty.deploy.AppLifeCycleEvent;
import org.eclipse.jetty.deploy.DeploymentManager;
import org.eclipse.jetty.deploy.AppLifeCycle.Phase;
import org.eclipse.jetty.server.handler.ContextHandler;
import org.eclipse.jetty.util.log.Log;
/**
* Default {@link AppLifeCycle.Phase#START} implementation.
*/
public class DefaultStarter extends DefaultAppLifeCycleAdapter
{
@Override
public void onLifeCyclePhase(AppLifeCycleEvent event) throws Exception
{
if (event.getLifeCyclePhase() == Phase.START)
{
DeploymentManager deployMan = event.getDeploymentManager();
App app = event.getApp();
ContextHandler handler = app.getContextHandler(deployMan);
if (!handler.isStarted())
{
handler.start();
}
// Remove other apps at same context
for (App other : deployMan.getAppsWithSameContext(app))
{
Log.info("Removing apps with same context: " + other);
deployMan.walkLifecycle(other,AppLifeCycle.State.UNAVAILABLE);
}
}
}
}