All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.caucho.bam.manager.SimpleBamManager Maven / Gradle / Ivy

/*
 * Copyright (c) 1998-2018 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.bam.manager;

import java.util.concurrent.atomic.AtomicLong;

import com.caucho.bam.actor.AbstractAgent;
import com.caucho.bam.actor.ActorSender;
import com.caucho.bam.actor.Agent;
import com.caucho.bam.actor.BamActorRef;
import com.caucho.bam.actor.ManagedActor;
import com.caucho.bam.actor.SimpleActor;
import com.caucho.bam.actor.SimpleActorRef;
import com.caucho.bam.actor.SimpleActorSender;
import com.caucho.bam.broker.Broker;
import com.caucho.bam.broker.ManagedBroker;
import com.caucho.bam.broker.ManagedBrokerAdapter;
import com.caucho.bam.mailbox.ActorMailbox;
import com.caucho.bam.mailbox.Mailbox;
import com.caucho.bam.mailbox.MailboxType;
import com.caucho.bam.mailbox.MultiworkerMailbox;
import com.caucho.bam.mailbox.PassthroughMailbox;
import com.caucho.bam.proxy.BamProxyFactory;
import com.caucho.bam.proxy.ProxyActor;
import com.caucho.bam.query.QuerySender;
import com.caucho.bam.router.BamRouter;
import com.caucho.bam.stream.MessageStream;
import com.caucho.bam.stream.NullActor;
import com.caucho.util.Alarm;
import com.caucho.util.CurrentTime;

/**
 * Broker is the hub which routes messages to actors.
 */
public class SimpleBamManager implements BamManager
{
  private final AtomicLong _sequence = new AtomicLong(CurrentTime.getCurrentTime());
  
  private ManagedBroker _broker;
  private long _timeout = 600 * 1000L;
  
  public SimpleBamManager(Broker broker)
  {
    this(ManagedBrokerAdapter.create(broker));
  }
  
  public SimpleBamManager(ManagedBroker broker)
  {
    _broker = broker;
    
    if (broker == null)
      throw new NullPointerException();
  }
  
  @Override
  public ManagedBroker getBroker()
  {
    return _broker;
  }
  
  public long getTimeout()
  {
    return _timeout;
  }
  
  /**
   * Adds a mailbox.
   */
  @Override
  public void addMailbox(String address, Mailbox mailbox)
  {
    getBroker().addMailbox(address, mailbox);
  }
  
  /**
   * Removes a mailbox.
   */
  @Override
  public void removeMailbox(Mailbox mailbox)
  {
    getBroker().removeMailbox(mailbox);
  }

  @Override
  public void addActor(String address,
                       ManagedActor actor)
  {
    actor.setAddress(address);
    actor.setBroker(getBroker());
    
    Mailbox mailbox = createMailbox(address, 
                                    actor.getActor(), 
                                    MailboxType.DEFAULT);
    actor.setMailbox(mailbox);
    
    addMailbox(address, mailbox);
  }
  
  /**
   * Creates a skeleton actor.
   */
  public void addActorBean(String address, Object bean)
  {
    ProxyActor actor = new ProxyActor(bean, address, getBroker());
    
    Mailbox mailbox = createMailbox(address, 
                                    actor,
                                    MailboxType.DEFAULT);
    
    addMailbox(address, mailbox);
  }
  
  /**
   * Creates a skeleton actor.
   */
  @Override
  public Mailbox createService(String address, Object bean)
  {
    ProxyActor actor = new ProxyActor(bean, address, getBroker());
    
    Mailbox mailbox = createMailbox(address, 
                                    actor,
                                    MailboxType.MULTI_WORKER);
    
    addMailbox(address, mailbox);
    
    return mailbox;
  }
  
  /**
   * Creates an agent
   */
  // @Override
  public Agent createAgent(MessageStream actorStream)
  {
    return createAgent(actorStream, MailboxType.DEFAULT);
  }
    
  /**
   * Creates an agent
   */
  // @Override
  public Agent createAgent(MessageStream actorStream,
                           MailboxType mailboxType)
  {
    String address = actorStream.getAddress();
    
    Mailbox mailbox = createMailbox(address,
                                    actorStream, 
                                    mailboxType);
    
    Agent agent = new AbstractAgent(address,
                                    mailbox,
                                    getBroker());
    
    addMailbox(address, mailbox);
    
    return agent;
  }
  
  protected Mailbox createMailbox(MessageStream actorStream,
                                  MailboxType mailboxType)
  {
    return createMailbox(actorStream.getAddress(), actorStream, mailboxType);
  }
  
  protected Mailbox createMailbox(String address,
                                  MessageStream actorStream,
                                  MailboxType mailboxType)
  {
    switch (mailboxType) {
    case NON_QUEUED:
      return new PassthroughMailbox(address, actorStream, getBroker());
      
    case ACTOR:
      return new ActorMailbox(address, actorStream, getBroker());

    case MULTI_WORKER:
      return new MultiworkerMailbox(address, actorStream, getBroker(), 5);
      
    default:
      return new MultiworkerMailbox(address, actorStream, getBroker(), 5);
    }
  }
  
  @Override
  public Mailbox createClient(Mailbox next,
                              String uid,
                              String resource)
  {
    String address = null;
    
    if (uid == null)
      uid = Long.toHexString(_sequence.incrementAndGet());
    
    if (uid.indexOf('@') < 0)
      uid = uid + '@' + getBroker().getAddress();
    
    if (resource != null) {
      address = uid + "/" + resource;
      
      Mailbox mailbox = getBroker().getMailbox(address);
      
      if (mailbox != null)
        address = uid + "/" + resource + "-" + Long.toHexString(_sequence.incrementAndGet());
    }
    else {
      address = uid + "/" + Long.toHexString(_sequence.incrementAndGet());
    }
   
    Mailbox mailbox = new PassthroughMailbox(address, next, getBroker());
    
    addMailbox(address, mailbox);
    
    return mailbox;
  }
  
  @Override
  public ActorSender createClient(String uid,
                                  String resource)
  {
    String address = null;
    
    if (uid == null)
      uid = Long.toHexString(_sequence.incrementAndGet());
    
    if (uid.indexOf('@') < 0)
      uid = uid + '@' + getBroker().getAddress();
    
    if (resource != null) {
      address = uid + "/" + resource;
      
      Mailbox mailbox = getBroker().getMailbox(address);
      
      if (mailbox != null)
        address = uid + "/" + resource + "-" + Long.toHexString(_sequence.incrementAndGet());
    }
    else {
      address = uid + "/" + Long.toHexString(_sequence.incrementAndGet());
    }

    SimpleActor actor = new SimpleActor(address, getBroker());

    addActor(address, actor);
    
    return actor.getSender();
  }

  @Override
  public BamActorRef createActorRef(String to)
  {
    return new SimpleActorRef(to, getBroker());
  }

  @Override
  public  T createProxy(Class api, String to)
  {
    ActorSender sender = createClient(api.getSimpleName(), null);
    
    return createProxy(api, createActorRef(to), sender);
  }
  
  @Override
  public  T createProxy(Class api, BamActorRef to, ActorSender sender)
  {
    return BamProxyFactory.createProxy(api, to, sender, getTimeout());
  }
  
  @Override
  public  T createProxy(Class api, String to, ActorSender sender)
  {
    return BamProxyFactory.createProxy(api, 
                                       createActorRef(to),
                                       sender,
                                       getTimeout());
  }
  
  public ActorSender createClient(String address)
  {
    SimpleActor actor = new SimpleActor(address, getBroker());

    addActor(address, actor);
    
    return actor.getSender();
  }

  @Override
  public String toString()
  {
    return getClass().getSimpleName() + "[" + getBroker().getAddress() + "]";
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy