1*2e2212a7SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*2e2212a7SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*2e2212a7SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*2e2212a7SAndrew Rist  * distributed with this work for additional information
6*2e2212a7SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*2e2212a7SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*2e2212a7SAndrew Rist  * "License"); you may not use this file except in compliance
9*2e2212a7SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*2e2212a7SAndrew Rist  *
11*2e2212a7SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*2e2212a7SAndrew Rist  *
13*2e2212a7SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*2e2212a7SAndrew Rist  * software distributed under the License is distributed on an
15*2e2212a7SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*2e2212a7SAndrew Rist  * KIND, either express or implied.  See the License for the
17*2e2212a7SAndrew Rist  * specific language governing permissions and limitations
18*2e2212a7SAndrew Rist  * under the License.
19*2e2212a7SAndrew Rist  *
20*2e2212a7SAndrew Rist  *************************************************************/
21*2e2212a7SAndrew Rist 
22*2e2212a7SAndrew Rist 
23cdf0e10cSrcweir #ifndef DBACCESS_CORE_API_CROWSETDATACOLUMN_HXX
24cdf0e10cSrcweir #define DBACCESS_CORE_API_CROWSETDATACOLUMN_HXX
25cdf0e10cSrcweir 
26cdf0e10cSrcweir #include "datacolumn.hxx"
27cdf0e10cSrcweir #include "RowSetRow.hxx"
28cdf0e10cSrcweir #include "RowSetCacheIterator.hxx"
29cdf0e10cSrcweir #include "columnsettings.hxx"
30cdf0e10cSrcweir 
31cdf0e10cSrcweir #include <connectivity/CommonTools.hxx>
32cdf0e10cSrcweir #include <comphelper/proparrhlp.hxx>
33cdf0e10cSrcweir 
34cdf0e10cSrcweir namespace dbaccess
35cdf0e10cSrcweir {
36cdf0e10cSrcweir 	class ORowSetDataColumn;
37cdf0e10cSrcweir 	typedef ::comphelper::OPropertyArrayUsageHelper<ORowSetDataColumn> ORowSetDataColumn_PROP;
38cdf0e10cSrcweir 
39cdf0e10cSrcweir 	class ORowSetDataColumn :	public ODataColumn,
40cdf0e10cSrcweir 								public OColumnSettings,
41cdf0e10cSrcweir 								public ORowSetDataColumn_PROP
42cdf0e10cSrcweir 	{
43cdf0e10cSrcweir 	protected:
44cdf0e10cSrcweir 		ORowSetCacheIterator		m_aColumnValue;
45cdf0e10cSrcweir 		::com::sun::star::uno::Any	m_aOldValue;
46cdf0e10cSrcweir 
47cdf0e10cSrcweir         ::rtl::OUString             m_sLabel;
48cdf0e10cSrcweir 		::rtl::OUString				m_aDescription;		// description
49cdf0e10cSrcweir 		ORowSetBase*				m_pRowSet;
50cdf0e10cSrcweir 
51cdf0e10cSrcweir 		virtual ~ORowSetDataColumn();
52cdf0e10cSrcweir 	public:
53cdf0e10cSrcweir 		ORowSetDataColumn(const ::com::sun::star::uno::Reference < ::com::sun::star::sdbc::XResultSetMetaData >& _xMetaData,
54cdf0e10cSrcweir 						  const ::com::sun::star::uno::Reference < ::com::sun::star::sdbc::XRow >& _xRow,
55cdf0e10cSrcweir 						  const ::com::sun::star::uno::Reference < ::com::sun::star::sdbc::XRowUpdate >& _xRowUpdate,
56cdf0e10cSrcweir 						  sal_Int32 _nPos,
57cdf0e10cSrcweir                           const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData >& _rxDBMeta,
58cdf0e10cSrcweir 						  const ::rtl::OUString& _rDescription,
59cdf0e10cSrcweir                           const ::rtl::OUString& i_sLabel,
60cdf0e10cSrcweir 						  const ORowSetCacheIterator& _rColumnValue);
61cdf0e10cSrcweir 
62cdf0e10cSrcweir 
63cdf0e10cSrcweir 		// com::sun::star::lang::XTypeProvider
64cdf0e10cSrcweir 		virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException);
65cdf0e10cSrcweir 		// comphelper::OPropertyArrayUsageHelper
66cdf0e10cSrcweir 		virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const;
67cdf0e10cSrcweir 
68cdf0e10cSrcweir 		// cppu::OPropertySetHelper
69cdf0e10cSrcweir 		virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper();
70cdf0e10cSrcweir 
71cdf0e10cSrcweir 		virtual sal_Bool SAL_CALL convertFastPropertyValue( ::com::sun::star::uno::Any & rConvertedValue,
72cdf0e10cSrcweir 															::com::sun::star::uno::Any & rOldValue,
73cdf0e10cSrcweir 															sal_Int32 nHandle,
74cdf0e10cSrcweir 															const ::com::sun::star::uno::Any& rValue ) throw (::com::sun::star::lang::IllegalArgumentException);
75cdf0e10cSrcweir 		virtual void SAL_CALL getFastPropertyValue( ::com::sun::star::uno::Any& rValue, sal_Int32 nHandle ) const;
76cdf0e10cSrcweir 		virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,const ::com::sun::star::uno::Any& rValue )throw (::com::sun::star::uno::Exception);
77cdf0e10cSrcweir 
78cdf0e10cSrcweir 		virtual void fireValueChange(const ::connectivity::ORowSetValue& _rOldValue);
79cdf0e10cSrcweir     protected:
80cdf0e10cSrcweir         using ODataColumn::getFastPropertyValue;
81cdf0e10cSrcweir 	};
82cdf0e10cSrcweir 	// -------------------------------------------------------------------------
83cdf0e10cSrcweir //	typedef connectivity::ORefVector< ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet> >
84cdf0e10cSrcweir //			ORowSetDataColumns_COLLECTION;
85cdf0e10cSrcweir 
86cdf0e10cSrcweir 	typedef connectivity::sdbcx::OCollection ORowSetDataColumns_BASE;
87cdf0e10cSrcweir 	class ORowSetDataColumns : public ORowSetDataColumns_BASE
88cdf0e10cSrcweir 	{
89cdf0e10cSrcweir 		::vos::ORef< ::connectivity::OSQLColumns> m_aColumns;
90cdf0e10cSrcweir 	protected:
91cdf0e10cSrcweir 		virtual connectivity::sdbcx::ObjectType createObject(const ::rtl::OUString& _rName);
92cdf0e10cSrcweir 		virtual void impl_refresh() throw(::com::sun::star::uno::RuntimeException);
93cdf0e10cSrcweir 	public:
94cdf0e10cSrcweir 		ORowSetDataColumns(
95cdf0e10cSrcweir 						sal_Bool _bCase,
96cdf0e10cSrcweir 						const ::vos::ORef< ::connectivity::OSQLColumns>& _rColumns,
97cdf0e10cSrcweir 						::cppu::OWeakObject& _rParent,
98cdf0e10cSrcweir 						::osl::Mutex& _rMutex,
99cdf0e10cSrcweir 						const ::std::vector< ::rtl::OUString> &_rVector
100cdf0e10cSrcweir 						);
101cdf0e10cSrcweir 		virtual ~ORowSetDataColumns();
102cdf0e10cSrcweir 		// only the name is identical to ::cppu::OComponentHelper
103cdf0e10cSrcweir 		virtual void SAL_CALL disposing(void);
104cdf0e10cSrcweir 		void assign(const ::vos::ORef< ::connectivity::OSQLColumns>& _rColumns,const ::std::vector< ::rtl::OUString> &_rVector);
105cdf0e10cSrcweir 	};
106cdf0e10cSrcweir }
107cdf0e10cSrcweir 
108cdf0e10cSrcweir #endif
109cdf0e10cSrcweir 
110