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

com.caucho.v5.amp.pipe.PipeOutMessage Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
/*
 * Copyright (c) 1998-2015 Caucho Technology -- all rights reserved
 *
 * This file is part of Baratine(TM)
 *
 * Each copy or derived work must preserve the copyright notice and this
 * notice unmodified.
 *
 * Baratine 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.
 *
 * Baratine 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 Baratine; 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.v5.amp.pipe;

import java.util.Objects;
import java.util.logging.Logger;

import com.caucho.v5.amp.ServiceRefAmp;
import com.caucho.v5.amp.message.QueryMessageBase;
import com.caucho.v5.amp.spi.HeadersAmp;
import com.caucho.v5.amp.spi.InboxAmp;
import com.caucho.v5.amp.spi.LoadState;
import com.caucho.v5.amp.spi.OutboxAmp;
import com.caucho.v5.amp.stub.MethodAmp;
import com.caucho.v5.amp.stub.StubAmp;
import com.caucho.v5.util.L10N;

import io.baratine.pipe.Pipe;
import io.baratine.pipe.ResultPipeOut;

/**
 * Register a publisher to a pipe.
 */
public class PipeOutMessage
  extends QueryMessageBase>
  implements ResultPipeOut
{
  private static final L10N L = new L10N(PipeOutMessage.class);
  private static final Logger log 
    = Logger.getLogger(PipeOutMessage.class.getName());
  
  private final ResultPipeOut _result;

  private Object[] _args;
  
  private PipeImpl _pipe;
  private int _capacity;
  private int _prefetch = Pipe.PREFETCH_DEFAULT;
  private long _credits = Pipe.CREDIT_DISABLE;
  
  public PipeOutMessage(OutboxAmp outbox,
                        HeadersAmp headers,
                        ServiceRefAmp serviceRef,
                        MethodAmp method,
                        ResultPipeOut result,
                        long expires,
                        Object []args)
  {
    //super(outbox, headers, serviceRef, method);
    super(outbox, serviceRef, method, expires);
    
    Objects.requireNonNull(result);
    
    _result = result;
    
    _args = args;
  }

  @Override
  public final void invokeQuery(InboxAmp inbox, StubAmp stubDeliver)
  {
    try {
      MethodAmp method = getMethod();
    
      StubAmp stubMessage = serviceRef().stub();

      LoadState load = stubDeliver.load(stubMessage, this);
      
      load.outPipe(stubDeliver, stubMessage,
                   method,
                   getHeaders(),
                   this,
                   _args);
      
    } catch (Throwable e) {
      fail(e);
    }
  }

  //@Override
  public void failQ(Throwable exn)
  {
    _result.fail(exn);
  }
  
  private int capacity()
  {
    return _capacity;
  }
  
  @Override
  public void capacity(int capacity)
  {
    _capacity = capacity;
  }
  
  private int prefetch()
  {
    return _prefetch;
  }
  
  @Override
  public ResultPipeOut prefetch(int prefetch)
  {
    _prefetch = prefetch;
    
    return this;
  }
  
  private long credits()
  {
    return _credits;
  }
  
  @Override
  public ResultPipeOut credits(long credits)
  {
    _credits = credits;
    
    return this;
  }

  @Override
  public void ok(Pipe pipeIn)
  {
    Objects.requireNonNull(pipeIn);

    PipeBuilder builder = new PipeBuilder<>();
    
    builder.inPipe(pipeIn);
    builder.inRef(inboxTarget().serviceRef());
    builder.outRef(inboxCaller().serviceRef());

    builder.capacity(capacity());
    builder.credits(credits());
    builder.prefetch(prefetch());
    
    PipeImpl pipe = builder.build();
    
    _pipe = pipe;
    
    super.ok(pipe);
  }

  @Override
  protected boolean invokeOk(StubAmp stubDeliver)
  {
    _result.ok(_pipe);
    
    return true;
  }
  
  @Override
  protected boolean invokeFail(StubAmp actorDeliver)
  {
    _result.fail(getException());

    return true;
  }

  @Override
  public String toString()
  {
    String toAddress = null;
    
    if (inboxTarget() != null && inboxTarget().serviceRef() != null) {
      toAddress = inboxTarget().serviceRef().address();
    }
    
    String callbackName = null;
    
    if (_result != null) {
      callbackName = _result.getClass().getName();
    }
    
    return (getClass().getSimpleName()
        + "[" + getMethod().name()
        + ",to=" + toAddress
        + ",result=" + callbackName
        + "]");
    
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy