hessianmodel.java

来自「RESIN 3.2 最新源码」· Java 代码 · 共 208 行

JAVA
208
字号
/* * 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 Software Foundation, Inc. *   59 Temple Place, Suite 330 *   Boston, MA 02111-1307  USA * * @author Scott Ferguson */package com.caucho.ejb.hessian;import com.caucho.naming.AbstractModel;import com.caucho.naming.NamingExceptionWrapper;import com.caucho.services.name.NameServerRemote;import com.caucho.util.L10N;import javax.ejb.EJBHome;import javax.naming.NamingException;import java.util.ArrayList;import java.util.Hashtable;import java.util.List;import java.util.logging.*;/** * JNDI context for Hessian home objects. * * <p>For now, only allow single level calls to the EJB. */public class HessianModel extends AbstractModel {  private static final Logger log    = Logger.getLogger(HessianModel.class.getName());  private static L10N L = new L10N(HessianModel.class);    private String _urlPrefix;  private String _namePrefix;  private HessianModel _root;  private Hashtable _cache;  private HessianClientContainer _client;  private NameServerRemote _remoteRoot;  private NameServerRemote _remote;    /**   * Creates a new Hessian model   */  public HessianModel(String prefix)  {    if (! prefix.endsWith("/"))      prefix = prefix + '/';        _urlPrefix = prefix;    _namePrefix = "/";    _root = this;    _cache = new Hashtable();  }    /**   * Returns the root Hessian model   */  public HessianModel(String namePrefix, HessianModel root)  {    if (! namePrefix.endsWith("/"))      namePrefix = namePrefix + '/';        _namePrefix = namePrefix;    _root = root;  }  void setRemote(NameServerRemote remote)  {    _remote = remote;  }  void setClientContainer(HessianClientContainer client)  {    _root._client = client;  }  /**   * Creates a new instance of HessianModel.   */  public AbstractModel copy()  {    return this;  }  /**   * Returns the full url prefix.   */  String getURLPrefix()  {    return _root._urlPrefix;  }  /**   * Looks up the named bean.  Since we're assuming only a single level,   * just try to look it up directly.   *   * <p>Hessian to find all the valid names.   *   * @param name the segment name to lookup   *   * @return the home stub.   */  public Object lookup(String name)    throws NamingException  {    try {      String urlPrefix = getURLPrefix();      String cacheName = urlPrefix + _namePrefix + name;            Object obj = _root._cache.get(cacheName);      if (obj != null)        return obj;      if (_root._remoteRoot == null) {        if (_root._client == null)          _root._client = HessianClientContainer.find(urlPrefix);        Object stub = _client.createObjectStub(urlPrefix);        _root._remoteRoot = (NameServerRemote) stub;      }      obj = _root._remoteRoot.lookup(_namePrefix + name);      if (obj instanceof EJBHome)        _root._cache.put(cacheName, obj);      else if (obj instanceof NameServerRemote) {        HessianModel model = new HessianModel(_namePrefix + name, _root);        NameServerRemote remote = (NameServerRemote) obj;        model.setRemote(remote);        obj = model;        _root._cache.put(cacheName, obj);      }      return obj;    } catch (Exception e) {      throw new NamingExceptionWrapper(e);    }  }  /**   * Returns a list of children of the named bean.   *   * @return array of the children.   */  public List list()    throws NamingException  {    try {      if (_remote == null) {        if (_root._remoteRoot == null) {          if (_root._client == null)            _root._client = HessianClientContainer.find(getURLPrefix());                _root._remoteRoot =            (NameServerRemote) _client.createObjectStub(getURLPrefix());        }        Object obj = _root._remoteRoot.lookup(_namePrefix);        if (obj instanceof NameServerRemote)          _remote = (NameServerRemote) obj;      }      if (_remote == null)        throw new NamingException(L.l("Hessian object '{0}' is not a context.",                                      getURLPrefix() + _namePrefix));      String []list = _remote.list();      ArrayList value = new ArrayList();      for (int i = 0; list != null && i < list.length; i++)        value.add(list[i]);            return value;    } catch (NamingException e) {      throw e;    } catch (Exception e) {      throw new NamingExceptionWrapper(e);    }  }  public String toString()  {    return "HessianModel[url=" + " " + getURLPrefix() + ",name=" + _namePrefix + "]";  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?