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 "file/FCatalog.hxx"
27cdf0e10cSrcweir #include "file/FConnection.hxx"
28cdf0e10cSrcweir #include "file/FTables.hxx"
29cdf0e10cSrcweir #include <com/sun/star/sdbc/XRow.hpp>
30cdf0e10cSrcweir #include <com/sun/star/sdbc/XResultSet.hpp>
31cdf0e10cSrcweir #include <rtl/logfile.hxx>
32cdf0e10cSrcweir 
33cdf0e10cSrcweir using namespace ::com::sun::star::uno;
34cdf0e10cSrcweir using namespace ::com::sun::star::beans;
35cdf0e10cSrcweir using namespace ::com::sun::star::sdbcx;
36cdf0e10cSrcweir using namespace ::com::sun::star::sdbc;
37cdf0e10cSrcweir using namespace ::com::sun::star::container;
38cdf0e10cSrcweir 
39cdf0e10cSrcweir // -------------------------------------------------------------------------
40cdf0e10cSrcweir using namespace connectivity::file;
41cdf0e10cSrcweir // -------------------------------------------------------------------------
OFileCatalog(OConnection * _pCon)42cdf0e10cSrcweir OFileCatalog::OFileCatalog(OConnection* _pCon) : connectivity::sdbcx::OCatalog(_pCon)
43cdf0e10cSrcweir 				,m_pConnection(_pCon)
44cdf0e10cSrcweir {
45cdf0e10cSrcweir     RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "file", "Ocke.Janssen@sun.com", "OFileCatalog::OFileCatalog" );
46cdf0e10cSrcweir }
47cdf0e10cSrcweir // -------------------------------------------------------------------------
disposing()48cdf0e10cSrcweir void SAL_CALL OFileCatalog::disposing()
49cdf0e10cSrcweir {
50cdf0e10cSrcweir     RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "file", "Ocke.Janssen@sun.com", "OFileCatalog::disposing" );
51cdf0e10cSrcweir 	::osl::MutexGuard aGuard(m_aMutex);
52cdf0e10cSrcweir 
53cdf0e10cSrcweir 	typedef connectivity::sdbcx::OCatalog OFileCatalog_BASE;
54cdf0e10cSrcweir m_xMetaData.clear();
55cdf0e10cSrcweir 	OFileCatalog_BASE::disposing();
56cdf0e10cSrcweir }
57cdf0e10cSrcweir // -----------------------------------------------------------------------------
buildName(const Reference<XRow> & _xRow)58cdf0e10cSrcweir ::rtl::OUString OFileCatalog::buildName(const Reference< XRow >& _xRow)
59cdf0e10cSrcweir {
60cdf0e10cSrcweir     RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "file", "Ocke.Janssen@sun.com", "OFileCatalog::buildName" );
61cdf0e10cSrcweir 	return _xRow->getString(3);
62cdf0e10cSrcweir }
63cdf0e10cSrcweir // -------------------------------------------------------------------------
refreshTables()64cdf0e10cSrcweir void OFileCatalog::refreshTables()
65cdf0e10cSrcweir {
66cdf0e10cSrcweir     RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "file", "Ocke.Janssen@sun.com", "OFileCatalog::refreshTables" );
67cdf0e10cSrcweir 	TStringVector aVector;
68cdf0e10cSrcweir 	Sequence< ::rtl::OUString > aTypes;
69cdf0e10cSrcweir 	Reference< XResultSet > xResult = m_xMetaData->getTables(Any(),
70cdf0e10cSrcweir 		::rtl::OUString::createFromAscii("%"),::rtl::OUString::createFromAscii("%"),aTypes);
71cdf0e10cSrcweir 	fillNames(xResult,aVector);
72cdf0e10cSrcweir 
73cdf0e10cSrcweir 	if(m_pTables)
74cdf0e10cSrcweir 		m_pTables->reFill(aVector);
75cdf0e10cSrcweir 	else
76cdf0e10cSrcweir 		m_pTables = new OTables(m_xMetaData,*this,m_aMutex,aVector);
77cdf0e10cSrcweir }
78cdf0e10cSrcweir 
79cdf0e10cSrcweir // -------------------------------------------------------------------------
queryInterface(const Type & rType)80cdf0e10cSrcweir Any SAL_CALL OFileCatalog::queryInterface( const Type & rType ) throw(RuntimeException)
81cdf0e10cSrcweir {
82cdf0e10cSrcweir     RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "file", "Ocke.Janssen@sun.com", "OFileCatalog::queryInterface" );
83cdf0e10cSrcweir 	if( rType == ::getCppuType((const Reference<XGroupsSupplier>*)0) ||
84cdf0e10cSrcweir 		rType == ::getCppuType((const Reference<XUsersSupplier>*)0) ||
85cdf0e10cSrcweir 		rType == ::getCppuType((const Reference<XViewsSupplier>*)0))
86cdf0e10cSrcweir 		return Any();
87cdf0e10cSrcweir 
88cdf0e10cSrcweir 
89cdf0e10cSrcweir 	typedef sdbcx::OCatalog OFileCatalog_BASE;
90cdf0e10cSrcweir 	return OFileCatalog_BASE::queryInterface(rType);
91cdf0e10cSrcweir }
92cdf0e10cSrcweir // -----------------------------------------------------------------------------
getTypes()93cdf0e10cSrcweir Sequence< Type > SAL_CALL OFileCatalog::getTypes(  ) throw(RuntimeException)
94cdf0e10cSrcweir {
95cdf0e10cSrcweir     RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "file", "Ocke.Janssen@sun.com", "OFileCatalog::getTypes" );
96cdf0e10cSrcweir 	typedef sdbcx::OCatalog OFileCatalog_BASE;
97cdf0e10cSrcweir 
98cdf0e10cSrcweir 	Sequence< Type > aTypes = OFileCatalog_BASE::getTypes();
99cdf0e10cSrcweir 	::std::vector<Type> aOwnTypes;
100cdf0e10cSrcweir 	aOwnTypes.reserve(aTypes.getLength());
101cdf0e10cSrcweir 	const Type* pBegin = aTypes.getConstArray();
102cdf0e10cSrcweir 	const Type* pEnd = pBegin + aTypes.getLength();
103cdf0e10cSrcweir 	for(;pBegin != pEnd;++pBegin)
104cdf0e10cSrcweir 	{
105cdf0e10cSrcweir 		if(!(*pBegin == ::getCppuType((const Reference<XGroupsSupplier>*)0)	||
106cdf0e10cSrcweir 			*pBegin == ::getCppuType((const Reference<XUsersSupplier>*)0)	||
107cdf0e10cSrcweir 			*pBegin == ::getCppuType((const Reference<XViewsSupplier>*)0)))
108cdf0e10cSrcweir 		{
109cdf0e10cSrcweir 			aOwnTypes.push_back(*pBegin);
110cdf0e10cSrcweir 		}
111cdf0e10cSrcweir 	}
112cdf0e10cSrcweir 	const Type *pTypes = aOwnTypes.empty() ? 0 : &aOwnTypes[0];
113cdf0e10cSrcweir 	return Sequence< Type >(pTypes, aOwnTypes.size());
114cdf0e10cSrcweir }
115cdf0e10cSrcweir // -----------------------------------------------------------------------------
116cdf0e10cSrcweir 
117cdf0e10cSrcweir 
118