Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include "adtabdlg.hxx"
21 : #include "sqlmessage.hxx"
22 : #include <tools/debug.hxx>
23 : #include <tools/diagnose_ex.h>
24 : #include <svtools/localresaccess.hxx>
25 : #include "dbaccess_helpid.hrc"
26 : #include "dbu_resource.hrc"
27 : #include "dbu_dlg.hrc"
28 : #include <sfx2/sfxsids.hrc>
29 : #include "QueryTableView.hxx"
30 : #include "QueryDesignView.hxx"
31 : #include "querycontroller.hxx"
32 : #include <connectivity/dbtools.hxx>
33 : #include "browserids.hxx"
34 : #include <com/sun/star/sdb/XQueriesSupplier.hpp>
35 : #include <com/sun/star/sdbcx/XViewsSupplier.hpp>
36 : #include <com/sun/star/sdbcx/XTablesSupplier.hpp>
37 : #include <com/sun/star/container/XNameAccess.hpp>
38 : #include "UITools.hxx"
39 : #include "imageprovider.hxx"
40 : #include <comphelper/containermultiplexer.hxx>
41 : #include "cppuhelper/basemutex.hxx"
42 : #include <algorithm>
43 :
44 : // slot ids
45 : using namespace dbaui;
46 : using namespace ::com::sun::star;
47 : using namespace ::com::sun::star::uno;
48 : using namespace ::com::sun::star::container;
49 : using namespace ::com::sun::star::sdb;
50 : using namespace ::com::sun::star::sdbc;
51 : using namespace ::com::sun::star::sdbcx;
52 : using namespace dbtools;
53 :
54 0 : TableObjectListFacade::~TableObjectListFacade()
55 : {
56 0 : }
57 :
58 : class TableListFacade : public ::cppu::BaseMutex
59 : , public TableObjectListFacade
60 : , public ::comphelper::OContainerListener
61 : {
62 : OTableTreeListBox& m_rTableList;
63 : Reference< XConnection > m_xConnection;
64 : ::rtl::Reference< comphelper::OContainerListenerAdapter>
65 : m_pContainerListener;
66 : bool m_bAllowViews;
67 :
68 : public:
69 0 : TableListFacade( OTableTreeListBox& _rTableList, const Reference< XConnection >& _rxConnection )
70 : : ::comphelper::OContainerListener(m_aMutex)
71 : ,m_rTableList( _rTableList )
72 : ,m_xConnection( _rxConnection )
73 0 : ,m_bAllowViews(true)
74 : {
75 0 : }
76 : virtual ~TableListFacade();
77 :
78 : private:
79 : virtual void updateTableObjectList( bool _bAllowViews ) SAL_OVERRIDE;
80 : virtual OUString getSelectedName( OUString& _out_rAliasName ) const SAL_OVERRIDE;
81 : virtual bool isLeafSelected() const SAL_OVERRIDE;
82 : // OContainerListener
83 : virtual void _elementInserted( const ::com::sun::star::container::ContainerEvent& _rEvent ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
84 : virtual void _elementRemoved( const ::com::sun::star::container::ContainerEvent& _rEvent ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
85 : virtual void _elementReplaced( const ::com::sun::star::container::ContainerEvent& _rEvent ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
86 : };
87 :
88 0 : TableListFacade::~TableListFacade()
89 : {
90 0 : if ( m_pContainerListener.is() )
91 0 : m_pContainerListener->dispose();
92 0 : }
93 :
94 0 : OUString TableListFacade::getSelectedName( OUString& _out_rAliasName ) const
95 : {
96 0 : SvTreeListEntry* pEntry = m_rTableList.FirstSelected();
97 0 : if ( !pEntry )
98 0 : return OUString();
99 :
100 0 : OUString aCatalog, aSchema, aTableName;
101 0 : SvTreeListEntry* pSchema = m_rTableList.GetParent(pEntry);
102 0 : if(pSchema && pSchema != m_rTableList.getAllObjectsEntry())
103 : {
104 0 : SvTreeListEntry* pCatalog = m_rTableList.GetParent(pSchema);
105 0 : if(pCatalog && pCatalog != m_rTableList.getAllObjectsEntry())
106 0 : aCatalog = m_rTableList.GetEntryText(pCatalog);
107 0 : aSchema = m_rTableList.GetEntryText(pSchema);
108 : }
109 0 : aTableName = m_rTableList.GetEntryText(pEntry);
110 :
111 0 : OUString aComposedName;
112 : try
113 : {
114 0 : Reference< XDatabaseMetaData > xMeta( m_xConnection->getMetaData(), UNO_QUERY_THROW );
115 0 : if ( aCatalog.isEmpty()
116 0 : && !aSchema.isEmpty()
117 0 : && xMeta->supportsCatalogsInDataManipulation()
118 0 : && !xMeta->supportsSchemasInDataManipulation() )
119 : {
120 0 : aCatalog = aSchema;
121 0 : aSchema = OUString();
122 : }
123 :
124 0 : aComposedName = ::dbtools::composeTableName(
125 0 : xMeta, aCatalog, aSchema, aTableName, false, ::dbtools::eInDataManipulation );
126 : }
127 0 : catch ( const Exception& )
128 : {
129 : DBG_UNHANDLED_EXCEPTION();
130 : }
131 :
132 0 : _out_rAliasName = aTableName;
133 0 : return aComposedName;
134 : }
135 :
136 0 : void TableListFacade::_elementInserted( const container::ContainerEvent& /*_rEvent*/ ) throw(::com::sun::star::uno::RuntimeException, std::exception)
137 : {
138 0 : updateTableObjectList(m_bAllowViews);
139 0 : }
140 :
141 0 : void TableListFacade::_elementRemoved( const container::ContainerEvent& /*_rEvent*/ ) throw(::com::sun::star::uno::RuntimeException, std::exception)
142 : {
143 0 : updateTableObjectList(m_bAllowViews);
144 0 : }
145 :
146 0 : void TableListFacade::_elementReplaced( const container::ContainerEvent& /*_rEvent*/ ) throw(::com::sun::star::uno::RuntimeException, std::exception)
147 : {
148 0 : }
149 :
150 0 : void TableListFacade::updateTableObjectList( bool _bAllowViews )
151 : {
152 0 : m_bAllowViews = _bAllowViews;
153 0 : m_rTableList.Clear();
154 : try
155 : {
156 0 : Reference< XTablesSupplier > xTableSupp( m_xConnection, UNO_QUERY_THROW );
157 :
158 0 : Reference< XViewsSupplier > xViewSupp;
159 0 : Reference< XNameAccess > xTables, xViews;
160 0 : Sequence< OUString > sTables, sViews;
161 :
162 0 : xTables = xTableSupp->getTables();
163 0 : if ( xTables.is() )
164 : {
165 0 : if ( !m_pContainerListener.is() )
166 : {
167 0 : Reference< XContainer> xContainer(xTables,uno::UNO_QUERY);
168 0 : if ( xContainer.is() )
169 0 : m_pContainerListener = new ::comphelper::OContainerListenerAdapter(this,xContainer);
170 : }
171 0 : sTables = xTables->getElementNames();
172 : }
173 :
174 0 : xViewSupp.set( xTableSupp, UNO_QUERY );
175 0 : if ( xViewSupp.is() )
176 : {
177 0 : xViews = xViewSupp->getViews();
178 0 : if ( xViews.is() )
179 0 : sViews = xViews->getElementNames();
180 : }
181 :
182 : // if no views are allowed remove the views also out the table name filter
183 0 : if ( !_bAllowViews )
184 : {
185 0 : const OUString* pTableBegin = sTables.getConstArray();
186 0 : const OUString* pTableEnd = pTableBegin + sTables.getLength();
187 0 : ::std::vector< OUString > aTables(pTableBegin,pTableEnd);
188 :
189 0 : const OUString* pViewBegin = sViews.getConstArray();
190 0 : const OUString* pViewEnd = pViewBegin + sViews.getLength();
191 0 : ::comphelper::UStringMixEqual aEqualFunctor;
192 0 : for(;pViewBegin != pViewEnd;++pViewBegin)
193 0 : aTables.erase(::std::remove_if(aTables.begin(),aTables.end(),::std::bind2nd(aEqualFunctor,*pViewBegin)),aTables.end());
194 0 : OUString* pTables = aTables.empty() ? 0 : &aTables[0];
195 0 : sTables = Sequence< OUString>(pTables, aTables.size());
196 0 : sViews = Sequence< OUString>();
197 : }
198 :
199 0 : m_rTableList.UpdateTableList( m_xConnection, sTables, sViews );
200 0 : SvTreeListEntry* pEntry = m_rTableList.First();
201 0 : while( pEntry && m_rTableList.GetModel()->HasChildren( pEntry ) )
202 : {
203 0 : m_rTableList.Expand( pEntry );
204 0 : pEntry = m_rTableList.Next( pEntry );
205 : }
206 0 : if ( pEntry )
207 0 : m_rTableList.Select(pEntry);
208 : }
209 0 : catch( const Exception& )
210 : {
211 : DBG_UNHANDLED_EXCEPTION();
212 : }
213 0 : }
214 :
215 0 : bool TableListFacade::isLeafSelected() const
216 : {
217 0 : SvTreeListEntry* pEntry = m_rTableList.FirstSelected();
218 0 : return pEntry && !m_rTableList.GetModel()->HasChildren( pEntry );
219 : }
220 :
221 : class QueryListFacade : public ::cppu::BaseMutex
222 : , public TableObjectListFacade
223 : , public ::comphelper::OContainerListener
224 : {
225 : SvTreeListBox& m_rQueryList;
226 : Reference< XConnection > m_xConnection;
227 : ::rtl::Reference< comphelper::OContainerListenerAdapter>
228 : m_pContainerListener;
229 :
230 : public:
231 0 : QueryListFacade( SvTreeListBox& _rQueryList, const Reference< XConnection >& _rxConnection )
232 : : ::comphelper::OContainerListener(m_aMutex)
233 : ,m_rQueryList( _rQueryList )
234 0 : ,m_xConnection( _rxConnection )
235 : {
236 0 : }
237 : virtual ~QueryListFacade();
238 :
239 : private:
240 : virtual void updateTableObjectList( bool _bAllowViews ) SAL_OVERRIDE;
241 : virtual OUString getSelectedName( OUString& _out_rAliasName ) const SAL_OVERRIDE;
242 : virtual bool isLeafSelected() const SAL_OVERRIDE;
243 : // OContainerListener
244 : virtual void _elementInserted( const ::com::sun::star::container::ContainerEvent& _rEvent ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
245 : virtual void _elementRemoved( const ::com::sun::star::container::ContainerEvent& _rEvent ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
246 : virtual void _elementReplaced( const ::com::sun::star::container::ContainerEvent& _rEvent ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
247 : };
248 :
249 0 : QueryListFacade::~QueryListFacade()
250 : {
251 0 : if ( m_pContainerListener.is() )
252 0 : m_pContainerListener->dispose();
253 0 : }
254 :
255 0 : void QueryListFacade::_elementInserted( const container::ContainerEvent& _rEvent ) throw(::com::sun::star::uno::RuntimeException, std::exception)
256 : {
257 0 : OUString sName;
258 0 : if ( _rEvent.Accessor >>= sName )
259 0 : m_rQueryList.InsertEntry( sName );
260 0 : }
261 :
262 0 : void QueryListFacade::_elementRemoved( const container::ContainerEvent& /*_rEvent*/ ) throw(::com::sun::star::uno::RuntimeException, std::exception)
263 : {
264 0 : updateTableObjectList(true);
265 0 : }
266 :
267 0 : void QueryListFacade::_elementReplaced( const container::ContainerEvent& /*_rEvent*/ ) throw(::com::sun::star::uno::RuntimeException, std::exception)
268 : {
269 0 : }
270 :
271 0 : void QueryListFacade::updateTableObjectList( bool /*_bAllowViews*/ )
272 : {
273 0 : m_rQueryList.Clear();
274 : try
275 : {
276 0 : ImageProvider aImageProvider( m_xConnection );
277 0 : Image aQueryImage( aImageProvider.getDefaultImage( DatabaseObject::QUERY ) );
278 :
279 0 : m_rQueryList.SetDefaultExpandedEntryBmp( aQueryImage );
280 0 : m_rQueryList.SetDefaultCollapsedEntryBmp( aQueryImage );
281 :
282 0 : Reference< XQueriesSupplier > xSuppQueries( m_xConnection, UNO_QUERY_THROW );
283 0 : Reference< XNameAccess > xQueries( xSuppQueries->getQueries(), UNO_QUERY_THROW );
284 0 : if ( !m_pContainerListener.is() )
285 : {
286 0 : Reference< XContainer> xContainer(xQueries,UNO_QUERY_THROW);
287 0 : m_pContainerListener = new ::comphelper::OContainerListenerAdapter(this,xContainer);
288 : }
289 0 : Sequence< OUString > aQueryNames = xQueries->getElementNames();
290 :
291 0 : const OUString* pQuery = aQueryNames.getConstArray();
292 0 : const OUString* pQueryEnd = aQueryNames.getConstArray() + aQueryNames.getLength();
293 0 : while ( pQuery != pQueryEnd )
294 0 : m_rQueryList.InsertEntry( *pQuery++ );
295 : }
296 0 : catch( const Exception& )
297 : {
298 : DBG_UNHANDLED_EXCEPTION();
299 : }
300 0 : }
301 :
302 0 : OUString QueryListFacade::getSelectedName( OUString& _out_rAliasName ) const
303 : {
304 0 : OUString sSelected;
305 0 : SvTreeListEntry* pEntry = m_rQueryList.FirstSelected();
306 0 : if ( pEntry )
307 0 : sSelected = _out_rAliasName = m_rQueryList.GetEntryText( pEntry );
308 0 : return sSelected;
309 : }
310 :
311 0 : bool QueryListFacade::isLeafSelected() const
312 : {
313 0 : SvTreeListEntry* pEntry = m_rQueryList.FirstSelected();
314 0 : return pEntry && !m_rQueryList.GetModel()->HasChildren( pEntry );
315 : }
316 :
317 0 : OAddTableDlg::OAddTableDlg( Window* pParent, IAddTableDialogContext& _rContext )
318 : : ModelessDialog(pParent, "TablesJoinDialog", "dbaccess/ui/tablesjoindialog.ui")
319 0 : , m_rContext(_rContext)
320 : {
321 0 : get(m_pCaseTables, "tables");
322 0 : get(m_pCaseQueries, "queries");
323 :
324 0 : get(m_pTableList, "tablelist");
325 0 : get(m_pQueryList, "querylist");
326 0 : Size aSize(LogicToPixel(Size(106 , 122), MAP_APPFONT));
327 0 : m_pTableList->set_height_request(aSize.Height());
328 0 : m_pTableList->set_width_request(aSize.Width());
329 0 : get(m_pQueryList, "querylist");
330 0 : m_pQueryList->set_height_request(aSize.Height());
331 0 : m_pQueryList->set_width_request(aSize.Width());
332 :
333 0 : get(m_pAddButton, "add");
334 0 : get(m_pCloseButton, "close");
335 :
336 0 : m_pCaseTables->SetClickHdl( LINK( this, OAddTableDlg, OnTypeSelected ) );
337 0 : m_pCaseQueries->SetClickHdl( LINK( this, OAddTableDlg, OnTypeSelected ) );
338 0 : m_pAddButton->SetClickHdl( LINK( this, OAddTableDlg, AddClickHdl ) );
339 0 : m_pCloseButton->SetClickHdl( LINK( this, OAddTableDlg, CloseClickHdl ) );
340 0 : m_pTableList->SetDoubleClickHdl( LINK( this, OAddTableDlg, TableListDoubleClickHdl ) );
341 0 : m_pTableList->SetSelectHdl( LINK( this, OAddTableDlg, TableListSelectHdl ) );
342 0 : m_pQueryList->SetDoubleClickHdl( LINK( this, OAddTableDlg, TableListDoubleClickHdl ) );
343 0 : m_pQueryList->SetSelectHdl( LINK( this, OAddTableDlg, TableListSelectHdl ) );
344 :
345 0 : m_pTableList->EnableInplaceEditing( false );
346 0 : m_pTableList->SetStyle(m_pTableList->GetStyle() | WB_BORDER | WB_HASLINES |WB_HASBUTTONS | WB_HASBUTTONSATROOT | WB_HASLINESATROOT | WB_SORT | WB_HSCROLL );
347 0 : m_pTableList->EnableCheckButton( NULL ); // do not show any buttons
348 0 : m_pTableList->SetSelectionMode( SINGLE_SELECTION );
349 0 : m_pTableList->notifyHiContrastChanged();
350 0 : m_pTableList->suppressEmptyFolders();
351 :
352 0 : m_pQueryList->EnableInplaceEditing( false );
353 0 : m_pQueryList->SetSelectionMode( SINGLE_SELECTION );
354 :
355 0 : if ( !m_rContext.allowQueries() )
356 : {
357 0 : m_pCaseTables->Hide();
358 0 : m_pCaseQueries->Hide();
359 : }
360 :
361 0 : SetText( getDialogTitleForContext( m_rContext ) );
362 0 : }
363 :
364 0 : OAddTableDlg::~OAddTableDlg()
365 : {
366 0 : m_rContext.onWindowClosing( this );
367 0 : }
368 :
369 0 : void OAddTableDlg::impl_switchTo( ObjectList _eList )
370 : {
371 0 : switch ( _eList )
372 : {
373 : case Tables:
374 0 : m_pTableList->Show( true ); m_pCaseTables->Check( true );
375 0 : m_pQueryList->Show( false ); m_pCaseQueries->Check( false );
376 0 : m_xCurrentList.reset( new TableListFacade( *m_pTableList, m_rContext.getConnection() ) );
377 0 : m_pTableList->GrabFocus();
378 0 : break;
379 :
380 : case Queries:
381 0 : m_pTableList->Show( false ); m_pCaseTables->Check( false );
382 0 : m_pQueryList->Show( true ); m_pCaseQueries->Check( true );
383 0 : m_xCurrentList.reset( new QueryListFacade( *m_pQueryList, m_rContext.getConnection() ) );
384 0 : m_pQueryList->GrabFocus();
385 0 : break;
386 : }
387 0 : m_xCurrentList->updateTableObjectList( m_rContext.allowViews() );
388 0 : }
389 :
390 0 : void OAddTableDlg::Update()
391 : {
392 0 : if ( !m_xCurrentList.get() )
393 0 : impl_switchTo( Tables );
394 : else
395 0 : m_xCurrentList->updateTableObjectList( m_rContext.allowViews() );
396 0 : }
397 :
398 0 : void OAddTableDlg::impl_addTable()
399 : {
400 0 : if ( m_xCurrentList->isLeafSelected() )
401 : {
402 0 : OUString sSelectedName, sAliasName;
403 0 : sSelectedName = m_xCurrentList->getSelectedName( sAliasName );
404 :
405 0 : m_rContext.addTableWindow( sSelectedName, sAliasName );
406 : }
407 0 : }
408 :
409 0 : IMPL_LINK( OAddTableDlg, AddClickHdl, Button*, /*pButton*/ )
410 : {
411 0 : TableListDoubleClickHdl(NULL);
412 0 : return 0;
413 : }
414 :
415 0 : IMPL_LINK( OAddTableDlg, TableListDoubleClickHdl, void*, /*EMPTY_ARG*/ )
416 : {
417 0 : if ( impl_isAddAllowed() )
418 : {
419 0 : impl_addTable();
420 0 : if ( !impl_isAddAllowed() )
421 0 : Close();
422 0 : return 1L; // handled
423 : }
424 :
425 0 : return 0L; // not handled
426 : }
427 :
428 0 : IMPL_LINK( OAddTableDlg, TableListSelectHdl, void*, /*EMPTY_ARG*/ )
429 : {
430 0 : m_pAddButton->Enable( m_xCurrentList->isLeafSelected() );
431 0 : return 0;
432 : }
433 :
434 0 : IMPL_LINK( OAddTableDlg, CloseClickHdl, Button*, /*pButton*/ )
435 : {
436 0 : return int(Close());
437 : }
438 :
439 0 : IMPL_LINK( OAddTableDlg, OnTypeSelected, void*, /*EMPTY_ARG*/ )
440 : {
441 0 : if ( m_pCaseTables->IsChecked() )
442 0 : impl_switchTo( Tables );
443 : else
444 0 : impl_switchTo( Queries );
445 0 : return 0;
446 : }
447 :
448 0 : bool OAddTableDlg::Close()
449 : {
450 0 : m_rContext.onWindowClosing( this );
451 0 : return ModelessDialog::Close();
452 : }
453 :
454 0 : bool OAddTableDlg::impl_isAddAllowed()
455 : {
456 0 : return m_rContext.allowAddition();
457 : }
458 :
459 0 : OUString OAddTableDlg::getDialogTitleForContext( IAddTableDialogContext& _rContext )
460 : {
461 0 : OUString sTitle;
462 :
463 0 : if ( _rContext.allowQueries() )
464 0 : sTitle = ModuleRes( STR_ADD_TABLE_OR_QUERY );
465 : else
466 0 : sTitle = ModuleRes( STR_ADD_TABLES );
467 :
468 0 : return sTitle;
469 : }
470 :
471 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|