1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef INCLUDED_CONNECTIVITY_SQLPARSE_HXX
20 #define INCLUDED_CONNECTIVITY_SQLPARSE_HXX
22 #include <config_features.h>
24 #include <com/sun/star/uno/Reference.h>
25 #include <osl/mutex.hxx>
26 #include <connectivity/sqlnode.hxx>
27 #include <com/sun/star/i18n/XCharacterClassification.hpp>
28 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
29 #include <com/sun/star/i18n/XLocaleData4.hpp>
30 #include <connectivity/IParseContext.hxx>
31 #include <connectivity/dbtoolsdllapi.hxx>
32 #include <connectivity/sqlerror.hxx>
33 #include <salhelper/singletonref.hxx>
49 class XNumberFormatter
;
59 namespace connectivity
66 class OOO_DLLPUBLIC_DBTOOLS OParseContext
: public IParseContext
71 virtual ~OParseContext();
72 // retrieves language specific error messages
73 virtual OUString
getErrorMessage(ErrorCode _eCodes
) const SAL_OVERRIDE
;
75 // retrieves language specific keyword strings (only ASCII allowed)
76 virtual OString
getIntlKeywordAscii(InternationalKeyCode _eKey
) const SAL_OVERRIDE
;
78 // finds out, if we have an international keyword (only ASCII allowed)
79 virtual InternationalKeyCode
getIntlKeyCode(const OString
& rToken
) const SAL_OVERRIDE
;
81 // determines the default international setting
82 static const ::com::sun::star::lang::Locale
& getDefaultLocale();
84 /** get's a locale instance which should be used when parsing in the context specified by this instance
85 <p>if this is not overridden by derived classes, it returns the static default locale.</p>
87 virtual ::com::sun::star::lang::Locale
getPreferredLocale( ) const SAL_OVERRIDE
;
90 // OSQLParseNodesContainer
91 // grabage collection of nodes
93 class OSQLParseNodesContainer
95 ::osl::Mutex m_aMutex
;
96 ::std::vector
< OSQLParseNode
* > m_aNodes
;
98 OSQLParseNodesContainer();
99 ~OSQLParseNodesContainer();
101 void push_back(OSQLParseNode
* _pNode
);
102 void erase(OSQLParseNode
* _pNode
);
104 void clearAndDelete();
107 typedef salhelper::SingletonRef
<OSQLParseNodesContainer
> OSQLParseNodesGarbageCollector
;
111 struct OSQLParser_Data
113 ::com::sun::star::lang::Locale aLocale
;
114 ::connectivity::SQLError aErrors
;
116 OSQLParser_Data( const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
>& _rxContext
)
117 :aErrors( _rxContext
)
124 class OOO_DLLPUBLIC_DBTOOLS OSQLParser
126 friend class OSQLParseNode
;
127 friend class OSQLInternalNode
;
128 friend struct SQLParseNodeParameter
;
131 typedef ::std::map
< sal_uInt32
, OSQLParseNode::Rule
> RuleIDMap
;
132 // static parts for parsers
133 static sal_uInt32 s_nRuleIDs
[OSQLParseNode::rule_count
+ 1];
134 static RuleIDMap s_aReverseRuleIDLookup
;
135 static OParseContext s_aDefaultContext
;
137 static OSQLScanner
* s_pScanner
;
138 static OSQLParseNodesGarbageCollector
* s_pGarbageCollector
;
139 static sal_Int32 s_nRefCount
;
141 // information on the current parse action
142 const IParseContext
* m_pContext
;
143 OSQLParseNode
* m_pParseTree
; // result from parsing
144 ::std::unique_ptr
< OSQLParser_Data
>
146 OUString m_sFieldName
; // current field name for a predicate
147 OUString m_sErrorMessage
;// current error msg
149 ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySet
>
150 m_xField
; // current field
151 ::com::sun::star::uno::Reference
< ::com::sun::star::util::XNumberFormatter
>
152 m_xFormatter
; // current number formatter
153 sal_Int32 m_nFormatKey
; // numberformat, which should be used
154 sal_Int32 m_nDateFormatKey
;
155 ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
> m_xContext
;
156 ::com::sun::star::uno::Reference
< ::com::sun::star::i18n::XCharacterClassification
> m_xCharClass
;
157 static ::com::sun::star::uno::Reference
< ::com::sun::star::i18n::XLocaleData4
> s_xLocaleData
;
158 ::com::sun::star::uno::Reference
< ::com::sun::star::i18n::XLocaleData
> xDummy
; // can be deleted after 627
160 // convert a string into double trim it to scale of _nscale and than transform it back to string
161 OUString
stringToDouble(const OUString
& _rValue
,sal_Int16 _nScale
);
162 OSQLParseNode
* buildDate(sal_Int32 _nType
,OSQLParseNode
*& pLiteral
);
163 bool extractDate(OSQLParseNode
* pLiteral
,double& _rfValue
);
164 void killThousandSeparator(OSQLParseNode
* pLiteral
);
165 OSQLParseNode
* convertNode(sal_Int32 nType
, OSQLParseNode
* pLiteral
);
166 // makes a string out of a number, pLiteral will be deleted
167 OSQLParseNode
* buildNode_STR_NUM(OSQLParseNode
*& pLiteral
);
168 OSQLParseNode
* buildNode_Date(const double& fValue
, sal_Int32 nType
);
170 static ::osl::Mutex
& getMutex();
173 // if NULL, a default context will be used
174 // the context must live as long as the parser
175 OSQLParser(const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
>& rxContext
, const IParseContext
* _pContext
= NULL
);
178 // Parsing an SQLStatement
179 OSQLParseNode
* parseTree(OUString
& rErrorMessage
,
180 const OUString
& rStatement
,
181 bool bInternational
= false);
184 // set bUseRealName to false if you pass a xField that comes from where you got that field,
185 // as opposed from to from yourself.
186 OSQLParseNode
* predicateTree(OUString
& rErrorMessage
, const OUString
& rStatement
,
187 const ::com::sun::star::uno::Reference
< ::com::sun::star::util::XNumberFormatter
> & xFormatter
,
188 const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySet
> & xField
,
189 bool bUseRealName
= true);
191 // Access to the context
192 const IParseContext
& getContext() const {return *m_pContext
;}
194 /// access to the SQLError instance owned by this parser
195 const SQLError
& getErrorHelper() const;
197 // TokenIDToStr: token name belonging to a token number.
198 static OString
TokenIDToStr(sal_uInt32 nTokenID
, const IParseContext
* pContext
= NULL
);
200 #if OSL_DEBUG_LEVEL > 1
201 // (empty string if not found)
202 static OUString
RuleIDToStr(sal_uInt32 nRuleID
);
205 // StrToRuleID calculates the RuleID for a OUString (that is, ::com::sun::star::sdbcx::Index in yytname)
206 // (0 if not found). The search for an ID based on a String is
207 // extremely inefficient (sequential search for OUString)!
208 static sal_uInt32
StrToRuleID(const OString
& rValue
);
210 static OSQLParseNode::Rule
RuleIDToRule( sal_uInt32 _nRule
);
212 // RuleId with enum, far more efficient
213 static sal_uInt32
RuleID(OSQLParseNode::Rule eRule
);
214 // compares the _sFunctionName with all known function names and return the DataType of the return value
215 static sal_Int32
getFunctionReturnType(const OUString
& _sFunctionName
, const IParseContext
* pContext
= NULL
);
217 // returns the type for a parameter in a given function name
218 static sal_Int32
getFunctionParameterType(sal_uInt32 _nTokenId
,sal_uInt32 _nPos
);
220 void error(const sal_Char
*fmt
);
223 void setParseTree(OSQLParseNode
* pNewParseTree
);
225 // Is the parse in a special mode?
226 // Predicate check is used to check a condition for a field
227 bool inPredicateCheck() const {return m_xField
.is();}
228 const OUString
& getFieldName() const {return m_sFieldName
;}
230 static void reduceLiteral(OSQLParseNode
*& pLiteral
, bool bAppendBlank
);
231 // does not change the pLiteral argument
232 sal_Int16
buildNode(OSQLParseNode
*& pAppend
,OSQLParseNode
* pCompare
,OSQLParseNode
* pLiteral
,OSQLParseNode
* pLiteral2
);
234 sal_Int16
buildComparsionRule(OSQLParseNode
*& pAppend
,OSQLParseNode
* pLiteral
);
235 // pCompre will be deleted if it is not used
236 sal_Int16
buildPredicateRule(OSQLParseNode
*& pAppend
,OSQLParseNode
* const pLiteral
,OSQLParseNode
* pCompare
,OSQLParseNode
* pLiteral2
= NULL
);
238 sal_Int16
buildLikeRule(OSQLParseNode
* pAppend
, OSQLParseNode
*& pLiteral
, const OSQLParseNode
* pEscape
);
239 sal_Int16
buildStringNodes(OSQLParseNode
*& pLiteral
);
244 #endif // INCLUDED_CONNECTIVITY_SQLPARSE_HXX
246 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */