deploymentmanagerimpl.java
来自「RESIN 3.2 最新源码」· Java 代码 · 共 441 行
JAVA
441 行
/* * Copyright (c) 1998-2008 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 SoftwareFoundation, Inc. * 59 Temple Place, Suite 330 * Boston, MA 02111-1307 USA * * @author Scott Ferguson */package com.caucho.j2ee.deployclient;import com.caucho.hessian.client.HessianProxyFactory;import com.caucho.util.L10N;import javax.enterprise.deploy.model.DeployableObject;import javax.enterprise.deploy.shared.DConfigBeanVersionType;import javax.enterprise.deploy.shared.ModuleType;import javax.enterprise.deploy.spi.DeploymentConfiguration;import javax.enterprise.deploy.spi.DeploymentManager;import javax.enterprise.deploy.spi.Target;import javax.enterprise.deploy.spi.TargetModuleID;import javax.enterprise.deploy.spi.exceptions.DConfigBeanVersionUnsupportedException;import javax.enterprise.deploy.spi.exceptions.DeploymentManagerCreationException;import javax.enterprise.deploy.spi.exceptions.InvalidModuleException;import javax.enterprise.deploy.spi.exceptions.TargetException;import javax.enterprise.deploy.spi.status.ProgressObject;import java.io.File;import java.io.FileInputStream;import java.io.InputStream;import java.util.Locale;import java.util.logging.Level;import java.util.logging.Logger;/** * Manager for the deployments. */public class DeploymentManagerImpl implements DeploymentManager { private static final L10N L = new L10N(DeploymentManagerImpl.class); private static final Logger log = Logger.getLogger(DeploymentManagerImpl.class.getName()); private String _uri; private DeploymentProxyAPI _proxy; DeploymentManagerImpl(String uri) { int p = uri.indexOf("http"); if (p < 0) throw new IllegalArgumentException(L.l("'{0}' is an illegal URI for DeploymentManager.", uri)); _uri = uri.substring(p); } /** * Connect to the manager. */ void connect(String user, String password) throws DeploymentManagerCreationException { try { HessianProxyFactory factory = new HessianProxyFactory(); factory.setUser(user); factory.setPassword(password); factory.setReadTimeout(120000); if (log.isLoggable(Level.FINE)) log.fine("DeploymentManager[" + _uri + "] creating proxy"); _proxy = (DeploymentProxyAPI) factory.create(DeploymentProxyAPI.class, _uri); } catch (Exception e) { log.log(Level.FINE, e.toString(), e); DeploymentManagerCreationException exn; exn = new DeploymentManagerCreationException(e.getMessage()); exn.initCause(e); throw exn; } } /** * Returns the targets supported by the manager. */ public Target []getTargets() throws IllegalStateException { if (_proxy == null) throw new IllegalStateException("DeploymentManager is disconnected"); Thread thread = Thread.currentThread(); ClassLoader oldLoader = thread.getContextClassLoader(); try { thread.setContextClassLoader(getClass().getClassLoader()); Target []targets = _proxy.getTargets(); if (targets == null) return new Target[0]; return targets; } catch (RuntimeException e) { throw e; } catch (Exception e) { e.printStackTrace(); throw new RuntimeException(e); } finally { thread.setContextClassLoader(oldLoader); } } /** * Returns the current running modules. */ public TargetModuleID []getRunningModules(ModuleType moduleType, Target []targetList) throws TargetException, IllegalStateException { return new TargetModuleID[0]; } /** * Returns the current non-running modules. */ public TargetModuleID []getNonRunningModules(ModuleType moduleType, Target []targetList) throws TargetException, IllegalStateException { return new TargetModuleID[0]; } /** * Returns all available modules. */ public TargetModuleID []getAvailableModules(ModuleType moduleType, Target []targetList) throws TargetException, IllegalStateException { if (_proxy == null) throw new IllegalStateException("DeploymentManager is disconnected"); Thread thread = Thread.currentThread(); ClassLoader oldLoader = thread.getContextClassLoader(); try { thread.setContextClassLoader(getClass().getClassLoader()); return _proxy.getAvailableModules(moduleType.toString()); } finally { thread.setContextClassLoader(oldLoader); } } /** * Returns a configuration for the deployable object. */ public DeploymentConfiguration createConfiguration(DeployableObject dObj) throws InvalidModuleException { throw new UnsupportedOperationException(); } /** * Deploys the object. */ public ProgressObject distribute(Target []targetList, File archive, File deploymentPlan) throws IllegalStateException { InputStream archiveIn = null; InputStream ddIn = null; try { archiveIn = new FileInputStream(archive); ddIn = new FileInputStream(deploymentPlan); return distribute(targetList, archiveIn, ddIn); } catch (Exception e) { throw new RuntimeException(e); } finally { try { if (archiveIn != null) archiveIn.close(); } catch (Throwable e) { log.log(Level.FINE, e.toString(), e); } try { if (ddIn != null) ddIn.close(); } catch (Throwable e) { log.log(Level.FINE, e.toString(), e); } } } /** * Deploys the object. */ public ProgressObject distribute(Target []targetList, InputStream archive, InputStream deploymentPlan) throws IllegalStateException { if (_proxy == null) { String message = L.l("DeploymentManager is disconnected"); log.log(Level.FINE, message); ProgressObjectImpl progress = new ProgressObjectImpl(new TargetModuleID[] {}); progress.failed(message); return progress; } if (deploymentPlan == null) { String message = L.l("{0} is required", "deployment plan"); log.log(Level.FINE, message); ProgressObjectImpl progress = new ProgressObjectImpl(new TargetModuleID[] {}); progress.failed(message); return progress; } Thread thread = Thread.currentThread(); ClassLoader oldLoader = thread.getContextClassLoader(); try { thread.setContextClassLoader(getClass().getClassLoader()); return _proxy.distribute(targetList, deploymentPlan, archive); } finally { thread.setContextClassLoader(oldLoader); } } /** * Starts the modules. */ public ProgressObject start(TargetModuleID []moduleIDList) throws IllegalStateException { if (_proxy == null) throw new IllegalStateException("DeploymentManager is disconnected"); Thread thread = Thread.currentThread(); ClassLoader oldLoader = thread.getContextClassLoader(); try { thread.setContextClassLoader(getClass().getClassLoader()); return _proxy.start(moduleIDList); } finally { thread.setContextClassLoader(oldLoader); } } /** * Stops the modules. */ public ProgressObject stop(TargetModuleID []moduleIDList) throws IllegalStateException { if (_proxy == null) throw new IllegalStateException("DeploymentManager is disconnected"); Thread thread = Thread.currentThread(); ClassLoader oldLoader = thread.getContextClassLoader(); try { thread.setContextClassLoader(getClass().getClassLoader()); return _proxy.stop(moduleIDList); } finally { thread.setContextClassLoader(oldLoader); } } /** * Undeploys the modules. */ public ProgressObject undeploy(TargetModuleID []moduleIDList) throws IllegalStateException { if (_proxy == null) throw new IllegalStateException("DeploymentManager is disconnected"); Thread thread = Thread.currentThread(); ClassLoader oldLoader = thread.getContextClassLoader(); try { thread.setContextClassLoader(getClass().getClassLoader()); return _proxy.undeploy(moduleIDList); } finally { thread.setContextClassLoader(oldLoader); } } /** * Returns true if the redeploy is supported. */ public boolean isRedeploySupported() { return false; } /** * Redeploys the object. */ public ProgressObject redeploy(TargetModuleID []targetList, File archive, File deploymentPlan) throws IllegalStateException { throw new UnsupportedOperationException(); } /** * Redeploys the object. */ public ProgressObject redeploy(TargetModuleID []targetList, InputStream archive, InputStream deploymentPlan) throws IllegalStateException { throw new UnsupportedOperationException(); } /** * Frees any resources. */ public void release() { } /** * Returns the default locale. */ public Locale getDefaultLocale() { throw new UnsupportedOperationException(); } /** * Returns the current locale. */ public Locale getCurrentLocale() { throw new UnsupportedOperationException(); } /** * Sets the default locale. */ public void setLocale(Locale locale) { throw new UnsupportedOperationException(); } /** * Returns the supported locales. */ public Locale []getSupportedLocales() { throw new UnsupportedOperationException(); } /** * Returns true if the locale is supported. */ public boolean isLocaleSupported(Locale locale) { return false; } /** * Returns the bean's J2EE version. */ public DConfigBeanVersionType getDConfigBeanVersion() { return DConfigBeanVersionType.V1_4; } /** * Returns true if the given version is supported. */ public boolean isDConfigBeanVersionSupported(DConfigBeanVersionType version) { return true; } /** * Sets true if the given version is supported. */ public void setDConfigBeanVersionSupported(DConfigBeanVersionType version) throws DConfigBeanVersionUnsupportedException { } /** * Return the debug view of the manager. */ public String toString() { return "DeploymentManagerImpl[" + _uri + "]"; } public ProgressObject distribute(Target[] arg0, ModuleType arg1, InputStream arg2, InputStream arg3) throws IllegalStateException { throw new UnsupportedOperationException("Not supported yet."); } public void setDConfigBeanVersion(DConfigBeanVersionType arg0) throws DConfigBeanVersionUnsupportedException { throw new UnsupportedOperationException("Not supported yet."); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?