Package cascading.operation.expression

Source Code of cascading.operation.expression.ScriptOperation$Context

/*
* Copyright (c) 2007-2014 Concurrent, Inc. All Rights Reserved.
*
* Project and contact information: http://www.cascading.org/
*
* This file is part of the Cascading project.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package cascading.operation.expression;

import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.util.Arrays;

import cascading.flow.FlowProcess;
import cascading.management.annotation.Property;
import cascading.management.annotation.PropertyDescription;
import cascading.management.annotation.Visibility;
import cascading.operation.BaseOperation;
import cascading.operation.OperationCall;
import cascading.operation.OperationException;
import cascading.tuple.Fields;
import cascading.tuple.Tuple;
import cascading.tuple.TupleEntry;
import cascading.tuple.Tuples;
import cascading.tuple.coerce.Coercions;
import cascading.tuple.type.CoercibleType;
import cascading.tuple.util.TupleViews;
import cascading.util.Util;
import org.codehaus.commons.compiler.CompileException;
import org.codehaus.janino.ScriptEvaluator;

/**
*
*/
public abstract class ScriptOperation extends BaseOperation<ScriptOperation.Context>
  {
  /** Field expression */
  protected final String block;
  /** Field parameterTypes */
  protected Class[] parameterTypes;
  /** Field parameterNames */
  protected String[] parameterNames;
  /** returnType */
  protected Class returnType = Object.class;

  public ScriptOperation( int numArgs, Fields fieldDeclaration, String block )
    {
    super( numArgs, fieldDeclaration );
    this.block = block;
    this.returnType = fieldDeclaration.getTypeClass( 0 ) == null ? this.returnType : fieldDeclaration.getTypeClass( 0 );
    }

  public ScriptOperation( int numArgs, Fields fieldDeclaration, String block, Class returnType )
    {
    super( numArgs, fieldDeclaration );
    this.block = block;
    this.returnType = returnType == null ? this.returnType : returnType;
    }

  public ScriptOperation( int numArgs, Fields fieldDeclaration, String block, Class returnType, Class[] expectedTypes )
    {
    super( numArgs, fieldDeclaration );
    this.block = block;
    this.returnType = returnType == null ? this.returnType : returnType;

    if( expectedTypes == null )
      throw new IllegalArgumentException( "expectedTypes may not be null" );

    this.parameterTypes = Arrays.copyOf( expectedTypes, expectedTypes.length );
    }

  public ScriptOperation( int numArgs, Fields fieldDeclaration, String block, Class returnType, String[] parameterNames, Class[] parameterTypes )
    {
    super( numArgs, fieldDeclaration );
    this.parameterNames = parameterNames == null ? null : Arrays.copyOf( parameterNames, parameterNames.length );
    this.block = block;
    this.returnType = returnType == null ? this.returnType : returnType;
    this.parameterTypes = Arrays.copyOf( parameterTypes, parameterTypes.length );

    if( getParameterNamesInternal().length != getParameterTypesInternal().length )
      throw new IllegalArgumentException( "parameterNames must be same length as parameterTypes" );
    }

  public ScriptOperation( int numArgs, String block, Class returnType )
    {
    super( numArgs );
    this.block = block;
    this.returnType = returnType == null ? this.returnType : returnType;
    }

  public ScriptOperation( int numArgs, String block, Class returnType, Class[] expectedTypes )
    {
    super( numArgs );
    this.block = block;
    this.returnType = returnType == null ? this.returnType : returnType;

    if( expectedTypes == null || expectedTypes.length == 0 )
      throw new IllegalArgumentException( "expectedTypes may not be null or empty" );

    this.parameterTypes = Arrays.copyOf( expectedTypes, expectedTypes.length );
    }

  public ScriptOperation( int numArgs, String block, Class returnType, String[] parameterNames, Class[] parameterTypes )
    {
    super( numArgs );
    this.parameterNames = parameterNames == null ? null : Arrays.copyOf( parameterNames, parameterNames.length );
    this.block = block;
    this.returnType = returnType == null ? this.returnType : returnType;
    this.parameterTypes = Arrays.copyOf( parameterTypes, parameterTypes.length );

    if( getParameterNamesInternal().length != getParameterTypesInternal().length )
      throw new IllegalArgumentException( "parameterNames must be same length as parameterTypes" );
    }

  @Property(name = "source", visibility = Visibility.PRIVATE)
  @PropertyDescription("The Java source to execute.")
  public String getBlock()
    {
    return block;
    }

  private boolean hasParameterNames()
    {
    return parameterNames != null;
    }

  @Property(name = "parameterNames", visibility = Visibility.PUBLIC)
  @PropertyDescription("The declared parameter names.")
  public String[] getParameterNames()
    {
    return Util.copy( parameterNames );
    }

  private String[] getParameterNamesInternal()
    {
    if( parameterNames != null )
      return parameterNames;

    try
      {
      parameterNames = guessParameterNames();
      }
    catch( IOException exception )
      {
      throw new OperationException( "could not read expression: " + block, exception );
      }
    catch( CompileException exception )
      {
      throw new OperationException( "could not compile expression: " + block, exception );
      }

    return parameterNames;
    }

  protected String[] guessParameterNames() throws CompileException, IOException
    {
    throw new OperationException( "parameter names are required" );
    }

  private Fields getParameterFields()
    {
    return makeFields( getParameterNamesInternal() );
    }

  private boolean hasParameterTypes()
    {
    return parameterTypes != null;
    }

  @Property(name = "parameterTypes", visibility = Visibility.PUBLIC)
  @PropertyDescription("The declared parameter types.")
  public Class[] getParameterTypes()
    {
    return Util.copy( parameterTypes );
    }

  private Class[] getParameterTypesInternal()
    {
    if( !hasParameterNames() )
      return parameterTypes;

    if( hasParameterNames() && parameterNames.length == parameterTypes.length )
      return parameterTypes;

    if( parameterNames.length > 0 && parameterTypes.length != 1 )
      throw new IllegalStateException( "wrong number of parameter types, expects: " + parameterNames.length );

    Class[] types = new Class[ parameterNames.length ];

    Arrays.fill( types, parameterTypes[ 0 ] );

    parameterTypes = types;

    return parameterTypes;
    }

  protected ScriptEvaluator getEvaluator( Class returnType, String[] parameterNames, Class[] parameterTypes )
    {
    try
      {
      return new ScriptEvaluator( block, returnType, parameterNames, parameterTypes );
      }
    catch( CompileException exception )
      {
      throw new OperationException( "could not compile script: " + block, exception );
      }
    }

  private Fields makeFields( String[] parameters )
    {
    Comparable[] fields = new Comparable[ parameters.length ];

    for( int i = 0; i < parameters.length; i++ )
      {
      String parameter = parameters[ i ];

      if( parameter.startsWith( "$" ) )
        fields[ i ] = parse( parameter ); // returns parameter if not a number after $
      else
        fields[ i ] = parameter;
      }

    return new Fields( fields );
    }

  private Comparable parse( String parameter )
    {
    try
      {
      return Integer.parseInt( parameter.substring( 1 ) );
      }
    catch( NumberFormatException exception )
      {
      return parameter;
      }
    }

  @Override
  public void prepare( FlowProcess flowProcess, OperationCall<Context> operationCall )
    {
    if( operationCall.getContext() == null )
      operationCall.setContext( new Context() );

    Context context = operationCall.getContext();

    Fields argumentFields = operationCall.getArgumentFields();

    if( hasParameterNames() && hasParameterTypes() )
      {
      context.parameterNames = getParameterNamesInternal();
      context.parameterFields = argumentFields.select( getParameterFields() ); // inherit argument types
      context.parameterTypes = getParameterTypesInternal();
      }
    else if( hasParameterTypes() )
      {
      context.parameterNames = toNames( argumentFields );
      context.parameterFields = argumentFields.applyTypes( getParameterTypesInternal() );
      context.parameterTypes = getParameterTypesInternal();
      }
    else
      {
      context.parameterNames = toNames( argumentFields );
      context.parameterFields = argumentFields;
      context.parameterTypes = argumentFields.getTypesClasses();

      if( argumentFields.isNone() )
        context.parameterTypes = new Class[ 0 ]; // to match names

      if( context.parameterTypes == null )
        throw new IllegalArgumentException( "field types may not be empty, incoming tuple stream should declare field types" );
      }

    context.parameterCoercions = Coercions.coercibleArray( context.parameterFields );
    context.parameterArray = new Object[ context.parameterTypes.length ]; // re-use object array
    context.scriptEvaluator = getEvaluator( getReturnType(), context.parameterNames, context.parameterTypes );
    context.intermediate = TupleViews.createNarrow( argumentFields.getPos( context.parameterFields ) );
    context.result = Tuple.size( 1 ); // re-use the output tuple
    }

  private String[] toNames( Fields argumentFields )
    {
    String[] names = new String[ argumentFields.size() ];

    for( int i = 0; i < names.length; i++ )
      {
      Comparable comparable = argumentFields.get( i );
      if( comparable instanceof String )
        names[ i ] = (String) comparable;
      else
        names[ i ] = "$" + comparable;
      }

    return names;
    }

  public Class getReturnType()
    {
    return returnType;
    }

  /**
   * Performs the actual expression evaluation.
   *
   * @param context
   * @param input   of type TupleEntry
   * @return Comparable
   */
  protected Object evaluate( Context context, TupleEntry input )
    {
    try
      {
      if( context.parameterTypes.length == 0 )
        return context.scriptEvaluator.evaluate( null );

      Tuple parameterTuple = TupleViews.reset( context.intermediate, input.getTuple() );
      Object[] arguments = Tuples.asArray( parameterTuple, context.parameterCoercions, context.parameterTypes, context.parameterArray );

      return context.scriptEvaluator.evaluate( arguments );
      }
    catch( InvocationTargetException exception )
      {
      throw new OperationException( "could not evaluate expression: " + block, exception.getTargetException() );
      }
    }

  @Override
  public boolean equals( Object object )
    {
    if( this == object )
      return true;
    if( !( object instanceof ExpressionOperation ) )
      return false;
    if( !super.equals( object ) )
      return false;

    ExpressionOperation that = (ExpressionOperation) object;

    if( block != null ? !block.equals( that.block ) : that.block != null )
      return false;
    if( !Arrays.equals( parameterNames, that.parameterNames ) )
      return false;
    if( !Arrays.equals( parameterTypes, that.parameterTypes ) )
      return false;

    return true;
    }

  @Override
  public int hashCode()
    {
    int result = super.hashCode();
    result = 31 * result + ( block != null ? block.hashCode() : 0 );
    result = 31 * result + ( parameterTypes != null ? Arrays.hashCode( parameterTypes ) : 0 );
    result = 31 * result + ( parameterNames != null ? Arrays.hashCode( parameterNames ) : 0 );
    return result;
    }

  public static class Context
    {
    private Class[] parameterTypes;
    private ScriptEvaluator scriptEvaluator;
    private Fields parameterFields;
    private CoercibleType[] parameterCoercions;
    private String[] parameterNames;
    private Object[] parameterArray;
    private Tuple intermediate;
    protected Tuple result;
    }
  }
TOP

Related Classes of cascading.operation.expression.ScriptOperation$Context

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.