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 .
20 #include <connectivity/sdbcx/VView.hxx>
21 #include <com/sun/star/lang/DisposedException.hpp>
22 #include <com/sun/star/beans/PropertyAttribute.hpp>
23 #include <comphelper/sequence.hxx>
24 #include <connectivity/dbtools.hxx>
25 #include <TConnection.hxx>
28 using namespace connectivity
;
29 using namespace connectivity::sdbcx
;
30 using namespace ::com::sun::star::beans
;
31 using namespace ::com::sun::star::uno
;
32 using namespace ::com::sun::star::sdbcx
;
33 using namespace ::com::sun::star::container
;
34 using namespace ::com::sun::star::lang
;
36 IMPLEMENT_SERVICE_INFO(OView
,"com.sun.star.sdbcx.VView","com.sun.star.sdbcx.View");
38 OView::OView(bool _bCase
,
40 const css::uno::Reference
< css::sdbc::XDatabaseMetaData
>& _xMetaData
,
41 const OUString
& Command
,
42 const OUString
& SchemaName
,
43 const OUString
& CatalogName
) : ODescriptor(::comphelper::OMutexAndBroadcastHelper::m_aBHelper
,_bCase
)
44 ,m_CatalogName(CatalogName
)
45 ,m_SchemaName(SchemaName
)
48 ,m_xMetaData(_xMetaData
)
55 OView::OView(bool _bCase
, const css::uno::Reference
< css::sdbc::XDatabaseMetaData
>& _xMetaData
)
56 : ODescriptor(::comphelper::OMutexAndBroadcastHelper::m_aBHelper
, _bCase
, true)
57 ,m_xMetaData(_xMetaData
)
66 void OView::construct()
68 ODescriptor::construct();
70 sal_Int32 nAttrib
= isNew() ? 0 : PropertyAttribute::READONLY
;
72 registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_CATALOGNAME
), PROPERTY_ID_CATALOGNAME
,nAttrib
,&m_CatalogName
, ::cppu::UnoType
<OUString
>::get());
73 registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_SCHEMANAME
), PROPERTY_ID_SCHEMANAME
, nAttrib
,&m_SchemaName
, ::cppu::UnoType
<OUString
>::get());
74 registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_COMMAND
), PROPERTY_ID_COMMAND
, nAttrib
,&m_Command
, ::cppu::UnoType
<OUString
>::get());
75 registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_CHECKOPTION
), PROPERTY_ID_CHECKOPTION
,nAttrib
,&m_CheckOption
, ::cppu::UnoType
<sal_Int32
>::get());
78 Sequence
< Type
> SAL_CALL
OView::getTypes( )
80 return ::comphelper::concatSequences(ODescriptor::getTypes(),OView_BASE::getTypes());
83 Any SAL_CALL
OView::queryInterface( const Type
& rType
)
85 Any aRet
= OView_BASE::queryInterface( rType
);
86 return aRet
.hasValue() ? aRet
: ODescriptor::queryInterface( rType
);
89 ::cppu::IPropertyArrayHelper
* OView::createArrayHelper( sal_Int32
/*_nId*/ ) const
91 return doCreateArrayHelper();
94 ::cppu::IPropertyArrayHelper
& OView::getInfoHelper()
96 return *getArrayHelper(isNew() ? 1 : 0);
99 OUString SAL_CALL
OView::getName()
101 OUString sComposedName
;
103 sComposedName
= ::dbtools::composeTableName( m_xMetaData
, m_CatalogName
, m_SchemaName
, m_Name
, false, ::dbtools::EComposeRule::InDataManipulation
);
107 getFastPropertyValue(aValue
,PROPERTY_ID_NAME
);
108 aValue
>>= sComposedName
;
110 return sComposedName
;
113 css::uno::Reference
< css::beans::XPropertySetInfo
> SAL_CALL
OView::getPropertySetInfo( )
115 return ::cppu::OPropertySetHelper::createPropertySetInfo(getInfoHelper());
118 void SAL_CALL
OView::setName( const OUString
& )
122 void SAL_CALL
OView::acquire() throw()
124 OView_BASE::acquire();
127 void SAL_CALL
OView::release() throw()
129 OView_BASE::release();
133 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */