Package cascading.flow.planner.process

Source Code of cascading.flow.planner.process.FlowNodeGraph$FlowNodeComparator

/*
* 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.flow.planner.process;

import java.util.Collections;
import java.util.Comparator;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;

import cascading.flow.FlowElement;
import cascading.flow.FlowNode;
import cascading.flow.planner.BaseFlowNode;
import cascading.flow.planner.FlowPlanner;
import cascading.flow.planner.graph.ElementGraph;
import cascading.flow.planner.graph.FlowElementGraph;

/**
*
*/
public class FlowNodeGraph extends ProcessGraph<FlowNode>
  {
  public static final FlowNodeComparator FLOW_NODE_COMPARATOR = new FlowNodeComparator();

  /**
   * Class FlowNodeComparator provides a consistent tie breaker when ordering nodes topologically.
   * <p/>
   * This should have no effect on submission and execution priority as all FlowNodes are submitted simultaneously.
   */
  public static class FlowNodeComparator implements Comparator<FlowNode>
    {
    @Override
    public int compare( FlowNode lhs, FlowNode rhs )
      {
      // larger graph first
      int lhsSize = lhs.getElementGraph().vertexSet().size();
      int rhsSize = rhs.getElementGraph().vertexSet().size();
      int result = ( lhsSize < rhsSize ) ? -1 : ( ( lhsSize == rhsSize ) ? 0 : 1 );

      if( result != 0 )
        return result;

      // more inputs second
      lhsSize = lhs.getSourceElements().size();
      rhsSize = rhs.getSourceElements().size();

      return ( lhsSize < rhsSize ) ? -1 : ( ( lhsSize == rhsSize ) ? 0 : 1 );
      }
    }

  public FlowNodeGraph( FlowPlanner<?, ?> flowPlanner, FlowElementGraph flowElementGraph, List<? extends ElementGraph> nodeSubGraphs )
    {
    this( flowPlanner, flowElementGraph, nodeSubGraphs, Collections.<ElementGraph, List<? extends ElementGraph>>emptyMap() );
    }

  public FlowNodeGraph( FlowPlanner<?, ?> flowPlanner, FlowElementGraph flowElementGraph, List<? extends ElementGraph> nodeSubGraphs, Map<ElementGraph, List<? extends ElementGraph>> pipelineSubGraphsMap )
    {
    buildGraph( flowPlanner, flowElementGraph, nodeSubGraphs, pipelineSubGraphsMap );

    // consistently sets ordinal of node based on topological dependencies and tie breaking by the given Comparator
    Iterator<FlowNode> iterator = getOrderedTopologicalIterator();

    int ordinal = 0;
    int size = vertexSet().size();

    while( iterator.hasNext() )
      {
      BaseFlowNode next = (BaseFlowNode) iterator.next();

      next.setOrdinal( ordinal );
      next.setName( flowPlanner.makeFlowNodeName( next, size, ordinal ) );

      ordinal++;
      }
    }

  protected void buildGraph( FlowPlanner<?, ?> flowPlanner, FlowElementGraph flowElementGraph, List<? extends ElementGraph> nodeSubGraphs, Map<ElementGraph, List<? extends ElementGraph>> pipelineSubGraphsMap )
    {
    for( ElementGraph nodeSubGraph : nodeSubGraphs )
      {
      List<? extends ElementGraph> pipelineGraphs = pipelineSubGraphsMap.get( nodeSubGraph );

      FlowNode flowNode = flowPlanner.createFlowNode( flowElementGraph, nodeSubGraph, pipelineGraphs );

      addVertex( flowNode );
      }

    bindEdges();
    }

  public Set<FlowElement> getFlowElementsFor( Enum annotation )
    {
    Set<FlowElement> results = new HashSet<>();

    for( FlowNode flowNode : vertexSet() )
      results.addAll( flowNode.getFlowElementsFor( annotation ) );

    return results;
    }

  public Iterator<FlowNode> getOrderedTopologicalIterator()
    {
    return super.getOrderedTopologicalIterator( FLOW_NODE_COMPARATOR );
    }
  }
TOP

Related Classes of cascading.flow.planner.process.FlowNodeGraph$FlowNodeComparator

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.