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 :
21 : #include <com/sun/star/frame/XDispatchProvider.hpp>
22 : #include <com/sun/star/frame/XSynchronousDispatch.hpp>
23 : #include <com/sun/star/lang/XComponent.hpp>
24 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
25 : #include <com/sun/star/util/URLTransformer.hpp>
26 :
27 : #include <comphelper/synchronousdispatch.hxx>
28 : #include <comphelper/processfactory.hxx>
29 : #include <sal/log.hxx>
30 :
31 : namespace comphelper
32 : {
33 :
34 :
35 : using namespace ::com::sun::star;
36 :
37 1 : uno::Reference< lang::XComponent > SynchronousDispatch::dispatch(
38 : const uno::Reference< uno::XInterface > &xStartPoint,
39 : const OUString &sURL,
40 : const OUString &sTarget,
41 : const sal_Int32 nFlags,
42 : const uno::Sequence< beans::PropertyValue > &lArguments )
43 : {
44 1 : util::URL aURL;
45 1 : aURL.Complete = sURL;
46 2 : uno::Reference < util::XURLTransformer > xTrans = util::URLTransformer::create( ::comphelper::getProcessComponentContext() );
47 1 : xTrans->parseStrict( aURL );
48 :
49 2 : uno::Reference < frame::XDispatch > xDispatcher;
50 2 : uno::Reference < frame::XDispatchProvider > xProvider( xStartPoint, uno::UNO_QUERY );
51 :
52 1 : if ( xProvider.is() )
53 1 : xDispatcher = xProvider->queryDispatch( aURL, sTarget, nFlags );
54 :
55 1 : uno::Reference < lang::XComponent > aComponent;
56 :
57 1 : if ( xDispatcher.is() )
58 : {
59 : try
60 : {
61 1 : uno::Any aRet;
62 2 : uno::Reference < frame::XSynchronousDispatch > xSyncDisp( xDispatcher, uno::UNO_QUERY_THROW );
63 :
64 1 : aRet = xSyncDisp->dispatchWithReturnValue( aURL, lArguments );
65 :
66 2 : aRet >>= aComponent;
67 : }
68 0 : catch ( uno::Exception& )
69 : {
70 : SAL_WARN("comphelper","SynchronousDispatch::dispatch() Error while dispatching!");
71 : }
72 : }
73 :
74 2 : return aComponent;
75 : }
76 :
77 :
78 : } // namespace comphelper
79 :
80 :
81 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|