1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
|
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: dbinteraction.cxx,v $
*
* $Revision: 1.15 $
*
* last change: $Author: obo $ $Date: 2006-09-17 07:34:07 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_dbaccess.hxx"
#ifndef _DBAUI_INTERACTION_HXX_
#include "dbinteraction.hxx"
#endif
#ifndef _DBU_REGHELPER_HXX_
#include "dbu_reghelper.hxx"
#endif
#ifndef _TOOLS_DEBUG_HXX
#include <tools/debug.hxx>
#endif
#ifndef _SV_MSGBOX_HXX
#include <vcl/msgbox.hxx>
#endif
#ifndef _DBHELPER_DBEXCEPTION_HXX_
#include <connectivity/dbexception.hxx>
#endif
#ifndef _DBAUI_SQLMESSAGE_HXX_
#include "sqlmessage.hxx"
#endif
#ifndef _COM_SUN_STAR_TASK_XINTERACTIONAPPROVE_HPP_
#include <com/sun/star/task/XInteractionApprove.hpp>
#endif
#ifndef _COM_SUN_STAR_TASK_XINTERACTIONDISAPPROVE_HPP_
#include <com/sun/star/task/XInteractionDisapprove.hpp>
#endif
#ifndef _COM_SUN_STAR_TASK_XINTERACTIONRETRY_HPP_
#include <com/sun/star/task/XInteractionRetry.hpp>
#endif
#ifndef _COM_SUN_STAR_TASK_XINTERACTIONABORT_HPP_
#include <com/sun/star/task/XInteractionAbort.hpp>
#endif
#ifndef _COM_SUN_STAR_UCB_XINTERACTIONSUPPLYAUTHENTICATION_HPP_
#include <com/sun/star/ucb/XInteractionSupplyAuthentication.hpp>
#endif
#ifndef _COM_SUN_STAR_SDB_XINTERACTIONSUPPLYPARAMETERS_HPP_
#include <com/sun/star/sdb/XInteractionSupplyParameters.hpp>
#endif
#ifndef _COM_SUN_STAR_SDB_XINTERACTIONDOCUMENTSAVE_HPP_
#include <com/sun/star/sdb/XInteractionDocumentSave.hpp>
#endif
#ifndef _SVTOOLS_LOGINDLG_HXX_
#include <svtools/logindlg.hxx>
#endif
#ifndef SFX_QUERYSAVEDOCUMENT_HXX
#include <sfx2/QuerySaveDocument.hxx>
#endif
#ifndef _DBU_UNO_HRC_
#include "dbu_uno.hrc"
#endif
#ifndef _DBAUI_PARAMDIALOG_HXX_
#include "paramdialog.hxx"
#endif
#ifndef _SV_SVAPP_HXX
#include <vcl/svapp.hxx>
#endif
#ifndef _VOS_MUTEX_HXX_
#include <vos/mutex.hxx>
#endif
#ifndef DBAUI_COLLECTIONVIEW_HXX
#include "CollectionView.hxx"
#endif
#ifndef DBAUI_TOOLS_HXX
#include "UITools.hxx"
#endif
//==========================================================================
extern "C" void SAL_CALL createRegistryInfo_OInteractionHandler()
{
static ::dbaui::OMultiInstanceAutoRegistration< ::dbaui::OInteractionHandler > aOInteractionHandler_AutoRegistration;
}
//.........................................................................
namespace dbaui
{
//.........................................................................
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::ucb;
using namespace ::com::sun::star::sdb;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::task;
using namespace ::com::sun::star::beans;
using namespace ::dbtools;
//=========================================================================
//= OInteractionHandler
//=========================================================================
//-------------------------------------------------------------------------
OInteractionHandler::OInteractionHandler(const Reference< XMultiServiceFactory >& _rxORB)
:m_xORB(_rxORB)
{
}
//-------------------------------------------------------------------------
IMPLEMENT_SERVICE_INFO1_STATIC(OInteractionHandler, "com.sun.star.comp.dbu.OInteractionHandler", "com.sun.star.sdb.InteractionHandler");
//-------------------------------------------------------------------------
void SAL_CALL OInteractionHandler::handle(const Reference< XInteractionRequest >& _rxRequest) throw(RuntimeException)
{
Any aRequest;
if (_rxRequest.is())
{
try { aRequest = _rxRequest->getRequest(); }
catch(RuntimeException&) { }
}
DBG_ASSERT(aRequest.hasValue(), "OInteractionHandler::handle: invalid request!");
if (!aRequest.hasValue())
// no request -> no handling
return;
Sequence< Reference< XInteractionContinuation > > aContinuations;
try { aContinuations = _rxRequest->getContinuations(); }
catch(RuntimeException&) { }
// try to extract an SQLException (or one of it's derived members
SQLExceptionInfo aInfo(aRequest);
if (aInfo.isValid())
{
implHandle(aInfo, aContinuations);
return;
}
AuthenticationRequest aAuthentRequest;
if (aRequest >>= aAuthentRequest)
{ // it's an authentification request
implHandle(aAuthentRequest, aContinuations);
return;
}
ParametersRequest aParamRequest;
if (aRequest >>= aParamRequest)
{ // it's an authentification request
implHandle(aParamRequest, aContinuations);
return;
}
DocumentSaveRequest aDocuRequest;
if (aRequest >>= aDocuRequest)
{ // it's an document request
implHandle(aDocuRequest, aContinuations);
return;
}
OSL_VERIFY( implHandleUnknown( _rxRequest ) );
}
//-------------------------------------------------------------------------
void OInteractionHandler::implHandle(const ParametersRequest& _rParamRequest, const Sequence< Reference< XInteractionContinuation > >& _rContinuations)
{
::vos::OGuard aGuard(Application::GetSolarMutex());
// want to open a dialog ....
sal_Int32 nAbortPos = getContinuation(ABORT, _rContinuations);
sal_Int32 nParamPos = getContinuation(SUPPLY_PARAMETERS, _rContinuations);
Reference< XInteractionSupplyParameters > xParamCallback;
if (-1 != nParamPos)
xParamCallback = Reference< XInteractionSupplyParameters >(_rContinuations[nParamPos], UNO_QUERY);
DBG_ASSERT(xParamCallback.is(), "OInteractionHandler::implHandle(ParametersRequest): can't set the parameters without an appropriate interaction handler!s");
// determine the style of the dialog, dependent on the present continuation types
WinBits nDialogStyle = WB_OK | WB_DEF_OK;
if (-1 != nAbortPos)
nDialogStyle = WB_OK_CANCEL;
OParameterDialog aDlg(NULL, _rParamRequest.Parameters, _rParamRequest.Connection, m_xORB);
sal_Int16 nResult = aDlg.Execute();
try
{
switch (nResult)
{
case RET_OK:
if (xParamCallback.is())
{
xParamCallback->setParameters(aDlg.getValues());
xParamCallback->select();
}
break;
default:
if (-1 != nAbortPos)
_rContinuations[nAbortPos]->select();
break;
}
}
catch(RuntimeException&)
{
DBG_ERROR("OInteractionHandler::implHandle(ParametersRequest): caught a RuntimeException while calling the continuation callback!");
}
}
//-------------------------------------------------------------------------
void OInteractionHandler::implHandle(const AuthenticationRequest& _rAuthRequest, const Sequence< Reference< XInteractionContinuation > >& _rContinuations)
{
::vos::OGuard aGuard(Application::GetSolarMutex());
// want to open a dialog ....
// search the continuations we can handle
sal_Int32 nAbortPos = getContinuation(ABORT, _rContinuations);
sal_Int32 nRetryPos = getContinuation(RETRY, _rContinuations);
sal_Int32 nAuthentPos = getContinuation(SUPPLY_AUTHENTICATION, _rContinuations);
// we strongly need an XInteractionSupplyAuthentication (else we can't return the input given by the user)
Reference< XInteractionSupplyAuthentication > xSuppAuthent;
if (-1 != nAuthentPos)
xSuppAuthent = Reference< XInteractionSupplyAuthentication >(_rContinuations[nAuthentPos], UNO_QUERY);
DBG_ASSERT(xSuppAuthent.is(), "OInteractionHandler::implHandle: need an XInteractionSupplyAuthentication to return the results!");
// check which "remember password" modes are allowed
sal_Bool bRemember(sal_False);
sal_Bool bRememberPersistent(sal_False);
if (xSuppAuthent.is())
{
RememberAuthentication eDefault;
Sequence< RememberAuthentication > aModes(xSuppAuthent->getRememberPasswordModes(eDefault));
const RememberAuthentication* pModes = aModes.getConstArray();
bRemember = eDefault != RememberAuthentication_NO;
for (sal_Int32 i=0; i<aModes.getLength(); ++i, ++pModes)
if (*pModes == RememberAuthentication_PERSISTENT)
{
bRememberPersistent = sal_True;
break;
}
}
// extract some infor from the authentication request
// use the account as realm
String sRealm;
if (_rAuthRequest.HasRealm)
sRealm = _rAuthRequest.Realm.getStr();
// determine the flags for
sal_uInt16 nFlags = 0;
nFlags |= LF_NO_PATH; // the AuthenticationRequest does not support a path
if (0 == _rAuthRequest.Diagnostic.getLength())
nFlags |= LF_NO_ERRORTEXT;
if (!_rAuthRequest.HasAccount)
nFlags |= LF_NO_ACCOUNT;
if (!_rAuthRequest.HasUserName || !xSuppAuthent.is() || !xSuppAuthent->canSetUserName())
nFlags |= LF_USERNAME_READONLY;
// create the dialog
::rtl::OUString sName = _rAuthRequest.ServerName;
sName = ::dbaui::getStrippedDatabaseName(NULL,sName);
::svt::LoginDialog aLogin(NULL, nFlags, sName, sRealm.Len() ? &sRealm : NULL);
// initialize it
aLogin.SetErrorText(_rAuthRequest.Diagnostic.getStr());
aLogin.SetName(_rAuthRequest.UserName);
if (_rAuthRequest.HasAccount)
aLogin.ClearAccount();
else
aLogin.ClearPassword();
aLogin.SetPassword(_rAuthRequest.Password.getStr());
aLogin.SetSavePassword(bRemember);
aLogin.SetSavePasswordText(ModuleRes(bRememberPersistent ? STR_REMEMBERPASSWORD_PERSISTENT : STR_REMEMBERPASSWORD_SESSION));
String sLoginRequest(ModuleRes(STR_ENTER_CONNECTION_PASSWORD));
if (sName.getLength())
sLoginRequest.SearchAndReplaceAscii("$name$", sName.getStr());
else
{
sLoginRequest.SearchAndReplaceAscii("\"$name$\"", String());
sLoginRequest.SearchAndReplaceAscii("$name$", String()); // just to be sure that in other languages the string will be deleted
}
aLogin.SetLoginRequestText(sLoginRequest);
// execute
sal_Int32 nResult = aLogin.Execute();
// dispatch the result
try
{
switch (nResult)
{
case RET_OK:
if (xSuppAuthent.is())
{
xSuppAuthent->setUserName(aLogin.GetName());
xSuppAuthent->setPassword(aLogin.GetPassword());
xSuppAuthent->setRememberPassword(
aLogin.IsSavePassword()
?
bRememberPersistent
? RememberAuthentication_PERSISTENT
: RememberAuthentication_SESSION
: RememberAuthentication_NO);
if (_rAuthRequest.HasAccount)
xSuppAuthent->setAccount(aLogin.GetAccount());
xSuppAuthent->select();
}
break;
case RET_RETRY:
if (-1 != nRetryPos)
_rContinuations[nRetryPos]->select();
break;
default:
if (-1 != nAbortPos)
_rContinuations[nAbortPos]->select();
break;
}
}
catch(Exception&)
{
DBG_ERROR("OInteractionHandler::implHandle(AuthenticationRequest): error while calling back into the InteractionContinuation!");
}
}
//-------------------------------------------------------------------------
void OInteractionHandler::implHandle(const SQLExceptionInfo& _rSqlInfo, const Sequence< Reference< XInteractionContinuation > >& _rContinuations)
{
::vos::OGuard aGuard(Application::GetSolarMutex());
// want to open a dialog ....
sal_Int32 nApprovePos = getContinuation(APPROVE, _rContinuations);
sal_Int32 nAbortPos = getContinuation(ABORT, _rContinuations);
sal_Int32 nRetryPos = getContinuation(RETRY, _rContinuations);
#ifdef DBG_UTIL
sal_Int32 nDisapprovePos = getContinuation(DISAPPROVE, _rContinuations);
sal_Int32 nAuthentPos = getContinuation(SUPPLY_AUTHENTICATION, _rContinuations);
DBG_ASSERT((-1 == nDisapprovePos) && (-1 == nAuthentPos), "OInteractionHandler::implHandle(SQLExceptionInfo): unsupported continuation type!");
// "Retry" and "Authenticate" do not make sense if the request refered to an SQLException
#endif
// determine the style of the dialog, dependent on the present continuation types
WinBits nDialogStyle = WB_OK | WB_DEF_OK;
if (-1 != nAbortPos)
nDialogStyle = WB_OK_CANCEL;
if (-1 != nRetryPos)
nDialogStyle |= WB_RETRY_CANCEL | WB_DEF_RETRY;
// excute the dialog
OSQLMessageBox aDialog(NULL, _rSqlInfo, nDialogStyle);
// TODO: need a way to specify the parent window
sal_Int16 nResult = aDialog.Execute();
try
{
switch (nResult)
{
case RET_OK:
if (-1 != nApprovePos)
_rContinuations[nApprovePos]->select();
break;
case RET_CANCEL:
if (-1 != nAbortPos)
_rContinuations[nAbortPos]->select();
break;
case RET_RETRY:
if (-1 != nRetryPos)
_rContinuations[nRetryPos]->select();
break;
}
}
catch(RuntimeException&)
{
DBG_ERROR("OInteractionHandler::implHandle(SQLExceptionInfo): caught a RuntimeException while calling the continuation callback!");
}
}
//-------------------------------------------------------------------------
void OInteractionHandler::implHandle(const DocumentSaveRequest& _rDocuRequest, const Sequence< Reference< XInteractionContinuation > >& _rContinuations)
{
::vos::OGuard aGuard(Application::GetSolarMutex());
// want to open a dialog ....
sal_Int32 nApprovePos = getContinuation(APPROVE, _rContinuations);
sal_Int32 nDisApprovePos = getContinuation(DISAPPROVE, _rContinuations);
sal_Int32 nAbortPos = getContinuation(ABORT, _rContinuations);
short nRet = RET_YES;
if ( -1 != nApprovePos )
{
// fragen, ob gespeichert werden soll
nRet = ExecuteQuerySaveDocument(NULL,_rDocuRequest.Name);
}
if ( RET_CANCEL == nRet )
{
if (-1 != nAbortPos)
_rContinuations[nAbortPos]->select();
return;
}
else if ( RET_YES == nRet )
{
sal_Int32 nDocuPos = getContinuation(SUPPLY_DOCUMENTSAVE, _rContinuations);
if (-1 != nDocuPos)
{
Reference< XInteractionDocumentSave > xCallback(_rContinuations[nDocuPos], UNO_QUERY);
DBG_ASSERT(xCallback.is(), "OInteractionHandler::implHandle(DocumentSaveRequest): can't save document without an appropriate interaction handler!s");
// determine the style of the dialog, dependent on the present continuation types
WinBits nDialogStyle = WB_OK | WB_DEF_OK;
if (-1 != nAbortPos)
nDialogStyle = WB_OK_CANCEL;
OCollectionView aDlg(NULL,_rDocuRequest.Content,_rDocuRequest.Name,m_xORB);
sal_Int16 nResult = aDlg.Execute();
try
{
switch (nResult)
{
case RET_OK:
if (xCallback.is())
{
xCallback->setName(aDlg.getName(),aDlg.getSelectedFolder());
xCallback->select();
}
break;
default:
if (-1 != nAbortPos)
_rContinuations[nAbortPos]->select();
break;
}
}
catch(RuntimeException&)
{
DBG_ERROR("OInteractionHandler::implHandle(DocumentSaveRequest): caught a RuntimeException while calling the continuation callback!");
}
}
else if ( -1 != nApprovePos )
_rContinuations[nApprovePos]->select();
}
else if ( -1 != nDisApprovePos )
_rContinuations[nDisApprovePos]->select();
}
//-------------------------------------------------------------------------
bool OInteractionHandler::implHandleUnknown( const Reference< XInteractionRequest >& _rxRequest )
{
Reference< XInteractionHandler > xFallbackHandler;
if ( m_xORB.is() )
xFallbackHandler = xFallbackHandler.query( m_xORB->createInstance( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.task.InteractionHandler" ) ) ) );
if ( xFallbackHandler.is() )
{
xFallbackHandler->handle( _rxRequest );
return true;
}
return false;
}
//-------------------------------------------------------------------------
sal_Int32 OInteractionHandler::getContinuation(Continuation _eCont, const Sequence< Reference< XInteractionContinuation > >& _rContinuations)
{
const Reference< XInteractionContinuation >* pContinuations = _rContinuations.getConstArray();
for (sal_Int32 i=0; i<_rContinuations.getLength(); ++i, ++pContinuations)
{
switch (_eCont)
{
case APPROVE:
if (Reference< XInteractionApprove >(*pContinuations, UNO_QUERY).is())
return i;
break;
case DISAPPROVE:
if (Reference< XInteractionDisapprove >(*pContinuations, UNO_QUERY).is())
return i;
break;
case RETRY:
if (Reference< XInteractionRetry >(*pContinuations, UNO_QUERY).is())
return i;
break;
case ABORT:
if (Reference< XInteractionAbort >(*pContinuations, UNO_QUERY).is())
return i;
break;
case SUPPLY_AUTHENTICATION:
if (Reference< XInteractionSupplyAuthentication >(*pContinuations, UNO_QUERY).is())
return i;
break;
case SUPPLY_PARAMETERS:
if (Reference< XInteractionSupplyParameters >(*pContinuations, UNO_QUERY).is())
return i;
break;
case SUPPLY_DOCUMENTSAVE:
if (Reference< XInteractionDocumentSave >(*pContinuations, UNO_QUERY).is())
return i;
break;
}
}
return -1;
}
//.........................................................................
} // namespace dbaui
//.........................................................................
|