Package org.apache.pig.test.utils.dotGraph

Source Code of org.apache.pig.test.utils.dotGraph.DotGraphVisitor

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you 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 org.apache.pig.test.utils.dotGraph;

import org.apache.pig.impl.logicalLayer.*;
import org.apache.pig.impl.plan.PlanWalker;
import org.apache.pig.impl.plan.VisitorException;
import org.apache.pig.impl.util.MultiMap;
import org.apache.pig.impl.plan.DependencyOrderWalker;

import java.util.Iterator;

/***
* Not implemented yet
*/
public class DotGraphVisitor extends LOVisitor {

    public DotGraphVisitor(LogicalPlan plan,
        PlanWalker<LogicalOperator, LogicalPlan> walker) {
        super(plan, walker);
    }

    /**
     * @param lOp
     *            the logical operator that has to be visited
     * @throws org.apache.pig.impl.plan.VisitorException
     */
    protected void visit(LogicalOperator lOp)
            throws VisitorException {
        //
        // Do Nothing
        //
    }

    /**
     * @param eOp
     *            the logical expression operator that has to be visited
     * @throws VisitorException
     */
    protected void visit(ExpressionOperator eOp)
            throws VisitorException {
        //
        // Do Nothing
        //
    }

    /**
     * @param binOp
     *            the logical binary expression operator that has to be visited
     * @throws VisitorException
     */
    protected void visit(BinaryExpressionOperator binOp)
            throws VisitorException {
        //
        // Visit the left hand side operand followed by the right hand side
        // operand
        //

        binOp.getLhsOperand().visit(this);
        binOp.getRhsOperand().visit(this);
    }

    /**
     *
     * @param uniOp
     *            the logical unary operator that has to be visited
     * @throws VisitorException
     */
    protected void visit(UnaryExpressionOperator uniOp) throws VisitorException {
        // Visit the operand

        uniOp.getOperand().visit(this);
    }

    /**
     *
     * @param cg
     *            the logical cogroup operator that has to be visited
     * @throws VisitorException
     */
    protected void visit(LOCogroup cg) throws VisitorException {
        // Visit each of the inputs of cogroup.
        MultiMap<LogicalOperator, LogicalPlan> mapGByPlans = cg.getGroupByPlans();
        for(LogicalOperator op: cg.getInputs()) {
            for(LogicalPlan lp: mapGByPlans.get(op)) {
                if (null != lp) {
                    // TODO FIX - How do we know this should be a
                    // DependencyOrderWalker?  We should be replicating the
                    // walker the current visitor is using.
                    PlanWalker w = new DependencyOrderWalker(lp);
                    pushWalker(w);
                    for(LogicalOperator logicalOp: lp.getRoots()) {
                        logicalOp.visit(this);
                    }
                    popWalker();
                }
            }
        }
    }

    /**
     *
     * @param g
     *            the logical generate operator that has to be visited
     * @throws VisitorException
     */
    protected void visit(LOForEach g) throws VisitorException {
        // Visit each of generates projection elements.
        for(LogicalPlan lp: g.getForEachPlans()) {
            PlanWalker w = new DependencyOrderWalker(lp);
            pushWalker(w);
            for(LogicalOperator logicalOp: lp.getRoots()) {
                logicalOp.visit(this);
            }
            popWalker();
        }
    }

    /**
     *
     * @param s
     *            the logical sort operator that has to be visited
     * @throws VisitorException
     */
    protected void visit(LOSort s) throws VisitorException {
        // Visit the sort function
        for(LogicalPlan lp: s.getSortColPlans()) {
            PlanWalker w = new DependencyOrderWalker(lp);
            pushWalker(w);
            for(LogicalOperator logicalOp: lp.getRoots()) {
                logicalOp.visit(this);
            }
            popWalker();
        }
    }

    /**
     *
     * @param filter
     *            the logical filter operator that has to be visited
     * @throws VisitorException
     */
    protected void visit(LOFilter filter) throws VisitorException {
        // Visit the condition for the filter followed by the input
        PlanWalker w = new DependencyOrderWalker(filter.getComparisonPlan());
        pushWalker(w);
        for(LogicalOperator logicalOp: filter.getComparisonPlan().getRoots()) {
            logicalOp.visit(this);
        }
        popWalker();
    }

    /**
     *
     * @param split
     *            the logical split operator that has to be visited
     * @throws VisitorException
     */
    protected void visit(LOSplit split) throws VisitorException {
        // Visit each of split's conditions
        for(LogicalOperator logicalOp: split.getOutputs()) {
            logicalOp.visit(this);
        }
    }

    /**
     *
     * @param forEach
     *            the logical foreach operator that has to be visited
     * @throws VisitorException
     */
     /*
    protected void visit(LOForEach forEach) throws VisitorException {
        // Visit the operators that are part of the foreach plan
        LogicalPlan plan = forEach.getForEachPlan();
        PlanWalker w = new DependencyOrderWalker(plan);
        pushWalker(w);
        for(LogicalOperator logicalOp: plan.getRoots()) {
            logicalOp.visit(this);
        }
        popWalker();
    }
    */

    /**
     * Iterate over each expression that is part of the function argument list
     *
     * @param func
     *            the user defined function
     * @throws VisitorException
     */
    protected void visit(LOUserFunc func) throws VisitorException {
        // Visit each of the arguments
        Iterator<ExpressionOperator> i = func.getArguments().iterator();
        while (i.hasNext()) {
            i.next().visit(this);
        }
    }

    /**
     * @param binCond
     *            the logical binCond operator that has to be visited
     * @throws VisitorException
     */
    protected void visit(LOBinCond binCond) throws VisitorException {
        /*
         * Visit the conditional expression followed by the left hand operator
         * and the right hand operator respectively
         */

        binCond.getCond().visit(this);
        binCond.getLhsOp().visit(this);
        binCond.getRhsOp().visit(this);
    }

    protected void visit(LOCast cast) throws VisitorException {
        // Visit the expression to be cast

        cast.getExpression().visit(this);
    }

    protected void visit(LORegexp regexp) throws VisitorException {
        // Visit the operand of the regexp
        regexp.getOperand().visit(this);
    }

    protected void visit(LOLoad load) throws VisitorException{


    }

    protected void visit(LOStore store) throws VisitorException{

    }

    protected void visit(LOConst store) throws VisitorException{

    }

    protected void visit(LOUnion u) throws VisitorException {

    }

    protected void visit(LOSplitOutput sop) throws VisitorException {
        LogicalPlan lp = sop.getConditionPlan();
        if (null != lp) {
            PlanWalker w = new DependencyOrderWalker(lp);
            pushWalker(w);
            for(LogicalOperator logicalOp: lp.getRoots()) {
                logicalOp.visit(this);
            }
            popWalker();
        }
    }

    protected void visit(LODistinct dt) throws VisitorException {

    }

    protected void visit(LOCross cs) throws VisitorException {

    }

    protected void visit(LOProject project) throws VisitorException {
        // Visit the operand of the project as long as the sentinel is false

        if(!project.getSentinel()) {
            project.getExpression().visit(this);
        }
    }

    public void visit(LOGreaterThan op) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }

  public void visit(LOLesserThan op) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }

  public void visit(LOGreaterThanEqual op) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }

  public void visit(LOLesserThanEqual op) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }

  public void visit(LOEqual op) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }

  public void visit(LONotEqual op) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }

  public void visit(LOAdd op) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }

  public void visit(LOSubtract op) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }

  public void visit(LOMultiply op) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }

  public void visit(LODivide op) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }

  public void visit(LOMod op) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }


  public void visit(LONegative op) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }

  public void visit(LOMapLookup op) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }

  public void visit(LOAnd binOp) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }

  public void visit(LOOr binOp) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }

  public void visit(LONot uniOp) throws VisitorException {
    // TODO Auto-generated method stub
    return;
  }
}
TOP

Related Classes of org.apache.pig.test.utils.dotGraph.DotGraphVisitor

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.