Package org.red5.server

Source Code of org.red5.server.Launcher

/*
* RED5 Open Source Flash Server - http://code.google.com/p/red5/
*
* Copyright 2006-2014 by respective authors (see below). All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.red5.server;

import org.red5.logging.Red5LoggerFactory;
import org.red5.server.api.Red5;
import org.slf4j.Logger;
import org.slf4j.bridge.SLF4JBridgeHandler;
import org.springframework.context.support.FileSystemXmlApplicationContext;

/**
* Launches Red5.
*
* @author The Red5 Project
* @author Paul Gregoire (mondain@gmail.com)
*/
public class Launcher {

  /*
  static {
    ClassLoader tcl = Thread.currentThread().getContextClassLoader();   
    System.out.printf("[Launcher] Classloaders:\nSystem %s\nParent %s\nThis class %s\nTCL %s\n\n", ClassLoader.getSystemClassLoader(), tcl.getParent(), Launcher.class.getClassLoader(), tcl);
  }
  */

  /**
   * Launch Red5 under it's own classloader
   */
  public void launch() throws Exception {
    System.out.printf("Root: %s\nDeploy type: %s\nLogback selector: %s\n", System.getProperty("red5.root"), System.getProperty("red5.deployment.type"),
        System.getProperty("logback.ContextSelector"));
    // install the slf4j bridge (mostly for JUL logging)
    SLF4JBridgeHandler.install();
    // we create the logger here so that it is instanced inside the expected classloader
    // check for the logback disable flag
    boolean useLogback = Boolean.valueOf(System.getProperty("useLogback", "true"));
    Red5LoggerFactory.setUseLogback(useLogback);
    // get the first logger
    Logger log = Red5LoggerFactory.getLogger(Launcher.class);
    // version info banner
    log.info("{} (http://code.google.com/p/red5/)", Red5.getVersion());
    // create red5 app context
    @SuppressWarnings("resource")
    FileSystemXmlApplicationContext root = new FileSystemXmlApplicationContext(new String[] { "classpath:/red5.xml" }, false);
    // set the current threads classloader as the loader for the factory/appctx
    root.setClassLoader(Thread.currentThread().getContextClassLoader());
    root.setId("red5.root");
    root.setBeanName("red5.root");
    // refresh must be called before accessing the bean factory
    log.trace("Refreshing root server context");
    root.refresh();
    log.trace("Root server context refreshed");
    /*
    if (log.isTraceEnabled()) {
      String[] names = ctx.getBeanDefinitionNames();
      for (String name : names) {
        log.trace("Bean name: {}", name);
      }
    }
    */
    log.debug("Launcher exit");
  }

}
TOP

Related Classes of org.red5.server.Launcher

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.