1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 <strings.hxx>
25 #include <osl/diagnose.h>
29 using namespace dbtools
;
30 using namespace comphelper
;
31 using namespace connectivity
;
32 using namespace ::com::sun::star::uno
;
33 using namespace ::com::sun::star::beans
;
34 using namespace ::com::sun::star::sdbc
;
35 using namespace ::com::sun::star::sdb
;
36 using namespace ::com::sun::star::sdbcx
;
37 using namespace ::com::sun::star::container
;
38 using namespace ::com::sun::star::lang
;
39 using namespace ::com::sun::star::script
;
40 using namespace ::cppu
;
41 using namespace ::osl
;
43 OPrivateColumns::OPrivateColumns(::rtl::Reference
< ::connectivity::OSQLColumns
> _xColumns
,
45 ::cppu::OWeakObject
& _rParent
,
46 ::osl::Mutex
& _rMutex
,
47 const std::vector
< OUString
> &_rVector
,
49 ) : sdbcx::OCollection(_rParent
,_bCase
,_rMutex
,_rVector
,_bUseAsIndex
)
50 ,m_aColumns(std::move(_xColumns
))
54 std::unique_ptr
<OPrivateColumns
> OPrivateColumns::createWithIntrinsicNames( const ::rtl::Reference
< ::connectivity::OSQLColumns
>& _rColumns
,
55 bool _bCase
, ::cppu::OWeakObject
& _rParent
, ::osl::Mutex
& _rMutex
)
57 std::vector
< OUString
> aNames
; aNames
.reserve( _rColumns
->size() );
60 for (auto const& column
: *_rColumns
)
62 Reference
< XPropertySet
> xColumn(column
, UNO_SET_THROW
);
63 xColumn
->getPropertyValue( PROPERTY_NAME
) >>= sColumName
;
64 aNames
.push_back( sColumName
);
66 return std::unique_ptr
<OPrivateColumns
>(new OPrivateColumns( _rColumns
, _bCase
, _rParent
, _rMutex
, aNames
, false ));
69 void OPrivateColumns::disposing()
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
->begin(),m_aColumns
->end(),_rName
,isCaseSensitive());
83 if(aIter
== m_aColumns
->end())
84 aIter
= findRealName(m_aColumns
->begin(),m_aColumns
->end(),_rName
,isCaseSensitive());
86 if(aIter
!= m_aColumns
->end())
87 return connectivity::sdbcx::ObjectType(*aIter
,UNO_QUERY
);
89 OSL_FAIL("Column not found in collection!");
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 return connectivity::sdbcx::ObjectType(m_aTables
.find(_rName
)->second
,UNO_QUERY
);
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */