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 "parsenode_s.hxx"
22 : #include <connectivity/sqlnode.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 : using namespace ::com::sun::star::sdbc;
29 :
30 :
31 : namespace connectivity
32 : {
33 :
34 :
35 :
36 : //= OSimpleParseNode
37 :
38 :
39 0 : OSimpleParseNode::OSimpleParseNode(const OSQLParseNode* _pNode, sal_Bool _bTakeOwnership)
40 : :m_pFullNode(_pNode)
41 0 : ,m_bOwner(_bTakeOwnership)
42 : {
43 : OSL_ENSURE(m_pFullNode, "OSimpleParseNode::OSimpleParseNode: invalid node given!");
44 0 : }
45 :
46 :
47 0 : OSimpleParseNode::~OSimpleParseNode()
48 : {
49 0 : if (m_bOwner)
50 0 : delete m_pFullNode;
51 0 : }
52 :
53 :
54 0 : oslInterlockedCount SAL_CALL OSimpleParseNode::acquire()
55 : {
56 0 : return ORefBase::acquire();
57 : }
58 :
59 :
60 0 : oslInterlockedCount SAL_CALL OSimpleParseNode::release()
61 : {
62 0 : return ORefBase::release();
63 : }
64 :
65 :
66 0 : void OSimpleParseNode::parseNodeToStr(OUString& _rString, const Reference< XConnection >& _rxConnection,const IParseContext* _pContext) const
67 : {
68 0 : m_pFullNode->parseNodeToStr( _rString, _rxConnection, _pContext );
69 0 : }
70 :
71 :
72 0 : void OSimpleParseNode::parseNodeToPredicateStr(OUString& _rString, const Reference< XConnection >& _rxConnection,
73 : const Reference< XNumberFormatter >& _rxFormatter, const Reference< XPropertySet >& _rxField,
74 : const OUString &_sPredicateTableAlias,
75 : const Locale& _rIntl, const sal_Char _cDecSeparator,const IParseContext* _pContext) const
76 : {
77 : m_pFullNode->parseNodeToPredicateStr( _rString, _rxConnection, _rxFormatter, _rxField, _sPredicateTableAlias,
78 0 : _rIntl, _cDecSeparator, _pContext );
79 0 : }
80 :
81 :
82 : } // namespace connectivity
83 :
84 :
85 :
86 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|