bump product version to 4.1.6.2
[LibreOffice.git] / connectivity / source / simpledbt / parser_s.cxx
blobb8168c7c484158a022584119e5d23212c03ecd1f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #include <connectivity/virtualdbtools.hxx>
21 #include "parser_s.hxx"
22 #include "parsenode_s.hxx"
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;
29 //........................................................................
30 namespace connectivity
32 //........................................................................
34 //================================================================
35 //= OSimpleSQLParser
36 //================================================================
37 //----------------------------------------------------------------
38 OSimpleSQLParser::OSimpleSQLParser(const Reference< XComponentContext >& rxContext, const IParseContext* _pContext)
39 :m_aFullParser(rxContext, _pContext)
43 //----------------------------------------------------------------
44 oslInterlockedCount SAL_CALL OSimpleSQLParser::acquire()
46 return ORefBase::acquire();
49 //----------------------------------------------------------------
50 oslInterlockedCount SAL_CALL OSimpleSQLParser::release()
52 return ORefBase::release();
55 //----------------------------------------------------------------
56 const IParseContext& OSimpleSQLParser::getContext() const
58 return m_aFullParser.getContext();
61 //----------------------------------------------------------------
62 ::rtl::Reference< simple::ISQLParseNode > OSimpleSQLParser::predicateTree(OUString& rErrorMessage, const OUString& rStatement,
63 const Reference< XNumberFormatter >& _rxFormatter, const Reference< XPropertySet >& _rxField) const
65 OSimpleParseNode* pReturn = NULL;
66 OSQLParseNode* pFullNode = const_cast<OSimpleSQLParser*>(this)->m_aFullParser.predicateTree(rErrorMessage, rStatement, _rxFormatter, _rxField);
67 if (pFullNode)
68 pReturn = new OSimpleParseNode(pFullNode, sal_True);
69 return pReturn;
72 //........................................................................
73 } // namespace connectivity
74 //........................................................................
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */