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 "querydlg.hxx"
21 : #include "dbu_qry.hrc"
22 : #include <tools/debug.hxx>
23 : #include <tools/diagnose_ex.h>
24 : #include "QTableConnectionData.hxx"
25 : #include "querycontroller.hxx"
26 : #include "QueryTableView.hxx"
27 : #include "QueryDesignView.hxx"
28 : #include <com/sun/star/sdbc/XDatabaseMetaData.hpp>
29 : #include "RelationControl.hxx"
30 : #include <vcl/msgbox.hxx>
31 : #include <vcl/settings.hxx>
32 :
33 : #define ID_INNER_JOIN 1
34 : #define ID_LEFT_JOIN 2
35 : #define ID_RIGHT_JOIN 3
36 : #define ID_FULL_JOIN 4
37 : #define ID_CROSS_JOIN 5
38 :
39 : using namespace dbaui;
40 : using namespace ::com::sun::star::uno;
41 : using namespace ::com::sun::star::container;
42 : using namespace ::com::sun::star::sdbc;
43 :
44 0 : DlgQryJoin::DlgQryJoin( OQueryTableView * pParent,
45 : const TTableConnectionData::value_type& _pData,
46 : OJoinTableView::OTableWindowMap* _pTableMap,
47 : const Reference< XConnection >& _xConnection,
48 : sal_Bool _bAllowTableSelect)
49 : : ModalDialog( pParent, "JoinDialog", "dbaccess/ui/joindialog.ui" )
50 : , m_pTableControl( NULL )
51 : , m_pTableMap(_pTableMap)
52 : , m_pTableView(pParent)
53 0 : , eJoinType(static_cast<OQueryTableConnectionData*>(_pData.get())->GetJoinType())
54 : , m_pOrigConnData(_pData)
55 0 : , m_xConnection(_xConnection)
56 : {
57 0 : get(m_pML_HelpText, "helptext");
58 0 : get(m_pLB_JoinType, "type");
59 0 : get(m_pCBNatural, "natural");
60 0 : get(m_pPB_OK, "ok");
61 :
62 0 : m_pML_HelpText->SetControlBackground( GetSettings().GetStyleSettings().GetFaceColor() );
63 : // Connection kopieren
64 0 : m_pConnData.reset(_pData->NewInstance());
65 0 : m_pConnData->CopyFrom(*_pData);
66 :
67 0 : m_pTableControl = new OTableListBoxControl(this, m_pTableMap, this);
68 :
69 0 : m_pCBNatural->Check(static_cast<OQueryTableConnectionData*>(m_pConnData.get())->isNatural());
70 :
71 0 : if( _bAllowTableSelect )
72 : {
73 0 : m_pTableControl->Init( m_pConnData );
74 0 : m_pTableControl->fillListBoxes();
75 : }
76 : else
77 : {
78 0 : m_pTableControl->fillAndDisable(m_pConnData);
79 0 : m_pTableControl->Init( m_pConnData );
80 : }
81 :
82 0 : m_pTableControl->lateUIInit();
83 :
84 0 : sal_Bool bSupportFullJoin = sal_False;
85 0 : Reference<XDatabaseMetaData> xMeta;
86 : try
87 : {
88 0 : xMeta = m_xConnection->getMetaData();
89 0 : if ( xMeta.is() )
90 0 : bSupportFullJoin = xMeta->supportsFullOuterJoins();
91 : }
92 0 : catch(SQLException&)
93 : {
94 : }
95 0 : sal_Bool bSupportOuterJoin = sal_False;
96 : try
97 : {
98 0 : if ( xMeta.is() )
99 0 : bSupportOuterJoin= xMeta->supportsOuterJoins();
100 : }
101 0 : catch(SQLException&)
102 : {
103 : }
104 :
105 0 : setJoinType(eJoinType);
106 :
107 0 : m_pPB_OK->SetClickHdl( LINK(this, DlgQryJoin, OKClickHdl) );
108 :
109 0 : m_pLB_JoinType->SetSelectHdl(LINK(this,DlgQryJoin,LBChangeHdl));
110 0 : m_pCBNatural->SetToggleHdl(LINK(this,DlgQryJoin,NaturalToggleHdl));
111 :
112 0 : if ( static_cast<OQueryTableView*>(pParent)->getDesignView()->getController().isReadOnly() )
113 : {
114 0 : m_pLB_JoinType->Disable();
115 0 : m_pCBNatural->Disable();
116 0 : m_pTableControl->Disable();
117 : }
118 : else
119 : {
120 0 : const sal_uInt16 nCount = m_pLB_JoinType->GetEntryCount();
121 0 : for (sal_uInt16 i = 0; i < nCount; ++i)
122 : {
123 0 : const sal_IntPtr nJoinTyp = reinterpret_cast<sal_IntPtr>(m_pLB_JoinType->GetEntryData(i));
124 0 : if ( !bSupportFullJoin && nJoinTyp == ID_FULL_JOIN )
125 0 : m_pLB_JoinType->RemoveEntry(i);
126 0 : else if ( !bSupportOuterJoin && (nJoinTyp == ID_LEFT_JOIN || nJoinTyp == ID_RIGHT_JOIN) )
127 0 : m_pLB_JoinType->RemoveEntry(i);
128 : }
129 :
130 0 : m_pTableControl->NotifyCellChange();
131 0 : m_pTableControl->enableRelation(!static_cast<OQueryTableConnectionData*>(m_pConnData.get())->isNatural() && eJoinType != CROSS_JOIN );
132 0 : }
133 0 : }
134 :
135 0 : DlgQryJoin::~DlgQryJoin()
136 : {
137 0 : delete m_pTableControl;
138 0 : }
139 :
140 0 : IMPL_LINK( DlgQryJoin, LBChangeHdl, ListBox*, /*pListBox*/ )
141 : {
142 0 : if (m_pLB_JoinType->GetSelectEntryPos() == m_pLB_JoinType->GetSavedValue() )
143 0 : return 1;
144 :
145 0 : m_pLB_JoinType->SaveValue();
146 0 : m_pML_HelpText->SetText(OUString());
147 :
148 0 : m_pTableControl->enableRelation(true);
149 :
150 0 : OUString sFirstWinName = m_pConnData->getReferencingTable()->GetWinName();
151 0 : OUString sSecondWinName = m_pConnData->getReferencedTable()->GetWinName();
152 0 : const EJoinType eOldJoinType = eJoinType;
153 0 : sal_uInt16 nResId = 0;
154 0 : const sal_uInt16 nPos = m_pLB_JoinType->GetSelectEntryPos();
155 0 : const sal_IntPtr nJoinType = reinterpret_cast<sal_IntPtr>(m_pLB_JoinType->GetEntryData(nPos));
156 0 : sal_Bool bAddHint = sal_True;
157 0 : switch ( nJoinType )
158 : {
159 : default:
160 : case ID_INNER_JOIN:
161 0 : nResId = STR_QUERY_INNER_JOIN;
162 0 : bAddHint = sal_False;
163 0 : eJoinType = INNER_JOIN;
164 0 : break;
165 : case ID_LEFT_JOIN:
166 0 : nResId = STR_QUERY_LEFTRIGHT_JOIN;
167 0 : eJoinType = LEFT_JOIN;
168 0 : break;
169 : case ID_RIGHT_JOIN:
170 : {
171 0 : nResId = STR_QUERY_LEFTRIGHT_JOIN;
172 0 : eJoinType = RIGHT_JOIN;
173 0 : OUString sTemp = sFirstWinName;
174 0 : sFirstWinName = sSecondWinName;
175 0 : sSecondWinName = sTemp;
176 : }
177 0 : break;
178 : case ID_FULL_JOIN:
179 0 : nResId = STR_QUERY_FULL_JOIN;
180 0 : eJoinType = FULL_JOIN;
181 0 : break;
182 : case ID_CROSS_JOIN:
183 : {
184 0 : nResId = STR_QUERY_CROSS_JOIN;
185 0 : eJoinType = CROSS_JOIN;
186 :
187 0 : m_pConnData->ResetConnLines();
188 0 : m_pTableControl->lateInit();
189 0 : m_pCBNatural->Check(false);
190 0 : m_pTableControl->enableRelation(false);
191 0 : OUString sEmpty;
192 0 : m_pConnData->AppendConnLine(sEmpty,sEmpty);
193 0 : m_pPB_OK->Enable(true);
194 : }
195 0 : break;
196 : }
197 :
198 0 : m_pCBNatural->Enable(eJoinType != CROSS_JOIN);
199 :
200 0 : if ( eJoinType != eOldJoinType && eOldJoinType == CROSS_JOIN )
201 : {
202 0 : m_pConnData->ResetConnLines();
203 : }
204 0 : if ( eJoinType != CROSS_JOIN )
205 : {
206 0 : m_pTableControl->NotifyCellChange();
207 0 : NaturalToggleHdl(m_pCBNatural);
208 : }
209 :
210 0 : m_pTableControl->Invalidate();
211 :
212 0 : OUString sHelpText = ModuleRes( nResId );
213 0 : if( nPos )
214 : {
215 0 : sHelpText = sHelpText.replaceFirst( "%1", sFirstWinName );
216 0 : sHelpText = sHelpText.replaceFirst( "%2", sSecondWinName );
217 : }
218 0 : if ( bAddHint )
219 : {
220 0 : sHelpText += "\n";
221 0 : sHelpText += ModuleRes( STR_JOIN_TYPE_HINT );
222 : }
223 :
224 0 : m_pML_HelpText->SetText( sHelpText );
225 0 : return 1;
226 : }
227 :
228 0 : IMPL_LINK( DlgQryJoin, OKClickHdl, Button*, /*pButton*/ )
229 : {
230 :
231 0 : m_pConnData->Update();
232 0 : m_pOrigConnData->CopyFrom( *m_pConnData );
233 :
234 0 : EndDialog(RET_OK);
235 0 : return 1;
236 : }
237 :
238 0 : IMPL_LINK( DlgQryJoin, NaturalToggleHdl, CheckBox*, /*pButton*/ )
239 : {
240 0 : sal_Bool bChecked = m_pCBNatural->IsChecked();
241 0 : static_cast<OQueryTableConnectionData*>(m_pConnData.get())->setNatural(bChecked);
242 0 : m_pTableControl->enableRelation(!bChecked);
243 0 : if ( bChecked )
244 : {
245 0 : m_pConnData->ResetConnLines();
246 : try
247 : {
248 0 : Reference<XNameAccess> xReferencedTableColumns(m_pConnData->getReferencedTable()->getColumns());
249 0 : Sequence< OUString> aSeq = m_pConnData->getReferencingTable()->getColumns()->getElementNames();
250 0 : const OUString* pIter = aSeq.getConstArray();
251 0 : const OUString* pEnd = pIter + aSeq.getLength();
252 0 : for(;pIter != pEnd;++pIter)
253 : {
254 0 : if ( xReferencedTableColumns->hasByName(*pIter) )
255 0 : m_pConnData->AppendConnLine(*pIter,*pIter);
256 0 : }
257 : }
258 0 : catch( const Exception& )
259 : {
260 : DBG_UNHANDLED_EXCEPTION();
261 : }
262 0 : m_pTableControl->NotifyCellChange();
263 0 : m_pTableControl->Invalidate();
264 : }
265 :
266 0 : return 1;
267 : }
268 :
269 0 : TTableConnectionData::value_type DlgQryJoin::getConnectionData() const
270 : {
271 0 : return m_pConnData;
272 : }
273 :
274 0 : void DlgQryJoin::setValid(sal_Bool _bValid)
275 : {
276 0 : m_pPB_OK->Enable(_bValid || eJoinType == CROSS_JOIN );
277 0 : }
278 :
279 0 : void DlgQryJoin::notifyConnectionChange( )
280 : {
281 0 : setJoinType( static_cast<OQueryTableConnectionData*>(m_pConnData.get())->GetJoinType() );
282 0 : m_pCBNatural->Check(static_cast<OQueryTableConnectionData*>(m_pConnData.get())->isNatural());
283 0 : NaturalToggleHdl(m_pCBNatural);
284 0 : }
285 :
286 0 : void DlgQryJoin::setJoinType(EJoinType _eNewJoinType)
287 : {
288 0 : eJoinType = _eNewJoinType;
289 0 : m_pCBNatural->Enable(eJoinType != CROSS_JOIN);
290 :
291 0 : sal_IntPtr nJoinType = 0;
292 0 : switch ( eJoinType )
293 : {
294 : default:
295 : case INNER_JOIN:
296 0 : nJoinType = ID_INNER_JOIN;
297 0 : break;
298 : case LEFT_JOIN:
299 0 : nJoinType = ID_LEFT_JOIN;
300 0 : break;
301 : case RIGHT_JOIN:
302 0 : nJoinType = ID_RIGHT_JOIN;
303 0 : break;
304 : case FULL_JOIN:
305 0 : nJoinType = ID_FULL_JOIN;
306 0 : break;
307 : case CROSS_JOIN:
308 0 : nJoinType = ID_CROSS_JOIN;
309 0 : break;
310 : }
311 :
312 0 : const sal_uInt16 nCount = m_pLB_JoinType->GetEntryCount();
313 0 : for (sal_uInt16 i = 0; i < nCount; ++i)
314 : {
315 0 : if ( nJoinType == reinterpret_cast<sal_IntPtr>(m_pLB_JoinType->GetEntryData(i)) )
316 : {
317 0 : m_pLB_JoinType->SelectEntryPos(i);
318 0 : break;
319 : }
320 : }
321 :
322 0 : LBChangeHdl(m_pLB_JoinType);
323 0 : }
324 :
325 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|