Package com.caucho.server.e_app

Source Code of com.caucho.server.e_app.EarDeployGenerator

/*
* Copyright (c) 1998-2010 Caucho Technology -- all rights reserved
*
* This file is part of Resin(R) Open Source
*
* Each copy or derived work must preserve the copyright notice and this
* notice unmodified.
*
* Resin Open Source is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Resin Open Source 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, or any warranty
* of NON-INFRINGEMENT.  See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with Resin Open Source; if not, write to the
*
*   Free Software Foundation, Inc.
*   59 Temple Place, Suite 330
*   Boston, MA 02111-1307  USA
*
* @author Scott Ferguson
*/

package com.caucho.server.e_app;

import com.caucho.config.ConfigException;
import com.caucho.server.cluster.Server;
import com.caucho.server.deploy.DeployContainer;
import com.caucho.server.deploy.ExpandDeployGenerator;
import com.caucho.server.webapp.WebAppContainer;
import com.caucho.vfs.Path;

import java.util.ArrayList;

/**
* The generator for the ear-deploy
*/
public class EarDeployGenerator
  extends ExpandDeployGenerator<EarDeployController>
{
  private final EarDeployGeneratorAdmin _admin
    = new EarDeployGeneratorAdmin(this);

  private String _urlPrefix = "";

  private WebAppContainer _parentContainer;
 
  private EarConfig _earDefault;

  private ArrayList<EarConfig> _earDefaultList
    = new ArrayList<EarConfig>();

  public EarDeployGenerator(DeployContainer<EarDeployController> deployContainer,
          WebAppContainer parentContainer)
  {
    super(deployContainer, parentContainer.getRootDirectory());

    try {
      setExpandPrefix("_ear_");
      setExtension(".ear");
    } catch (Exception e) {
      throw new RuntimeException(e);
    }

    if (Server.getCurrent() != null) {
      setRepository(Server.getCurrent().getRepository());
     
      String hostName = parentContainer.getHostName();
      if ("".equals(hostName))
        hostName = "default";
   
      setRepositoryTag("ears/default/" + hostName);
    }

    _parentContainer = parentContainer;

    _earDefaultList.addAll(parentContainer.getEarDefaultList());
  }

  /**
   * Returns the parent container;
   */
  WebAppContainer getContainer()
  {
    return _parentContainer;
  }

  /**
   * Gets the URL prefix.
   */
  public String getURLPrefix()
  {
    return _urlPrefix;
  }

  /**
   * Sets the URL prefix.
   */
  public void setURLPrefix(String prefix)
  {
    _urlPrefix = prefix;
  }

  /**
   * Sets the ear default.
   */
  public void addEarDefault(EarConfig config)
  {
    _earDefaultList.add(config);
  }

  @Override
  protected void initImpl()
    throws ConfigException
  {
    super.initImpl();
  }

  @Override
  protected void startImpl()
    throws ConfigException
  {
    super.startImpl();

    _admin.register();
  }

  /**
   * Converts the archive name to the entry name, returns null if
   * the path name is not a valid entry name.
   */
  protected String archiveNameToEntryName(String archiveName)
  {
    if (! archiveName.endsWith(".ear"))
      return null;
    else
      return archiveName.substring(0, archiveName.length() - 4);
  }
 
  /**
   * Returns the current array of application entries.
   */
  public EarDeployController createController(String name)
  {
    String archiveName = name + getExtension();
    Path archivePath = getArchiveDirectory().lookup(archiveName);

    Path rootDirectory;

    String tag = getRepositoryTag() + "/" + name;

    if (archivePath.isDirectory()) {
      rootDirectory = getExpandDirectory().lookup(archiveName);
      archivePath = null;
    }
    else if (getRepository().getTagRoot(tag) != null) {
      rootDirectory = getExpandDirectory().lookup(getExpandName(name));
    }
    else {
      rootDirectory = getExpandDirectory().lookup(getExpandName(name));

      if (! archivePath.canRead() && ! rootDirectory.canRead())
  return null;
    }

    EarDeployController controller
      = new EarDeployController(name, rootDirectory, _parentContainer);

    controller.setArchivePath(archivePath);

    controller.setRepository(getRepository());
    controller.setRepositoryTag(tag);

    for (EarConfig config : _earDefaultList)
      controller.addConfigDefault(config);

    return controller;
  }

  @Override
  protected void destroyImpl()
  {
    _admin.unregister();

    super.destroyImpl();
  }
}
TOP

Related Classes of com.caucho.server.e_app.EarDeployGenerator

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.