1*9b5730f6SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*9b5730f6SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*9b5730f6SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*9b5730f6SAndrew Rist * distributed with this work for additional information 6*9b5730f6SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*9b5730f6SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*9b5730f6SAndrew Rist * "License"); you may not use this file except in compliance 9*9b5730f6SAndrew Rist * with the License. You may obtain a copy of the License at 10*9b5730f6SAndrew Rist * 11*9b5730f6SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*9b5730f6SAndrew Rist * 13*9b5730f6SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*9b5730f6SAndrew Rist * software distributed under the License is distributed on an 15*9b5730f6SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*9b5730f6SAndrew Rist * KIND, either express or implied. See the License for the 17*9b5730f6SAndrew Rist * specific language governing permissions and limitations 18*9b5730f6SAndrew Rist * under the License. 19*9b5730f6SAndrew Rist * 20*9b5730f6SAndrew Rist *************************************************************/ 21*9b5730f6SAndrew Rist 22*9b5730f6SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 25cdf0e10cSrcweir #include "precompiled_connectivity.hxx" 26cdf0e10cSrcweir #include "connectivity/sdbcx/VKeyColumn.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 using namespace cppu; 34cdf0e10cSrcweir // ----------------------------------------------------------------------------- 35cdf0e10cSrcweir ::rtl::OUString SAL_CALL OKeyColumn::getImplementationName( ) throw (::com::sun::star::uno::RuntimeException) 36cdf0e10cSrcweir { 37cdf0e10cSrcweir if(isNew()) 38cdf0e10cSrcweir return ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VKeyColumnDescription"); 39cdf0e10cSrcweir return ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VKeyColumn"); 40cdf0e10cSrcweir } 41cdf0e10cSrcweir // ----------------------------------------------------------------------------- 42cdf0e10cSrcweir ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL OKeyColumn::getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException) 43cdf0e10cSrcweir { 44cdf0e10cSrcweir ::com::sun::star::uno::Sequence< ::rtl::OUString > aSupported(1); 45cdf0e10cSrcweir if(isNew()) 46cdf0e10cSrcweir aSupported[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.KeyColumnDescription"); 47cdf0e10cSrcweir else 48cdf0e10cSrcweir aSupported[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.KeyColumn"); 49cdf0e10cSrcweir 50cdf0e10cSrcweir return aSupported; 51cdf0e10cSrcweir } 52cdf0e10cSrcweir // ----------------------------------------------------------------------------- 53cdf0e10cSrcweir sal_Bool SAL_CALL OKeyColumn::supportsService( const ::rtl::OUString& _rServiceName ) throw(::com::sun::star::uno::RuntimeException) 54cdf0e10cSrcweir { 55cdf0e10cSrcweir Sequence< ::rtl::OUString > aSupported(getSupportedServiceNames()); 56cdf0e10cSrcweir const ::rtl::OUString* pSupported = aSupported.getConstArray(); 57cdf0e10cSrcweir const ::rtl::OUString* pEnd = pSupported + aSupported.getLength(); 58cdf0e10cSrcweir for (;pSupported != pEnd && !pSupported->equals(_rServiceName); ++pSupported) 59cdf0e10cSrcweir ; 60cdf0e10cSrcweir 61cdf0e10cSrcweir return pSupported != pEnd; 62cdf0e10cSrcweir } 63cdf0e10cSrcweir // ------------------------------------------------------------------------- 64cdf0e10cSrcweir OKeyColumn::OKeyColumn(sal_Bool _bCase) : OColumn(_bCase) 65cdf0e10cSrcweir { 66cdf0e10cSrcweir construct(); 67cdf0e10cSrcweir } 68cdf0e10cSrcweir // ------------------------------------------------------------------------- 69cdf0e10cSrcweir OKeyColumn::OKeyColumn( const ::rtl::OUString& _ReferencedColumn, 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_ReferencedColumn(_ReferencedColumn) 94cdf0e10cSrcweir { 95cdf0e10cSrcweir construct(); 96cdf0e10cSrcweir } 97cdf0e10cSrcweir // ------------------------------------------------------------------------- 98cdf0e10cSrcweir OKeyColumn::~OKeyColumn() 99cdf0e10cSrcweir { 100cdf0e10cSrcweir } 101cdf0e10cSrcweir // ----------------------------------------------------------------------------- 102cdf0e10cSrcweir ::cppu::IPropertyArrayHelper* OKeyColumn::createArrayHelper( sal_Int32 /*_nId*/ ) const 103cdf0e10cSrcweir { 104cdf0e10cSrcweir return doCreateArrayHelper(); 105cdf0e10cSrcweir } 106cdf0e10cSrcweir // ----------------------------------------------------------------------------- 107cdf0e10cSrcweir ::cppu::IPropertyArrayHelper& SAL_CALL OKeyColumn::getInfoHelper() 108cdf0e10cSrcweir { 109cdf0e10cSrcweir return *OKeyColumn_PROP::getArrayHelper(isNew() ? 1 : 0); 110cdf0e10cSrcweir } 111cdf0e10cSrcweir // ------------------------------------------------------------------------- 112cdf0e10cSrcweir void OKeyColumn::construct() 113cdf0e10cSrcweir { 114cdf0e10cSrcweir sal_Int32 nAttrib = isNew() ? 0 : PropertyAttribute::READONLY; 115cdf0e10cSrcweir registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RELATEDCOLUMN), PROPERTY_ID_RELATEDCOLUMN, nAttrib,&m_ReferencedColumn, ::getCppuType(reinterpret_cast< ::rtl::OUString*>(NULL))); 116cdf0e10cSrcweir } 117cdf0e10cSrcweir // ----------------------------------------------------------------------------- 118cdf0e10cSrcweir 119cdf0e10cSrcweir 120cdf0e10cSrcweir 121cdf0e10cSrcweir 122