#ifndef _QTBINARYINDUCE_ #define _QTBINARYINDUCE_ #ifndef CPPSTDLIB #include // STL #else #include #endif #include "qlparser/qtbinaryoperation.hh" #include "qlparser/qtdata.hh" #include "qlparser/qtmdd.hh" #include "qlparser/qtscalardata.hh" #include "catalogmgr/ops.hh" /* * This file is part of rasdaman community. * * Rasdaman community 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 3 of the License, or * (at your option) any later version. * * Rasdaman community 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. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with rasdaman community. If not, see . * * Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Peter Baumann / rasdaman GmbH. * * For more information please see * or contact Peter Baumann via . */ /************************************************************* * * * COMMENTS: * ************************************************************/ //@ManMemo: Module: {\bf qlparser} /*@Doc: The class hierarchy guarantees no type safety. Type checking is done at execution time. The operations greater and greater equal are mapped to QtLess and QtLessEqual. */ class QtBinaryInduce : public QtBinaryOperation { public: /// constructor getting the two operands QtBinaryInduce( QtOperation* input1, QtOperation* input2, Ops::OpType initOpType ); /// method for evaluating the node QtData* evaluate( QtDataList* inputList ); /// type checking of the subtree virtual const QtTypeElement& checkType( QtTypeTuple* typeTuple = NULL ); protected: /// computes the binary operation QtData* computeOp( QtData* operand1, QtData* operand2 ); /// computes an unary induce operation with one MDD object and a scalar value either being atomic or complex constant QtData* computeUnaryMDDOp( QtMDD* operand1, QtScalarData* operand2, const BaseType* resultBaseType, int scalarPos=1 ); /** The method carries out the unary induce operation specified by {\tt operation} on the two operands. {\tt scalarPos } determines if the scalar value is the first (=1, default) or the second (=2) operand in the operation. For the result, a new transient MDD object is created and returned. In the end, the MDD object of the first operand is freed. */ /// computes a binary induce operation on two MDD objects QtData* computeBinaryMDDOp( QtMDD* operand1, QtMDD* operand2, const BaseType* resultBaseType ); /** The method carries out the binary induce operation specified by {\tt operation} on the two operands. For the result, a new transient MDD object is created and returned. In the end, the MDD objects of the operands are freed. */ /// computes a binary operation on two scalar objects QtData* computeBinaryOp( QtScalarData* operand1, QtScalarData* operand2, const BaseType* resultBaseType ); /** The method carries out the binary operation specified by {\tt operation} on the two operands. */ // private: // type of operation Ops::OpType opType; private: /// atribute for identification of nodes static const QtNodeType nodeType; }; //@ManMemo: Module: {\bf qlparser} /*@Doc: */ class QtPlus : public QtBinaryInduce { public: /// constructor getting the two operands QtPlus( QtOperation* input1, QtOperation* input2 ); /// optimizes the tree // virtual void rewriteOps(); /// optimizes the tree // virtual void sortAssociativeOps(); ///for associative law virtual QtOperation* getUniqueOrder( const QtNode::QtNodeType ID ); /// prints the tree virtual void printTree( int tab, std::ostream& s = std::cout, QtChildType mode = QT_ALL_NODES ); /// prints the algebraic expression virtual void printAlgebraicExpression( std::ostream& s = std::cout ); /// method for identification of nodes inline virtual const QtNodeType getNodeType() const; private: /// attribute for identification of nodes static const QtNodeType nodeType; }; //@ManMemo: Module: {\bf qlparser} /*@Doc: */ class QtMinus : public QtBinaryInduce { public: /// constructor getting the two operands QtMinus( QtOperation* input1, QtOperation* input2 ); /// prints the tree virtual void printTree( int tab, std::ostream& s = std::cout, QtChildType mode = QT_ALL_NODES ); /// prints the algebraic expression virtual void printAlgebraicExpression( std::ostream& s = std::cout ); /// method for identification of nodes inline virtual const QtNodeType getNodeType() const; /// returns FALSE saying that the operation IS NOT commutative virtual bool isCommutative() const; private: /// attribute for identification of nodes static const QtNodeType nodeType; }; //@ManMemo: Module: {\bf qlparser} /*@Doc: */ class QtMult : public QtBinaryInduce { public: /// constructor getting the two operands QtMult( QtOperation* input1, QtOperation* input2 ); /// optimizes the tree // virtual void rewriteOps(); /// optimizes the tree // virtual void sortAssociativeOps(); /// optimizes the tree virtual QtOperation* getUniqueOrder( const QtNode::QtNodeType ID ); /// prints the tree virtual void printTree( int tab, std::ostream& s = std::cout, QtChildType mode = QT_ALL_NODES ); /// prints the algebraic expression virtual void printAlgebraicExpression( std::ostream& s = std::cout ); /// method for identification of nodes inline virtual const QtNodeType getNodeType() const; private: /// attribute for identification of nodes static const QtNodeType nodeType; }; //@ManMemo: Module: {\bf qlparser} /*@Doc: */ class QtDiv : public QtBinaryInduce { public: /// constructor getting the two operands QtDiv( QtOperation* input1, QtOperation* input2 ); /// prints the tree virtual void printTree( int tab, std::ostream& s = std::cout, QtChildType mode = QT_ALL_NODES ); /// prints the algebraic expression virtual void printAlgebraicExpression( std::ostream& s = std::cout ); /// method for identification of nodes inline virtual const QtNodeType getNodeType() const; /// returns FALSE saying that the operation IS NOT commutative virtual bool isCommutative() const; private: /// attribute for identification of nodes static const QtNodeType nodeType; }; #include "qlparser/qtbinaryinduce.icc" #endif