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 <com/sun/star/beans/PropertyValue.hpp>
21 :
22 : #include <com/sun/star/util/URL.hpp>
23 :
24 : #include <com/sun/star/frame/Desktop.hpp>
25 : #include <com/sun/star/util/URLTransformer.hpp>
26 : #include <com/sun/star/util/XURLTransformer.hpp>
27 : #include <tools/urlobj.hxx>
28 : #include <tools/diagnose_ex.h>
29 : #include <svl/macitem.hxx>
30 : #include <sfx2/objsh.hxx>
31 : #include <sfx2/sfxbasemodel.hxx>
32 : #include <sfx2/evntconf.hxx>
33 : #include <unotools/eventcfg.hxx>
34 :
35 : #include <unotools/securityoptions.hxx>
36 : #include <comphelper/processfactory.hxx>
37 : #include <comphelper/namedvaluecollection.hxx>
38 : #include "eventsupplier.hxx"
39 :
40 : #include <sfx2/app.hxx>
41 : #include <sfx2/sfxresid.hxx>
42 :
43 : #include <sfx2/sfxsids.hrc>
44 : #include "sfxlocal.hrc"
45 : #include <sfx2/docfile.hxx>
46 : #include <sfx2/viewfrm.hxx>
47 : #include <sfx2/frame.hxx>
48 : #include <macroloader.hxx>
49 :
50 :
51 :
52 : #define MACRO_PRFIX "macro://"
53 : #define MACRO_POSTFIX "()"
54 :
55 : using namespace css;
56 :
57 :
58 : // --- XNameReplace ---
59 :
60 24 : void SAL_CALL SfxEvents_Impl::replaceByName( const OUString & aName, const uno::Any & rElement )
61 : throw( lang::IllegalArgumentException, container::NoSuchElementException,
62 : lang::WrappedTargetException, uno::RuntimeException, std::exception )
63 : {
64 24 : ::osl::MutexGuard aGuard( maMutex );
65 :
66 : // find the event in the list and replace the data
67 24 : long nCount = maEventNames.getLength();
68 361 : for ( long i=0; i<nCount; i++ )
69 : {
70 361 : if ( maEventNames[i] == aName )
71 : {
72 : // check for correct type of the element
73 24 : if ( !::comphelper::NamedValueCollection::canExtractFrom( rElement ) )
74 0 : throw lang::IllegalArgumentException();
75 24 : ::comphelper::NamedValueCollection const aEventDescriptor( rElement );
76 :
77 : // create Configuration at first, creation might call this method also and that would overwrite everything
78 : // we might have stored before!
79 24 : if ( mpObjShell && !mpObjShell->IsLoading() )
80 1 : mpObjShell->SetModified( true );
81 :
82 48 : ::comphelper::NamedValueCollection aNormalizedDescriptor;
83 24 : NormalizeMacro( aEventDescriptor, aNormalizedDescriptor, mpObjShell );
84 :
85 48 : OUString sType;
86 48 : if ( ( aNormalizedDescriptor.size() == 1 )
87 23 : && !aNormalizedDescriptor.has( PROP_EVENT_TYPE ) //TODO
88 0 : && ( aNormalizedDescriptor.get( PROP_EVENT_TYPE ) >>= sType )
89 24 : && ( sType.isEmpty() )
90 : )
91 : {
92 : // An empty event type means no binding. Therefore reset data
93 : // to reflect that state.
94 : // (that's for compatibility only. Nowadays, the Tools/Customize dialog should
95 : // set an empty sequence to indicate the request for resetting the assignment.)
96 : OSL_ENSURE( false, "legacy event assignment format detected" );
97 0 : aNormalizedDescriptor.clear();
98 : }
99 :
100 24 : if ( !aNormalizedDescriptor.empty() )
101 : {
102 24 : maEventData[i] <<= aNormalizedDescriptor.getPropertyValues();
103 : }
104 : else
105 : {
106 0 : maEventData[i].clear();
107 : }
108 72 : return;
109 : }
110 : }
111 :
112 24 : throw container::NoSuchElementException();
113 : }
114 :
115 :
116 : // --- XNameAccess ---
117 :
118 3770 : uno::Any SAL_CALL SfxEvents_Impl::getByName( const OUString& aName )
119 : throw( container::NoSuchElementException, lang::WrappedTargetException,
120 : uno::RuntimeException, std::exception )
121 : {
122 3770 : ::osl::MutexGuard aGuard( maMutex );
123 :
124 : // find the event in the list and return the data
125 :
126 3770 : long nCount = maEventNames.getLength();
127 :
128 61999 : for ( long i=0; i<nCount; i++ )
129 : {
130 61999 : if ( maEventNames[i] == aName )
131 7540 : return maEventData[i];
132 : }
133 :
134 3770 : throw container::NoSuchElementException();
135 : }
136 :
137 :
138 118 : uno::Sequence< OUString > SAL_CALL SfxEvents_Impl::getElementNames() throw ( uno::RuntimeException, std::exception )
139 : {
140 118 : return maEventNames;
141 : }
142 :
143 :
144 23 : sal_Bool SAL_CALL SfxEvents_Impl::hasByName( const OUString& aName ) throw ( uno::RuntimeException, std::exception )
145 : {
146 23 : ::osl::MutexGuard aGuard( maMutex );
147 :
148 : // find the event in the list and return the data
149 :
150 23 : long nCount = maEventNames.getLength();
151 :
152 340 : for ( long i=0; i<nCount; i++ )
153 : {
154 340 : if ( maEventNames[i] == aName )
155 23 : return sal_True;
156 : }
157 :
158 0 : return sal_False;
159 : }
160 :
161 :
162 : // --- XElementAccess ( parent of XNameAccess ) ---
163 :
164 0 : uno::Type SAL_CALL SfxEvents_Impl::getElementType() throw ( uno::RuntimeException, std::exception )
165 : {
166 0 : uno::Type aElementType = cppu::UnoType<uno::Sequence < beans::PropertyValue >>::get();
167 0 : return aElementType;
168 : }
169 :
170 :
171 0 : sal_Bool SAL_CALL SfxEvents_Impl::hasElements() throw ( uno::RuntimeException, std::exception )
172 : {
173 0 : ::osl::MutexGuard aGuard( maMutex );
174 :
175 0 : if ( maEventNames.getLength() )
176 0 : return sal_True;
177 : else
178 0 : return sal_False;
179 : }
180 :
181 46397 : void SfxEvents_Impl::Execute( uno::Any& aEventData, const document::DocumentEvent& aTrigger, SfxObjectShell* pDoc )
182 : {
183 46397 : uno::Sequence < beans::PropertyValue > aProperties;
184 46397 : if ( aEventData >>= aProperties )
185 : {
186 39787 : OUString aType;
187 79574 : OUString aScript;
188 79574 : OUString aLibrary;
189 79574 : OUString aMacroName;
190 :
191 39787 : sal_Int32 nCount = aProperties.getLength();
192 :
193 39787 : if ( !nCount )
194 46397 : return;
195 :
196 39787 : sal_Int32 nIndex = 0;
197 159142 : while ( nIndex < nCount )
198 : {
199 79568 : if ( aProperties[ nIndex ].Name == PROP_EVENT_TYPE )
200 39787 : aProperties[ nIndex ].Value >>= aType;
201 39781 : else if ( aProperties[ nIndex ].Name == PROP_SCRIPT )
202 39781 : aProperties[ nIndex ].Value >>= aScript;
203 0 : else if ( aProperties[ nIndex ].Name == PROP_LIBRARY )
204 0 : aProperties[ nIndex ].Value >>= aLibrary;
205 0 : else if ( aProperties[ nIndex ].Name == PROP_MACRO_NAME )
206 0 : aProperties[ nIndex ].Value >>= aMacroName;
207 : else {
208 : OSL_FAIL("Unknown property value!");
209 : }
210 79568 : nIndex += 1;
211 : }
212 :
213 39787 : if (aType == STAR_BASIC && !aScript.isEmpty())
214 : {
215 0 : uno::Any aAny;
216 0 : SfxMacroLoader::loadMacro( aScript, aAny, pDoc );
217 : }
218 79574 : else if (aType == "Service" ||
219 39787 : aType == "Script")
220 : {
221 39787 : if ( !aScript.isEmpty() )
222 : {
223 : SfxViewFrame* pView = pDoc ?
224 : SfxViewFrame::GetFirst( pDoc ) :
225 1 : SfxViewFrame::Current();
226 :
227 1 : uno::Reference < util::XURLTransformer > xTrans( util::URLTransformer::create( ::comphelper::getProcessComponentContext() ) );
228 :
229 2 : util::URL aURL;
230 1 : aURL.Complete = aScript;
231 1 : xTrans->parseStrict( aURL );
232 :
233 : uno::Reference
234 2 : < frame::XDispatchProvider > xProv;
235 :
236 1 : if ( pView != NULL )
237 : {
238 2 : xProv = uno::Reference
239 : < frame::XDispatchProvider > (
240 2 : pView->GetFrame().GetFrameInterface(), uno::UNO_QUERY );
241 : }
242 : else
243 : {
244 0 : xProv = uno::Reference< frame::XDispatchProvider > (
245 : frame::Desktop::create( ::comphelper::getProcessComponentContext() ),
246 0 : uno::UNO_QUERY );
247 : }
248 :
249 2 : uno::Reference < frame::XDispatch > xDisp;
250 1 : if ( xProv.is() )
251 1 : xDisp = xProv->queryDispatch( aURL, OUString(), 0 );
252 :
253 1 : if ( xDisp.is() )
254 : {
255 :
256 1 : beans::PropertyValue aEventParam;
257 1 : aEventParam.Value <<= aTrigger;
258 2 : uno::Sequence< beans::PropertyValue > aDispatchArgs( &aEventParam, 1 );
259 2 : xDisp->dispatch( aURL, aDispatchArgs );
260 1 : }
261 : }
262 : }
263 0 : else if ( aType.isEmpty() )
264 : {
265 : // Empty type means no active binding for the event. Just ignore do nothing.
266 : }
267 : else
268 : {
269 : SAL_WARN( "sfx.notify", "notifyEvent(): Unsupported event type" );
270 39787 : }
271 46397 : }
272 : }
273 :
274 :
275 : // --- ::document::XEventListener ---
276 :
277 782 : void SAL_CALL SfxEvents_Impl::notifyEvent( const document::EventObject& aEvent ) throw( uno::RuntimeException, std::exception )
278 : {
279 782 : ::osl::ClearableMutexGuard aGuard( maMutex );
280 :
281 : // get the event name, find the coresponding data, execute the data
282 :
283 1512 : OUString aName = aEvent.EventName;
284 782 : long nCount = maEventNames.getLength();
285 782 : long nIndex = 0;
286 782 : bool bFound = false;
287 :
288 19421 : while ( !bFound && ( nIndex < nCount ) )
289 : {
290 17857 : if ( maEventNames[nIndex] == aName )
291 730 : bFound = true;
292 : else
293 17127 : nIndex += 1;
294 : }
295 :
296 782 : if ( !bFound )
297 834 : return;
298 :
299 1460 : uno::Any aEventData = maEventData[ nIndex ];
300 730 : aGuard.clear();
301 1460 : Execute( aEventData, document::DocumentEvent(aEvent.Source, aEvent.EventName, NULL, uno::Any()), mpObjShell );
302 : }
303 :
304 :
305 : // --- ::lang::XEventListener ---
306 :
307 113 : void SAL_CALL SfxEvents_Impl::disposing( const lang::EventObject& /*Source*/ ) throw( uno::RuntimeException, std::exception )
308 : {
309 113 : ::osl::MutexGuard aGuard( maMutex );
310 :
311 113 : if ( mxBroadcaster.is() )
312 : {
313 113 : mxBroadcaster->removeEventListener( this );
314 113 : mxBroadcaster = NULL;
315 113 : }
316 113 : }
317 :
318 :
319 :
320 113 : SfxEvents_Impl::SfxEvents_Impl( SfxObjectShell* pShell,
321 113 : uno::Reference< document::XEventBroadcaster > xBroadcaster )
322 : {
323 : // get the list of supported events and store it
324 113 : if ( pShell )
325 113 : maEventNames = pShell->GetEventNames();
326 : else
327 0 : maEventNames = GlobalEventConfig().getElementNames();
328 :
329 113 : maEventData = uno::Sequence < uno::Any > ( maEventNames.getLength() );
330 :
331 113 : mpObjShell = pShell;
332 113 : mxBroadcaster = xBroadcaster;
333 :
334 113 : if ( mxBroadcaster.is() )
335 113 : mxBroadcaster->addEventListener( this );
336 113 : }
337 :
338 :
339 226 : SfxEvents_Impl::~SfxEvents_Impl()
340 : {
341 226 : }
342 :
343 :
344 56 : SvxMacro* SfxEvents_Impl::ConvertToMacro( const uno::Any& rElement, SfxObjectShell* pObjShell, bool bNormalizeMacro )
345 : {
346 56 : SvxMacro* pMacro = NULL;
347 56 : uno::Sequence < beans::PropertyValue > aProperties;
348 112 : uno::Any aAny;
349 56 : if ( bNormalizeMacro )
350 56 : NormalizeMacro( rElement, aAny, pObjShell );
351 : else
352 0 : aAny = rElement;
353 :
354 56 : if ( aAny >>= aProperties )
355 : {
356 56 : OUString aType;
357 56 : OUString aScriptURL;
358 56 : OUString aLibrary;
359 56 : OUString aMacroName;
360 :
361 56 : long nCount = aProperties.getLength();
362 56 : long nIndex = 0;
363 :
364 56 : if ( !nCount )
365 56 : return pMacro;
366 :
367 0 : while ( nIndex < nCount )
368 : {
369 0 : if ( aProperties[ nIndex ].Name == PROP_EVENT_TYPE )
370 0 : aProperties[ nIndex ].Value >>= aType;
371 0 : else if ( aProperties[ nIndex ].Name == PROP_SCRIPT )
372 0 : aProperties[ nIndex ].Value >>= aScriptURL;
373 0 : else if ( aProperties[ nIndex ].Name == PROP_LIBRARY )
374 0 : aProperties[ nIndex ].Value >>= aLibrary;
375 0 : else if ( aProperties[ nIndex ].Name == PROP_MACRO_NAME )
376 0 : aProperties[ nIndex ].Value >>= aMacroName;
377 : else {
378 : OSL_FAIL("Unknown propery value!");
379 : }
380 0 : nIndex += 1;
381 : }
382 :
383 : // Get the type
384 0 : ScriptType eType( STARBASIC );
385 0 : if ( aType == STAR_BASIC )
386 0 : eType = STARBASIC;
387 0 : else if (aType == "Script" && !aScriptURL.isEmpty())
388 0 : eType = EXTENDED_STYPE;
389 0 : else if ( aType == SVX_MACRO_LANGUAGE_JAVASCRIPT )
390 0 : eType = JAVASCRIPT;
391 : else {
392 : SAL_WARN( "sfx.notify", "ConvertToMacro: Unknown macro type" );
393 : }
394 :
395 0 : if ( !aMacroName.isEmpty() )
396 : {
397 0 : if ( aLibrary == "application" )
398 0 : aLibrary = SfxGetpApp()->GetName();
399 : else
400 0 : aLibrary.clear();
401 0 : pMacro = new SvxMacro( aMacroName, aLibrary, eType );
402 : }
403 0 : else if ( eType == EXTENDED_STYPE )
404 0 : pMacro = new SvxMacro( aScriptURL, aType );
405 : }
406 :
407 56 : return pMacro;
408 : }
409 :
410 56 : void SfxEvents_Impl::NormalizeMacro( const uno::Any& rEvent, uno::Any& rRet, SfxObjectShell* pDoc )
411 : {
412 56 : const ::comphelper::NamedValueCollection aEventDescriptor( rEvent );
413 112 : ::comphelper::NamedValueCollection aEventDescriptorOut;
414 :
415 56 : NormalizeMacro( aEventDescriptor, aEventDescriptorOut, pDoc );
416 :
417 112 : rRet <<= aEventDescriptorOut.getPropertyValues();
418 56 : }
419 :
420 80 : void SfxEvents_Impl::NormalizeMacro( const ::comphelper::NamedValueCollection& i_eventDescriptor,
421 : ::comphelper::NamedValueCollection& o_normalizedDescriptor, SfxObjectShell* i_document )
422 : {
423 80 : SfxObjectShell* pDoc = i_document;
424 80 : if ( !pDoc )
425 0 : pDoc = SfxObjectShell::Current();
426 :
427 80 : OUString aType = i_eventDescriptor.getOrDefault( PROP_EVENT_TYPE, OUString() );
428 160 : OUString aScript = i_eventDescriptor.getOrDefault( PROP_SCRIPT, OUString() );
429 160 : OUString aLibrary = i_eventDescriptor.getOrDefault( PROP_LIBRARY, OUString() );
430 160 : OUString aMacroName = i_eventDescriptor.getOrDefault( PROP_MACRO_NAME, OUString() );
431 :
432 80 : if ( !aType.isEmpty() )
433 24 : o_normalizedDescriptor.put( PROP_EVENT_TYPE, aType );
434 80 : if ( !aScript.isEmpty() )
435 1 : o_normalizedDescriptor.put( PROP_SCRIPT, aScript );
436 :
437 80 : if ( aType == STAR_BASIC )
438 : {
439 0 : if ( !aScript.isEmpty() )
440 : {
441 0 : if ( aMacroName.isEmpty() || aLibrary.isEmpty() )
442 : {
443 0 : sal_Int32 nHashPos = aScript.indexOf( '/', 8 );
444 0 : sal_Int32 nArgsPos = aScript.indexOf( '(' );
445 0 : if ( ( nHashPos != -1 ) && ( nArgsPos == -1 || nHashPos < nArgsPos ) )
446 : {
447 0 : OUString aBasMgrName( INetURLObject::decode( aScript.copy( 8, nHashPos-8 ), INetURLObject::DECODE_WITH_CHARSET ) );
448 0 : if ( aBasMgrName == "." )
449 0 : aLibrary = pDoc->GetTitle();
450 : else
451 0 : aLibrary = SfxGetpApp()->GetName();
452 :
453 : // Get the macro name
454 0 : aMacroName = aScript.copy( nHashPos+1, nArgsPos - nHashPos - 1 );
455 : }
456 : else
457 : {
458 : SAL_WARN( "sfx.notify", "ConvertToMacro: Unknown macro url format" );
459 : }
460 : }
461 : }
462 0 : else if ( !aMacroName.isEmpty() )
463 : {
464 0 : aScript = MACRO_PRFIX;
465 0 : if ( aLibrary != SfxGetpApp()->GetName() && aLibrary != "StarDesktop" && aLibrary != "application" )
466 0 : aScript += OUString('.');
467 :
468 0 : aScript += OUString('/');
469 0 : aScript += aMacroName;
470 0 : aScript += OUString( MACRO_POSTFIX );
471 : }
472 : else
473 : // wrong properties
474 80 : return;
475 :
476 0 : if (aLibrary != "document")
477 : {
478 0 : if ( aLibrary.isEmpty() || (pDoc && ( aLibrary == pDoc->GetTitle( SFX_TITLE_APINAME ) || aLibrary == pDoc->GetTitle() )) )
479 0 : aLibrary = "document";
480 : else
481 0 : aLibrary = "application";
482 : }
483 :
484 0 : o_normalizedDescriptor.put( PROP_SCRIPT, aScript );
485 0 : o_normalizedDescriptor.put( PROP_LIBRARY, aLibrary );
486 0 : o_normalizedDescriptor.put( PROP_MACRO_NAME, aMacroName );
487 80 : }
488 648 : }
489 :
490 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|