Bump version to 5.0-14
[LibreOffice.git] / dbaccess / source / core / api / HelperCollections.cxx
blob78c99cfff0b7c4dca961f500b45dfba7f872e63f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include "HelperCollections.hxx"
22 #include "dbastrings.hrc"
24 namespace dbaccess
26 using namespace dbtools;
27 using namespace comphelper;
28 using namespace connectivity;
29 using namespace ::com::sun::star::uno;
30 using namespace ::com::sun::star::beans;
31 using namespace ::com::sun::star::sdbc;
32 using namespace ::com::sun::star::sdb;
33 using namespace ::com::sun::star::sdbcx;
34 using namespace ::com::sun::star::container;
35 using namespace ::com::sun::star::lang;
36 using namespace ::com::sun::star::script;
37 using namespace ::cppu;
38 using namespace ::osl;
40 OPrivateColumns::OPrivateColumns(const ::rtl::Reference< ::connectivity::OSQLColumns>& _rColumns,
41 bool _bCase,
42 ::cppu::OWeakObject& _rParent,
43 ::osl::Mutex& _rMutex,
44 const ::std::vector< OUString> &_rVector,
45 bool _bUseAsIndex
46 ) : sdbcx::OCollection(_rParent,_bCase,_rMutex,_rVector,_bUseAsIndex)
47 ,m_aColumns(_rColumns)
51 OPrivateColumns* OPrivateColumns::createWithIntrinsicNames( const ::rtl::Reference< ::connectivity::OSQLColumns >& _rColumns,
52 bool _bCase, ::cppu::OWeakObject& _rParent, ::osl::Mutex& _rMutex )
54 ::std::vector< OUString > aNames; aNames.reserve( _rColumns->get().size() );
56 OUString sColumName;
57 for ( ::connectivity::OSQLColumns::Vector::const_iterator column = _rColumns->get().begin();
58 column != _rColumns->get().end();
59 ++column
62 Reference< XPropertySet > xColumn( *column, UNO_QUERY_THROW );
63 xColumn->getPropertyValue( PROPERTY_NAME ) >>= sColumName;
64 aNames.push_back( sColumName );
66 return new OPrivateColumns( _rColumns, _bCase, _rParent, _rMutex, aNames, false );
69 void SAL_CALL OPrivateColumns::disposing()
71 m_aColumns = NULL;
72 clear_NoDispose();
73 // we're not owner of the objects we're holding, instead the object we got in our ctor is
74 // So we're not allowed to dispose our elements.
75 OPrivateColumns_Base::disposing();
78 connectivity::sdbcx::ObjectType OPrivateColumns::createObject(const OUString& _rName)
80 if ( m_aColumns.is() )
82 ::connectivity::OSQLColumns::Vector::const_iterator aIter = find(m_aColumns->get().begin(),m_aColumns->get().end(),_rName,isCaseSensitive());
83 if(aIter == m_aColumns->get().end())
84 aIter = findRealName(m_aColumns->get().begin(),m_aColumns->get().end(),_rName,isCaseSensitive());
86 if(aIter != m_aColumns->get().end())
87 return connectivity::sdbcx::ObjectType(*aIter,UNO_QUERY);
89 OSL_FAIL("Column not found in collection!");
91 return NULL;
94 connectivity::sdbcx::ObjectType OPrivateTables::createObject(const OUString& _rName)
96 if ( !m_aTables.empty() )
98 OSQLTables::iterator aIter = m_aTables.find(_rName);
99 OSL_ENSURE(aIter != m_aTables.end(),"Table not found!");
100 OSL_ENSURE(aIter->second.is(),"Table is null!");
101 (void)aIter;
102 return connectivity::sdbcx::ObjectType(m_aTables.find(_rName)->second,UNO_QUERY);
104 return NULL;
108 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */