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

com.caucho.v5.amp.pipe.PipeInMessage 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.ResultPipeIn;

/**
 * Register a publisher to a pipe.
 */
public class PipeInMessage
  extends QueryMessageBase
  implements ResultPipeIn
{
  private final ResultPipeIn _result;

  private Object[] _args;

  //private InboxAmp _callerInbox;
  private PipeImpl _pipe;
  
  public PipeInMessage(OutboxAmp outbox,
                        InboxAmp callerInbox,
                        HeadersAmp headers,
                        ServiceRefAmp serviceRef,
                        MethodAmp method,
                        ResultPipeIn result,
                        long expires,
                        Object []args)
  {
    //super(outbox, headers, serviceRef, method);
    super(outbox, serviceRef, method, expires);
    
    Objects.requireNonNull(result);
    
    _result = result;
    _args = args;
    
    /*
    Objects.requireNonNull(callerInbox);
    
    _callerInbox = callerInbox;
    */
  }

  /*
  private InboxAmp getCallerInbox()
  {
    return _callerInbox;
  }
  */

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

      LoadState load = actorDeliver.load(actorMessage, this);
      
      load.inPipe(actorDeliver, actorMessage,
                  method,
                  getHeaders(),
                  this,
                  _args);
      
    } catch (Throwable e) {
      fail(e);
    }
  }

  //@Override
  public void failQ(Throwable exn)
  {
    _result.fail(exn);
  }

  @Override
  protected boolean invokeOk(StubAmp actorDeliver)
  {
    //_result.ok((Void) null);
    
    return true;
  }
  
  @Override
  protected boolean invokeFail(StubAmp actorDeliver)
  {
    //System.out.println("Missing Fail:" + this);
    _result.fail(getException());

    return true;
  }

  /*
  @Override
  public void handle(OutPipe pipe, Throwable exn) throws Exception
  {
    throw new IllegalStateException(getClass().getName());
  }
  */

  @Override
  public Pipe pipe()
  {
    if (_pipe == null) {
      PipeBuilder builder = new PipeBuilder<>();
      builder.inPipe(_result.pipe());
      builder.inRef(inboxCaller().serviceRef());
      builder.outRef(serviceRef());
      
      builder.capacity(_result.capacity());
      builder.prefetch(_result.prefetch());
      builder.credits(_result.creditsInitial());
    
      _pipe = builder.build();
    }
    
    return _pipe;
  }

  /*
  @Override
  public PipeOut ok()
  {
    return ok((OutFlow) null);
  }
  */

  @Override
  public void ok(Void onOk)
  {
    super.ok(null);
  }

  @Override
  public void handle(T next, Throwable fail, boolean ok)
  {
    throw new IllegalStateException(getClass().getName());
  }

  @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