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
109b5730f6SAndrew Rist  *
119b5730f6SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
129b5730f6SAndrew Rist  *
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.
199b5730f6SAndrew Rist  *
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/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 // -----------------------------------------------------------------------------
getImplementationName()35cdf0e10cSrcweir ::rtl::OUString SAL_CALL OKeyColumn::getImplementationName(  ) throw (::com::sun::star::uno::RuntimeException)
36cdf0e10cSrcweir {
37cdf0e10cSrcweir 	if(isNew())
38ac472dbcSDamjan Jovanovic 		return ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VKeyColumnDescriptor");
39cdf0e10cSrcweir 	return ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VKeyColumn");
40cdf0e10cSrcweir }
41cdf0e10cSrcweir // -----------------------------------------------------------------------------
getSupportedServiceNames()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())
46ac472dbcSDamjan Jovanovic 		aSupported[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.KeyColumnDescriptor");
47cdf0e10cSrcweir 	else
48cdf0e10cSrcweir 		aSupported[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.KeyColumn");
49cdf0e10cSrcweir 
50cdf0e10cSrcweir 	return aSupported;
51cdf0e10cSrcweir }
52cdf0e10cSrcweir // -----------------------------------------------------------------------------
supportsService(const::rtl::OUString & _rServiceName)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 // -------------------------------------------------------------------------
OKeyColumn(sal_Bool _bCase)64cdf0e10cSrcweir OKeyColumn::OKeyColumn(sal_Bool _bCase) : OColumn(_bCase)
65cdf0e10cSrcweir {
66cdf0e10cSrcweir 	construct();
67cdf0e10cSrcweir }
68cdf0e10cSrcweir // -------------------------------------------------------------------------
OKeyColumn(const::rtl::OUString & _ReferencedColumn,const::rtl::OUString & _Name,const::rtl::OUString & _TypeName,const::rtl::OUString & _DefaultValue,sal_Int32 _IsNullable,sal_Int32 _Precision,sal_Int32 _Scale,sal_Int32 _Type,sal_Bool _IsAutoIncrement,sal_Bool _IsRowVersion,sal_Bool _IsCurrency,sal_Bool _bCase)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 // -------------------------------------------------------------------------
~OKeyColumn()98cdf0e10cSrcweir OKeyColumn::~OKeyColumn()
99cdf0e10cSrcweir {
100cdf0e10cSrcweir }
101cdf0e10cSrcweir // -----------------------------------------------------------------------------
createArrayHelper(sal_Int32) const102cdf0e10cSrcweir ::cppu::IPropertyArrayHelper* OKeyColumn::createArrayHelper( sal_Int32 /*_nId*/ ) const
103cdf0e10cSrcweir {
104cdf0e10cSrcweir     return doCreateArrayHelper();
105cdf0e10cSrcweir }
106cdf0e10cSrcweir // -----------------------------------------------------------------------------
getInfoHelper()107cdf0e10cSrcweir ::cppu::IPropertyArrayHelper& SAL_CALL OKeyColumn::getInfoHelper()
108cdf0e10cSrcweir {
109cdf0e10cSrcweir 	return *OKeyColumn_PROP::getArrayHelper(isNew() ? 1 : 0);
110cdf0e10cSrcweir }
111cdf0e10cSrcweir // -------------------------------------------------------------------------
construct()112cdf0e10cSrcweir void OKeyColumn::construct()
113cdf0e10cSrcweir {
114cdf0e10cSrcweir     sal_Int32 nAttrib = isNew() ? 0 : PropertyAttribute::READONLY;
115*bccc1572SDon Lewis 	registerProperty(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_RELATEDCOLUMN),	PROPERTY_ID_RELATEDCOLUMN,	nAttrib,&m_ReferencedColumn,	::getCppuType(static_cast< ::rtl::OUString*>(NULL)));
116cdf0e10cSrcweir }
117cdf0e10cSrcweir // -----------------------------------------------------------------------------
118cdf0e10cSrcweir 
119cdf0e10cSrcweir 
120cdf0e10cSrcweir 
121cdf0e10cSrcweir 
122