19b5730f6SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 39b5730f6SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 49b5730f6SAndrew Rist * or more contributor license agreements. See the NOTICE file 59b5730f6SAndrew Rist * distributed with this work for additional information 69b5730f6SAndrew Rist * regarding copyright ownership. The ASF licenses this file 79b5730f6SAndrew Rist * to you under the Apache License, Version 2.0 (the 89b5730f6SAndrew Rist * "License"); you may not use this file except in compliance 99b5730f6SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 119b5730f6SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 139b5730f6SAndrew Rist * Unless required by applicable law or agreed to in writing, 149b5730f6SAndrew Rist * software distributed under the License is distributed on an 159b5730f6SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 169b5730f6SAndrew Rist * KIND, either express or implied. See the License for the 179b5730f6SAndrew Rist * specific language governing permissions and limitations 189b5730f6SAndrew Rist * under the License. 19cdf0e10cSrcweir * 209b5730f6SAndrew Rist *************************************************************/ 219b5730f6SAndrew Rist 229b5730f6SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 25cdf0e10cSrcweir #include "precompiled_connectivity.hxx" 26cdf0e10cSrcweir #include "connectivity/sdbcx/VIndexColumn.hxx" 27cdf0e10cSrcweir #include "TConnection.hxx" 28cdf0e10cSrcweir 29cdf0e10cSrcweir using namespace connectivity; 30cdf0e10cSrcweir using namespace connectivity::sdbcx; 31cdf0e10cSrcweir using namespace ::com::sun::star::beans; 32cdf0e10cSrcweir using namespace ::com::sun::star::uno; 33cdf0e10cSrcweir // ----------------------------------------------------------------------------- 34cdf0e10cSrcweir ::rtl::OUString SAL_CALL OIndexColumn::getImplementationName( ) throw (::com::sun::star::uno::RuntimeException) 35cdf0e10cSrcweir { 36cdf0e10cSrcweir if(isNew()) 37cdf0e10cSrcweir return ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VIndexColumnDescription"); 38*5f867bfdSDamjan Jovanovic return ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VIndexColumn"); 39cdf0e10cSrcweir } 40cdf0e10cSrcweir // ----------------------------------------------------------------------------- 41cdf0e10cSrcweir ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL OIndexColumn::getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException) 42cdf0e10cSrcweir { 43cdf0e10cSrcweir ::com::sun::star::uno::Sequence< ::rtl::OUString > aSupported(1); 44cdf0e10cSrcweir if(isNew()) 45*5f867bfdSDamjan Jovanovic aSupported[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.IndexColumnDescription"); 46cdf0e10cSrcweir else 47*5f867bfdSDamjan Jovanovic aSupported[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.IndexColumn"); 48cdf0e10cSrcweir 49cdf0e10cSrcweir return aSupported; 50cdf0e10cSrcweir } 51cdf0e10cSrcweir // ----------------------------------------------------------------------------- 52cdf0e10cSrcweir sal_Bool SAL_CALL OIndexColumn::supportsService( const ::rtl::OUString& _rServiceName ) throw(::com::sun::star::uno::RuntimeException) 53cdf0e10cSrcweir { 54cdf0e10cSrcweir Sequence< ::rtl::OUString > aSupported(getSupportedServiceNames()); 55cdf0e10cSrcweir const ::rtl::OUString* pSupported = aSupported.getConstArray(); 56cdf0e10cSrcweir const ::rtl::OUString* pEnd = pSupported + aSupported.getLength(); 57cdf0e10cSrcweir for (;pSupported != pEnd && !pSupported->equals(_rServiceName); ++pSupported) 58cdf0e10cSrcweir ; 59cdf0e10cSrcweir 60cdf0e10cSrcweir return pSupported != pEnd; 61cdf0e10cSrcweir } 62cdf0e10cSrcweir // ----------------------------------------------------------------------------- 63cdf0e10cSrcweir OIndexColumn::OIndexColumn(sal_Bool _bCase) : OColumn(_bCase), m_IsAscending(sal_True) 64cdf0e10cSrcweir { 65cdf0e10cSrcweir construct(); 66cdf0e10cSrcweir } 67cdf0e10cSrcweir 68cdf0e10cSrcweir // ------------------------------------------------------------------------- 69cdf0e10cSrcweir OIndexColumn::OIndexColumn( sal_Bool _IsAscending, 70cdf0e10cSrcweir const ::rtl::OUString& _Name, 71cdf0e10cSrcweir const ::rtl::OUString& _TypeName, 72cdf0e10cSrcweir const ::rtl::OUString& _DefaultValue, 73cdf0e10cSrcweir sal_Int32 _IsNullable, 74cdf0e10cSrcweir sal_Int32 _Precision, 75cdf0e10cSrcweir sal_Int32 _Scale, 76cdf0e10cSrcweir sal_Int32 _Type, 77cdf0e10cSrcweir sal_Bool _IsAutoIncrement, 78cdf0e10cSrcweir sal_Bool _IsRowVersion, 79cdf0e10cSrcweir sal_Bool _IsCurrency, 80cdf0e10cSrcweir sal_Bool _bCase 81cdf0e10cSrcweir ) : OColumn(_Name, 82cdf0e10cSrcweir _TypeName, 83cdf0e10cSrcweir _DefaultValue, 84cdf0e10cSrcweir ::rtl::OUString(), 85cdf0e10cSrcweir _IsNullable, 86cdf0e10cSrcweir _Precision, 87cdf0e10cSrcweir _Scale, 88cdf0e10cSrcweir _Type, 89cdf0e10cSrcweir _IsAutoIncrement, 90cdf0e10cSrcweir _IsRowVersion, 91cdf0e10cSrcweir _IsCurrency, 92cdf0e10cSrcweir _bCase) 93cdf0e10cSrcweir , m_IsAscending(_IsAscending) 94cdf0e10cSrcweir { 95cdf0e10cSrcweir construct(); 96cdf0e10cSrcweir } 97cdf0e10cSrcweir // ----------------------------------------------------------------------------- 98cdf0e10cSrcweir ::cppu::IPropertyArrayHelper* OIndexColumn::createArrayHelper( sal_Int32 /*_nId*/ ) const 99cdf0e10cSrcweir { 100cdf0e10cSrcweir return doCreateArrayHelper(); 101cdf0e10cSrcweir } 102cdf0e10cSrcweir // ----------------------------------------------------------------------------- 103cdf0e10cSrcweir ::cppu::IPropertyArrayHelper& SAL_CALL OIndexColumn::getInfoHelper() 104cdf0e10cSrcweir { 105cdf0e10cSrcweir return *OIndexColumn_PROP::getArrayHelper(isNew() ? 1 : 0); 106cdf0e10cSrcweir } 107cdf0e10cSrcweir // ------------------------------------------------------------------------- 108cdf0e10cSrcweir void OIndexColumn::construct() 109cdf0e10cSrcweir { 110cdf0e10cSrcweir sal_Int32 nAttrib = isNew() ? 0 : PropertyAttribute::READONLY; 111cdf0e10cSrcweir registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISASCENDING), PROPERTY_ID_ISASCENDING, nAttrib,&m_IsAscending, ::getBooleanCppuType()); 112cdf0e10cSrcweir } 113cdf0e10cSrcweir // ----------------------------------------------------------------------------- 114cdf0e10cSrcweir 115cdf0e10cSrcweir 116cdf0e10cSrcweir 117