bump product version to 5.0.4.1
[LibreOffice.git] / connectivity / source / sdbcx / VView.cxx
bloba1c9813b4a336c39a8c20d7bcb1ddd163bbd125c
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/sdbcx/VView.hxx>
21 #include <com/sun/star/lang/DisposedException.hpp>
22 #include <comphelper/sequence.hxx>
23 #include <connectivity/dbtools.hxx>
24 #include "TConnection.hxx"
27 using namespace connectivity;
28 using namespace connectivity::sdbcx;
29 using namespace ::com::sun::star::beans;
30 using namespace ::com::sun::star::uno;
31 using namespace ::com::sun::star::sdbcx;
32 using namespace ::com::sun::star::container;
33 using namespace ::com::sun::star::lang;
35 IMPLEMENT_SERVICE_INFO(OView,"com.sun.star.sdbcx.VView","com.sun.star.sdbcx.View");
37 OView::OView(bool _bCase,
38 const OUString& _Name,
39 const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData >& _xMetaData,
40 sal_Int32 _CheckOption,
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)
46 ,m_Command(_Command)
47 ,m_CheckOption(_CheckOption)
48 ,m_xMetaData(_xMetaData)
51 m_Name = _Name;
52 construct();
55 OView::OView(bool _bCase, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData >& _xMetaData)
56 : ODescriptor(::comphelper::OMutexAndBroadcastHelper::m_aBHelper, _bCase, true)
57 ,m_xMetaData(_xMetaData)
59 construct();
62 OView::~OView()
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( ) throw(RuntimeException, std::exception)
80 return ::comphelper::concatSequences(ODescriptor::getTypes(),OView_BASE::getTypes());
83 Any SAL_CALL OView::queryInterface( const Type & rType ) throw(RuntimeException, std::exception)
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() throw(::com::sun::star::uno::RuntimeException, std::exception)
101 OUString sComposedName;
102 if(m_xMetaData.is())
103 sComposedName = ::dbtools::composeTableName( m_xMetaData, m_CatalogName, m_SchemaName, m_Name, false, ::dbtools::eInDataManipulation );
104 else
106 Any aValue;
107 getFastPropertyValue(aValue,PROPERTY_ID_NAME);
108 aValue >>= sComposedName;
110 return sComposedName;
113 ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL OView::getPropertySetInfo( ) throw(::com::sun::star::uno::RuntimeException, std::exception)
115 return ::cppu::OPropertySetHelper::createPropertySetInfo(getInfoHelper());
118 void SAL_CALL OView::setName( const OUString& ) throw(::com::sun::star::uno::RuntimeException, std::exception)
122 void SAL_CALL OView::acquire() throw()
124 OView_BASE::acquire();
127 void SAL_CALL OView::release() throw()
129 OView_BASE::release();
134 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */