Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include <connectivity/virtualdbtools.hxx>
21 : #include "parser_s.hxx"
22 : #include "parsenode_s.hxx"
23 :
24 : using namespace ::com::sun::star::uno;
25 : using namespace ::com::sun::star::util;
26 : using namespace ::com::sun::star::beans;
27 : using namespace ::com::sun::star::lang;
28 :
29 :
30 : namespace connectivity
31 : {
32 :
33 :
34 :
35 : //= OSimpleSQLParser
36 :
37 :
38 0 : OSimpleSQLParser::OSimpleSQLParser(const Reference< XComponentContext >& rxContext, const IParseContext* _pContext)
39 0 : :m_aFullParser(rxContext, _pContext)
40 : {
41 0 : }
42 :
43 :
44 0 : oslInterlockedCount SAL_CALL OSimpleSQLParser::acquire()
45 : {
46 0 : return ORefBase::acquire();
47 : }
48 :
49 :
50 0 : oslInterlockedCount SAL_CALL OSimpleSQLParser::release()
51 : {
52 0 : return ORefBase::release();
53 : }
54 :
55 :
56 0 : const IParseContext& OSimpleSQLParser::getContext() const
57 : {
58 0 : return m_aFullParser.getContext();
59 : }
60 :
61 :
62 0 : ::rtl::Reference< simple::ISQLParseNode > OSimpleSQLParser::predicateTree(OUString& rErrorMessage, const OUString& rStatement,
63 : const Reference< XNumberFormatter >& _rxFormatter, const Reference< XPropertySet >& _rxField) const
64 : {
65 0 : OSimpleParseNode* pReturn = NULL;
66 0 : OSQLParseNode* pFullNode = const_cast<OSimpleSQLParser*>(this)->m_aFullParser.predicateTree(rErrorMessage, rStatement, _rxFormatter, _rxField);
67 0 : if (pFullNode)
68 0 : pReturn = new OSimpleParseNode(pFullNode, sal_True);
69 0 : return pReturn;
70 : }
71 :
72 :
73 : } // namespace connectivity
74 :
75 :
76 :
77 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|