1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir #ifndef CONNECTIVITY_ROWFUNCTIONPARSER_HXX_INCLUDED
29*cdf0e10cSrcweir #define CONNECTIVITY_ROWFUNCTIONPARSER_HXX_INCLUDED
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir #include <sal/config.h>
32*cdf0e10cSrcweir #ifndef BOOST_SHARED_PTR_HPP_INCLUDED
33*cdf0e10cSrcweir #include <boost/shared_ptr.hpp>
34*cdf0e10cSrcweir #endif
35*cdf0e10cSrcweir #include "FDatabaseMetaDataResultSet.hxx"
36*cdf0e10cSrcweir #include <vector>
37*cdf0e10cSrcweir #include "connectivity/dbtoolsdllapi.hxx"
38*cdf0e10cSrcweir 
39*cdf0e10cSrcweir // -------------------------------------------------------------------------
40*cdf0e10cSrcweir namespace connectivity
41*cdf0e10cSrcweir {
42*cdf0e10cSrcweir // -------------------------------------------------------------------------
43*cdf0e10cSrcweir struct OOO_DLLPUBLIC_DBTOOLS RowEquation
44*cdf0e10cSrcweir {
45*cdf0e10cSrcweir 	sal_Int32	nOperation;
46*cdf0e10cSrcweir 	ORowSetValueDecoratorRef	nPara[ 3 ];
47*cdf0e10cSrcweir 
48*cdf0e10cSrcweir 	RowEquation() :
49*cdf0e10cSrcweir 		nOperation	( 0 )
50*cdf0e10cSrcweir 		{
51*cdf0e10cSrcweir 		}
52*cdf0e10cSrcweir };
53*cdf0e10cSrcweir 
54*cdf0e10cSrcweir enum ExpressionFunct
55*cdf0e10cSrcweir {
56*cdf0e10cSrcweir 	FUNC_CONST,
57*cdf0e10cSrcweir 
58*cdf0e10cSrcweir 	ENUM_FUNC_EQUATION,
59*cdf0e10cSrcweir 
60*cdf0e10cSrcweir     UNARY_FUNC_COLUMN,
61*cdf0e10cSrcweir     ENUM_FUNC_AND,
62*cdf0e10cSrcweir     ENUM_FUNC_OR
63*cdf0e10cSrcweir };
64*cdf0e10cSrcweir 
65*cdf0e10cSrcweir #define EXPRESSION_FLAG_SUMANGLE_MODE 1
66*cdf0e10cSrcweir 
67*cdf0e10cSrcweir class OOO_DLLPUBLIC_DBTOOLS SAL_NO_VTABLE ExpressionNode
68*cdf0e10cSrcweir {
69*cdf0e10cSrcweir public:
70*cdf0e10cSrcweir     virtual ~ExpressionNode(){}
71*cdf0e10cSrcweir 
72*cdf0e10cSrcweir     /** Operator to calculate function value.
73*cdf0e10cSrcweir 
74*cdf0e10cSrcweir         This method calculates the function value.
75*cdf0e10cSrcweir 	*/
76*cdf0e10cSrcweir     virtual ORowSetValueDecoratorRef evaluate(const ODatabaseMetaDataResultSet::ORow& _aRow ) const = 0;
77*cdf0e10cSrcweir 
78*cdf0e10cSrcweir     virtual void fill(const ODatabaseMetaDataResultSet::ORow& _aRow ) const = 0;
79*cdf0e10cSrcweir 
80*cdf0e10cSrcweir 	/** Operator to retrieve the type of expression node
81*cdf0e10cSrcweir 	*/
82*cdf0e10cSrcweir 	virtual ExpressionFunct getType() const = 0;
83*cdf0e10cSrcweir 
84*cdf0e10cSrcweir 	/** Operator to retrieve the ms version of expression
85*cdf0e10cSrcweir 	*/
86*cdf0e10cSrcweir 	virtual ODatabaseMetaDataResultSet::ORow fillNode(
87*cdf0e10cSrcweir 		std::vector< RowEquation >& rEquations, ExpressionNode* pOptionalArg, sal_uInt32 nFlags ) = 0;
88*cdf0e10cSrcweir };
89*cdf0e10cSrcweir typedef ::boost::shared_ptr< ExpressionNode > ExpressionNodeSharedPtr;
90*cdf0e10cSrcweir 
91*cdf0e10cSrcweir /** This exception is thrown, when the arithmetic expression
92*cdf0e10cSrcweir     parser failed to parse a string.
93*cdf0e10cSrcweir     */
94*cdf0e10cSrcweir struct OOO_DLLPUBLIC_DBTOOLS ParseError
95*cdf0e10cSrcweir {
96*cdf0e10cSrcweir     ParseError() {}
97*cdf0e10cSrcweir     ParseError( const char* ) {}
98*cdf0e10cSrcweir };
99*cdf0e10cSrcweir 
100*cdf0e10cSrcweir class OOO_DLLPUBLIC_DBTOOLS FunctionParser
101*cdf0e10cSrcweir {
102*cdf0e10cSrcweir public:
103*cdf0e10cSrcweir 
104*cdf0e10cSrcweir     /** Parse a string
105*cdf0e10cSrcweir 
106*cdf0e10cSrcweir         The following grammar is accepted by this method:
107*cdf0e10cSrcweir         <code>
108*cdf0e10cSrcweir 
109*cdf0e10cSrcweir 		number_digit = '0'|'1'|'2'|'3'|'4'|'5'|'6'|'7'|'8'|'9'
110*cdf0e10cSrcweir 
111*cdf0e10cSrcweir 		number = number number_digit | number_digit
112*cdf0e10cSrcweir 
113*cdf0e10cSrcweir 		equal_function = '='
114*cdf0e10cSrcweir 		ternary_function = 'if'
115*cdf0e10cSrcweir 
116*cdf0e10cSrcweir 		string_reference = 'a-z,A-Z,0-9' ' '
117*cdf0e10cSrcweir 		modifier_reference = '$' '0-9' ' '
118*cdf0e10cSrcweir 
119*cdf0e10cSrcweir 		basic_expression =
120*cdf0e10cSrcweir 			number |
121*cdf0e10cSrcweir             string_reference |
122*cdf0e10cSrcweir             additive_expression equal_function additive_expression |
123*cdf0e10cSrcweir             unary_function '(' number_digit ')'
124*cdf0e10cSrcweir 			ternary_function '(' additive_expression ',' additive_expression ',
125*cdf0e10cSrcweir 					           ' additive_expression ')' | '(' additive_expression ')'
126*cdf0e10cSrcweir 
127*cdf0e10cSrcweir         </code>
128*cdf0e10cSrcweir 
129*cdf0e10cSrcweir         @param rFunction
130*cdf0e10cSrcweir         The string to parse
131*cdf0e10cSrcweir 
132*cdf0e10cSrcweir         @throws ParseError if an invalid expression is given.
133*cdf0e10cSrcweir 
134*cdf0e10cSrcweir         @return the generated function object.
135*cdf0e10cSrcweir        */
136*cdf0e10cSrcweir 
137*cdf0e10cSrcweir     static ExpressionNodeSharedPtr parseFunction( const ::rtl::OUString& _sFunction);
138*cdf0e10cSrcweir 
139*cdf0e10cSrcweir private:
140*cdf0e10cSrcweir     // disabled constructor/destructor, since this is
141*cdf0e10cSrcweir     // supposed to be a singleton
142*cdf0e10cSrcweir     FunctionParser();
143*cdf0e10cSrcweir 
144*cdf0e10cSrcweir     // default: disabled copy/assignment
145*cdf0e10cSrcweir     FunctionParser(const FunctionParser&);
146*cdf0e10cSrcweir     FunctionParser& operator=( const FunctionParser& );
147*cdf0e10cSrcweir };
148*cdf0e10cSrcweir 
149*cdf0e10cSrcweir // -------------------------------------------------------------------------
150*cdf0e10cSrcweir } // namespace connectivity
151*cdf0e10cSrcweir // -------------------------------------------------------------------------
152*cdf0e10cSrcweir #endif /* CONNECTIVITY_ROWFUNCTIONPARSER_HXX_INCLUDED */
153